File: __init__.py

package info (click to toggle)
python-nbxmpp 0.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,272 kB
  • ctags: 10,332
  • sloc: python: 5,398; makefile: 5
file content (20 lines) | stat: -rw-r--r-- 771 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# $Id: __init__.py,v 1.9 2005/03/07 09:34:51 snakeru Exp $

"""
This is a fork of the xmpppy jabber python library. Most of the code is
inherited but has been extended by implementation of non-blocking transports
and new features like BOSH.

Most of the xmpp classes are ancestors of PlugIn class to share a single set of methods in order to compile a featured and extensible XMPP client.

Thanks and credits to the xmpppy developers. See: http://xmpppy.sourceforge.net/
"""

from .protocol import *
from . import simplexml, protocol, auth_nb, transports_nb, roster_nb
from . import dispatcher_nb, features_nb, idlequeue, bosh, tls_nb, proxy_connectors
from .client_nb import NonBlockingClient
from .plugin import PlugIn
from .smacks import Smacks

__version__ = "0.5.1"