summaryrefslogtreecommitdiff
path: root/slixmpp/thirdparty/__init__.py
blob: fd6b5f723746de729c3b089b53a12c8882878d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
try:
    from collections import OrderedDict
except:
    from slixmpp.thirdparty.ordereddict import OrderedDict

try:
    from gnupg import GPG
except:
    from slixmpp.thirdparty.gnupg import GPG

from slixmpp.thirdparty import socks
from slixmpp.thirdparty.mini_dateutil import tzutc, tzoffset, parse_iso