__init__.py 738 B

12345678910111213141516171819
  1. """
  2. SleekXMPP: The Sleek XMPP Library
  3. Copyright (C) 2010 Nathanael C. Fritz
  4. This file is part of SleekXMPP.
  5. See the file LICENSE for copying permission.
  6. """
  7. from sleekxmpp.jid import JID
  8. from sleekxmpp.xmlstream.scheduler import Scheduler
  9. from sleekxmpp.xmlstream.stanzabase import StanzaBase, ElementBase, ET
  10. from sleekxmpp.xmlstream.stanzabase import register_stanza_plugin
  11. from sleekxmpp.xmlstream.tostring import tostring
  12. from sleekxmpp.xmlstream.xmlstream import XMLStream, RESPONSE_TIMEOUT
  13. from sleekxmpp.xmlstream.xmlstream import RestartStream
  14. __all__ = ['JID', 'Scheduler', 'StanzaBase', 'ElementBase',
  15. 'ET', 'StateMachine', 'tostring', 'XMLStream',
  16. 'RESPONSE_TIMEOUT', 'RestartStream']