summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0202/__init__.py
blob: 3fb4744d8fb5dc675c1b39ce466bc2d2fb8f5365 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""
    SleekXMPP: The Sleek XMPP Library
    Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
    This file is part of SleekXMPP.

    See the file LICENSE for copying permission.
"""

import logging
import sleekxmpp


log = logging.getLogger(__name__)


HAVE_DATEUTIL = True
try:
    import dateutil
except:
    HAVE_DATEUTIL = False


if HAVE_DATEUTIL:
    from sleekxmpp.plugins.xep_0202 import stanza
    from sleekxmpp.plugins.xep_0202.stanza import EntityTime
    from sleekxmpp.plugins.xep_0202.time import xep_0202
else:
    log.warning("XEP-0202 requires the dateutil package")