__init__.py 370 B

12345678910111213
  1. try:
  2. from collections import OrderedDict
  3. except:
  4. from sleekxmpp.thirdparty.ordereddict import OrderedDict
  5. try:
  6. from gnupg import GPG
  7. except:
  8. from sleekxmpp.thirdparty.gnupg import GPG
  9. from sleekxmpp.thirdparty import socks
  10. from sleekxmpp.thirdparty.mini_dateutil import tzutc, tzoffset, parse_iso
  11. from sleekxmpp.thirdparty.orderedset import OrderedSet