diff options
author | Lance Stout <lancestout@gmail.com> | 2012-06-17 16:26:19 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-06-18 22:07:17 -0700 |
commit | 0b7f1340212b1bcca349f0bd21e910078b6e78ce (patch) | |
tree | c3153d971d05ee2ff4985b111abe80e421f58318 /sleekxmpp/plugins/xep_0084/__init__.py | |
parent | 378a42889fb59bba9f638203d914707040bfcad9 (diff) | |
download | slixmpp-0b7f1340212b1bcca349f0bd21e910078b6e78ce.tar.gz slixmpp-0b7f1340212b1bcca349f0bd21e910078b6e78ce.tar.bz2 slixmpp-0b7f1340212b1bcca349f0bd21e910078b6e78ce.tar.xz slixmpp-0b7f1340212b1bcca349f0bd21e910078b6e78ce.zip |
Add initial XEP-0084 support.
It does not auto-retrieve and store avatars yet, but everything is there
to do so.
Diffstat (limited to 'sleekxmpp/plugins/xep_0084/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0084/__init__.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0084/__init__.py b/sleekxmpp/plugins/xep_0084/__init__.py new file mode 100644 index 00000000..39aa8d76 --- /dev/null +++ b/sleekxmpp/plugins/xep_0084/__init__.py @@ -0,0 +1,18 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +from sleekxmpp.plugins.base import register_plugin + +from sleekxmpp.plugins.xep_0084 import stanza +from sleekxmpp.plugins.xep_0084.stanza import Data, MetaData +from sleekxmpp.plugins.xep_0084.avatar import XEP_0084 + + +register_plugin(XEP_0084) + + |