Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Commit

Permalink
Add initial XEP-0054 plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
legastero committed Apr 8, 2012
1 parent 7391288 commit 259c84e
Show file tree
Hide file tree
Showing 4 changed files with 646 additions and 0 deletions.
1 change: 1 addition & 0 deletions sleekxmpp/plugins/__init__.py
Expand Up @@ -24,6 +24,7 @@
'xep_0045', # Multi-User Chat (Client)
'xep_0047', # In-Band Bytestreams
'xep_0050', # Ad-hoc Commands
'xep_0054', # vcard-temp
'xep_0059', # Result Set Management
'xep_0060', # Pubsub (Client)
'xep_0066', # Out of Band Data
Expand Down
15 changes: 15 additions & 0 deletions sleekxmpp/plugins/xep_0054/__init__.py
@@ -0,0 +1,15 @@
"""
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_0054.stanza import VCardTemp
from sleekxmpp.plugins.xep_0054.vcard_temp import XEP_0054


register_plugin(XEP_0054)

0 comments on commit 259c84e

Please sign in to comment.