__init__.py 554 B

123456789101112131415161718192021
  1. """
  2. SleekXMPP: The Sleek XMPP Library
  3. Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
  4. This file is part of SleekXMPP.
  5. See the file LICENSE for copying permission.
  6. """
  7. from sleekxmpp.plugins.base import register_plugin
  8. from sleekxmpp.plugins.xep_0047 import stanza
  9. from sleekxmpp.plugins.xep_0047.stanza import Open, Close, Data
  10. from sleekxmpp.plugins.xep_0047.stream import IBBytestream
  11. from sleekxmpp.plugins.xep_0047.ibb import XEP_0047
  12. register_plugin(XEP_0047)
  13. # Retain some backwards compatibility
  14. xep_0047 = XEP_0047