slixmpp/sleekxmpp
Lance Stout 58e0f1e6c3 Expand support for XEP-0184.
New stanza interfaces:

    Adding a message receipt request:

        msg['request_receipt'] = True

    Adding a message receipt:

        msg['receipt'] = '123-24234'

    Retrieving the acked message ID:

        ack_id = msg['receipt']
        print(ack_id)
        '123-24234'

New configuration options:

    auto_ack:
        If True, auto reply to messages that request receipts.

        Defaults to True

    auto_request:
        If True, auto add receipt requests to appropriate outgoing
        messages.

        Defaults to False
2012-03-16 10:51:25 -07:00
..
features Explicitly set the desired SASL mech to ANONYMOUS if no username is provided. 2012-03-13 12:24:41 -07:00
plugins Expand support for XEP-0184. 2012-03-16 10:51:25 -07:00
roster Add support for roster versioning. 2012-03-07 14:55:27 -08:00
stanza Expand support of XEP-0172 (user nickname) to include PEP. 2012-03-11 00:22:28 -08:00
test xml.etree.ElementTree raises ExpatError instead of SyntaxError or ParseError. 2012-02-19 20:27:19 -08:00
thirdparty Fix instances of using undefined variables. 2012-02-18 11:56:10 -08:00
xmlstream Add setting for maximum number of reconnection attempts. 2012-03-12 16:19:18 -07:00
__init__.py
basexmpp.py Handle loading plugins on demand. 2012-03-12 19:32:20 -07:00
clientxmpp.py Add support for roster versioning. 2012-03-07 14:55:27 -08:00
componentxmpp.py
exceptions.py
version.py