How can I send an XMPP message using one of the following Python libraries: wokkel, xmpppy, or jabber.py ?
I think I am aware of the pseudo-code, but so far have not been able to get one running correctly. This is what I have tried so far:
- Call some API and pass the servername and port number to connect to that server.
- Call some API and pass the username, password to construct a JID object.
- Authenticate with that JID.
- Construct a Message object and call some API and pass that message obj in the argument.
- Call some send API.
It seems easy enough in concept, but the devil is somewhere in the details. Please show a sample snippet if that's possible.