diff options
author | Lance Stout <lancestout@gmail.com> | 2012-03-10 10:30:32 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-03-10 10:30:32 -0800 |
commit | 549a9ab472263cdf1b045caa8791926071547e95 (patch) | |
tree | cf3884c2f4499eb0f6ed3384b4249662451e942e /sleekxmpp/plugins/xep_0118/__init__.py | |
parent | 09720dcf429713e18014e1656ff859fce2b23237 (diff) | |
download | slixmpp-549a9ab472263cdf1b045caa8791926071547e95.tar.gz slixmpp-549a9ab472263cdf1b045caa8791926071547e95.tar.bz2 slixmpp-549a9ab472263cdf1b045caa8791926071547e95.tar.xz slixmpp-549a9ab472263cdf1b045caa8791926071547e95.zip |
Add support for XEP-0118.
See examples/user_tune.py for a demonstration using the currently
playing song in iTunes.
Diffstat (limited to 'sleekxmpp/plugins/xep_0118/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0118/__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0118/__init__.py b/sleekxmpp/plugins/xep_0118/__init__.py new file mode 100644 index 00000000..f8560211 --- /dev/null +++ b/sleekxmpp/plugins/xep_0118/__init__.py @@ -0,0 +1,11 @@ +""" + 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.xep_0118 import stanza +from sleekxmpp.plugins.xep_0118.stanza import UserTune +from sleekxmpp.plugins.xep_0118.user_tune import xep_0118 |