Is there a python xmpp library that supports adding / removing users?

Right now I have a python class that creates a user / removes users by executing the commands "ejabberdctl register / unregister". Is there a python xmpp library that supports adding / removing users?

+3
source share
2 answers

You need an implementation of XEP-0077 : registration in the strip. xmpppy seems to support this:

import sys
import os
import xmpp

if len(sys.argv) < 3:
    print "Syntax: register.py [JID] [Password]"
    sys.exita(64)

jid=xmpp.protocol.JID(sys.argv[1])
cli=xmpp.Client(jid.getDomain(), debug=[])
cli.connect()

# getRegInfo has a bug that puts the username as a direct child of the
# IQ, instead of inside the query element.  The below will work, but
# won't return an error when the user is known, however the register
# call will return the error.
xmpp.features.getRegInfo(cli,
                         jid.getDomain(),
                         #{'username':jid.getNode()},
                         sync=True)

if xmpp.features.register(cli,
                          jid.getDomain(),
                          {'username':jid.getNode(),
                           'password':sys.argv[2]}):
    sys.stderr.write("Success!\n")
    sys.exit(0)
else:
    sys.stderr.write("Error!\n")
    sys.exit(1)
+6
source

xmpppy has all kinds of client list management methods.

, API Roster: delItem (self, jid) setItem (self, jid), jid .

http://xmpppy.sourceforge.net/

http://xmpppy.sourceforge.net/apidocs/

+1

Source: https://habr.com/ru/post/1795019/


All Articles