Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gajim/python-nbxmpp
Mirror
https://github.com/gajim/python-nbxmpp
Last synced: 9 days ago
JSON representation
Mirror
- Host: GitHub
- URL: https://github.com/gajim/python-nbxmpp
- Owner: gajim
- License: gpl-3.0
- Created: 2016-12-23T14:59:51.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-11-02T10:55:28.000Z (14 days ago)
- Last Synced: 2024-11-02T11:27:24.781Z (14 days ago)
- Language: Python
- Homepage: https://dev.gajim.org/gajim/python-nbxmpp
- Size: 3.29 MB
- Stars: 7
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
# Welcome to python-nbxmpp
`python-nbxmpp` is a Python library that provides a way for Python applications to use the XMPP network. This library was initially a fork of `xmpppy`.
## Runtime Requirements
- [Python](https://www.python.org/) (>=3.10)
- [PyGObject](https://pypi.org/project/PyGObject/) (>=3.42.0)
- [GLib](https://gitlab.com/gnome/glib) (>=2.66.0)
- [libsoup3](https://libsoup.org/)
- [precis-i18n](https://pypi.org/project/precis-i18n/) (>=1.0.0)
- [packaging](https://pypi.org/project/packaging/)
- [idna](https://pypi.org/project/idna/)## Optional Runtime Requirements
- [python-gssapi](https://pypi.org/project/gssapi/) GSSAPI authentication
## Build Requirements
- [setuptools](https://pypi.org/project/setuptools/) (>=65.0.0)
## Features
* List of [supported XEPs](https://xmpp.org/software/libraries/python-nbxmpp/)
### Setup
Run the following:
pip install .
or
pip install .[gssapi]
to also install the optional dependency `gssapi`.
### Usage
To use python-nbxmpp, `import nbxmpp` in your application.
To see an example check out [nbxmpp-client](https://pypi.org/project/nbxmpp-client/)