SleekXMPP/sleekxmpp
Lance Stout 77251452c1 Updated the XEP-0085 plugin.
Can now be used as so:

>>> msg['chat_state']
''
>>> msg
<message />

>>> msg['chat_state'] = 'paused'
>>> msg
<message>
  <paused xmlns="http://jabber.org/protocol/chatstates" />
</message>

>>> msg['chat_state']
'paused'

>>> del msg['chat_state']
>>> msg
<message />
2011-02-24 12:10:29 -05:00
..
plugins Updated the XEP-0085 plugin. 2011-02-24 12:10:29 -05:00
stanza Remap old method names in a better way. 2011-02-14 13:49:43 -05:00
test Cleanup for stanzabase. 2011-01-26 11:27:41 -05:00
thirdparty Fix thirdparty imports for Python3 2011-01-19 17:49:39 -05:00
xmlstream Bring back the signal handlers (and the "killed" event). 2011-02-23 10:20:04 -05:00
__init__.py Moved ClientXMPP to clientxmpp.py. 2010-10-06 14:20:32 -04:00
basexmpp.py Remap old method names in a better way. 2011-02-14 13:49:43 -05:00
clientxmpp.py Remap old method names in a better way. 2011-02-14 13:49:43 -05:00
componentxmpp.py Doesn't fail if host has NO SRV record 2010-11-09 01:53:41 +08:00
exceptions.py XMPPError exceptions can keep a stanza's contents. 2011-02-11 15:20:26 -05:00