jdev - 2020-08-09


  1. Silvana

    Hello, Can someone recommend me a Python3 library that could allow me to initialize an XMPP connection in the background and send XMPP messages whenever I want to? I would like to do something like this: client = ClientXMPP(jid, password) client.connect() /// somewhere else in my code... client.send_message(..) I tried with Slixmpp but when I call process(), my program gets stuck there and does not continue.

  2. eta

    python-nbxmpp or the aioxmpp one?

  3. Silvana

    I'm going to take a look, is for a Flask website. Thank you

  4. Zash

    I imagine it would need to be hooked into the Flask main loop somehow.

  5. lovetox

    then aioxmpp, nbxmpp does need its own mainloop

  6. lovetox

    or rather a GLib mainloop not a python