Add support for XEP-0049: Private XML Storage

This commit is contained in:
Lance Stout
2012-09-11 20:39:32 -07:00
parent f65eb5eeea
commit cf28d4586d
5 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
"""
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.xmlstream import ET, ElementBase
class PrivateXML(ElementBase):
name = 'query'
namespace = 'jabber:iq:private'
plugin_attrib = 'private'
interfaces = set()