stanza.py 536 B

1234567891011121314151617181920
  1. """
  2. SleekXMPP: The Sleek XMPP Library
  3. Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
  4. This file is part of SleekXMPP.
  5. See the file LICENSE for copying permission.
  6. """
  7. from sleekxmpp.xmlstream import ElementBase, ET
  8. class UserGaming(ElementBase):
  9. name = 'gaming'
  10. namespace = 'urn:xmpp:gaming:0'
  11. plugin_attrib = 'gaming'
  12. interfaces = set(['character_name', 'character_profile', 'name',
  13. 'level', 'server_address', 'server_name', 'uri'])
  14. sub_interfaces = interfaces