diff options
author | Lance Stout <lancestout@gmail.com> | 2010-07-29 20:18:04 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-07-29 20:18:04 -0400 |
commit | 60a183b011f8c0ee5a3c1840075a43addf33fc4f (patch) | |
tree | 4329869b584d5f4c5bff3eef1f2f235d4877856a /sleekxmpp/xmlstream | |
parent | a49f511a2f844bbab261b5ce84257f026e1eb37c (diff) | |
download | slixmpp-60a183b011f8c0ee5a3c1840075a43addf33fc4f.tar.gz slixmpp-60a183b011f8c0ee5a3c1840075a43addf33fc4f.tar.bz2 slixmpp-60a183b011f8c0ee5a3c1840075a43addf33fc4f.tar.xz slixmpp-60a183b011f8c0ee5a3c1840075a43addf33fc4f.zip |
Added useful imports to the xmlstream, xmlstream.handler, and xmlstream.matcher __init__.py files to make it simpler to import common classes.
Diffstat (limited to 'sleekxmpp/xmlstream')
-rw-r--r-- | sleekxmpp/xmlstream/__init__.py | 10 | ||||
-rw-r--r-- | sleekxmpp/xmlstream/handler/__init__.py | 12 | ||||
-rw-r--r-- | sleekxmpp/xmlstream/matcher/__init__.py | 13 |
3 files changed, 35 insertions, 0 deletions
diff --git a/sleekxmpp/xmlstream/__init__.py b/sleekxmpp/xmlstream/__init__.py index e69de29b..2611896a 100644 --- a/sleekxmpp/xmlstream/__init__.py +++ b/sleekxmpp/xmlstream/__init__.py @@ -0,0 +1,10 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +from sleekxmpp.xmlstream.stanzabase import StanzaBase, ElementBase +from sleekxmpp.xmlstream.xmlstream import XMLStream, RESPONSE_TIMEOUT diff --git a/sleekxmpp/xmlstream/handler/__init__.py b/sleekxmpp/xmlstream/handler/__init__.py index e69de29b..50e286a3 100644 --- a/sleekxmpp/xmlstream/handler/__init__.py +++ b/sleekxmpp/xmlstream/handler/__init__.py @@ -0,0 +1,12 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +from sleekxmpp.xmlstream.handler.callback import Callback +from sleekxmpp.xmlstream.handler.waiter import Waiter +from sleekxmpp.xmlstream.handler.xmlcallback import XMLCallback +from sleekxmpp.xmlstream.handler.xmlwaiter import XMLWaiter diff --git a/sleekxmpp/xmlstream/matcher/__init__.py b/sleekxmpp/xmlstream/matcher/__init__.py index e69de29b..91cb8d6e 100644 --- a/sleekxmpp/xmlstream/matcher/__init__.py +++ b/sleekxmpp/xmlstream/matcher/__init__.py @@ -0,0 +1,13 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +from sleekxmpp.xmlstream.matcher.id import MatcherId +from sleekxmpp.xmlstream.matcher.many import MatchMany +from sleekxmpp.xmlstream.matcher.stanzapath import StanzaPath +from sleekxmpp.xmlstream.matcher.xmlmask import MatchXMLMask +from sleekxmpp.xmlstream.matcher.xpath import MatchXPath |