Skip to content

Instantly share code, notes, and snippets.

@legastero
Created May 20, 2010 22:16
Show Gist options
  • Save legastero/408190 to your computer and use it in GitHub Desktop.
Save legastero/408190 to your computer and use it in GitHub Desktop.
"""
Creating a SleekXMPP Plugin
This is a minimal implementation of XEP-0077 to serve
as a tutorial for creating SleekXMPP plugins.
"""
from . import base
class xep_0077(base.base_plugin):
"""
XEP-0077 In-Band Registration
"""
def plugin_init(self):
self.description = "In-Band Registration"
self.xep = "0077"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment