# Slixmpp: The Slick XMPP Library# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout# This file is part of Slixmpp.# See the file LICENSE for copying permission.importloggingfromslixmppimportMessagefromslixmpp.pluginsimportBasePluginfromslixmpp.xmlstreamimportregister_stanza_pluginfromslixmpp.plugins.xep_0235importstanza,OAuth
[docs]classXEP_0235(BasePlugin):name='xep_0235'description='XEP-0235: OAuth Over XMPP'dependencies={'xep_0030'}stanza=stanzadefplugin_init(self):register_stanza_plugin(Message,OAuth)defsession_bind(self,jid):self.xmpp['xep_0030'].add_feature('urn:xmpp:oauth:0')defplugin_end(self):self.xmpp['xep_0030'].del_feature(feature='urn:xmpp:oauth:0')