From 0b7f1340212b1bcca349f0bd21e910078b6e78ce Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Sun, 17 Jun 2012 16:26:19 -0700 Subject: Add initial XEP-0084 support. It does not auto-retrieve and store avatars yet, but everything is there to do so. --- sleekxmpp/plugins/xep_0084/__init__.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sleekxmpp/plugins/xep_0084/__init__.py (limited to 'sleekxmpp/plugins/xep_0084/__init__.py') 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) + + -- cgit v1.2.3