Rename to slixmpp
[slixmpp.git] / slixmpp / plugins / xep_0323 / __init__.py
blob6bf42fd6c2def9c2c78341cd416bf7ee53dafb5d
1 """
2 Slixmpp: The Slick XMPP Library
3 Implementation of xeps for Internet of Things
4 http://wiki.xmpp.org/web/Tech_pages/IoT_systems
5 Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se
6 This file is part of Slixmpp.
8 See the file LICENSE for copying permission.
9 """
11 from slixmpp.plugins.base import register_plugin
13 from slixmpp.plugins.xep_0323.sensordata import XEP_0323
14 from slixmpp.plugins.xep_0323 import stanza
16 register_plugin(XEP_0323)
18 xep_0323=XEP_0323