summaryrefslogtreecommitdiff
path: root/slixmpp/xmlstream/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'slixmpp/xmlstream/__init__.py')
-rw-r--r--slixmpp/xmlstream/__init__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/slixmpp/xmlstream/__init__.py b/slixmpp/xmlstream/__init__.py
new file mode 100644
index 00000000..b5302292
--- /dev/null
+++ b/slixmpp/xmlstream/__init__.py
@@ -0,0 +1,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']