summaryrefslogtreecommitdiff
path: root/slixmpp/xmlstream/__init__.py
blob: b5302292adeb29d6cf82f95b20811a1aa95d0539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
    Slixmpp: The Slick XMPP Library
    Copyright (C) 2010  Nathanael C. Fritz
    This file is part of Slixmpp.

    See the file LICENSE for copying permission.
"""

from slixmpp.jid import JID
from slixmpp.xmlstream.stanzabase import StanzaBase, ElementBase, ET
from slixmpp.xmlstream.stanzabase import register_stanza_plugin
from slixmpp.xmlstream.tostring import tostring, highlight
from slixmpp.xmlstream.xmlstream import XMLStream, RESPONSE_TIMEOUT

__all__ = ['JID', 'StanzaBase', 'ElementBase',
           'ET', 'StateMachine', 'tostring', 'highlight', 'XMLStream',
           'RESPONSE_TIMEOUT']