Python XMPP server library

后端 未结 2 353
暗喜
暗喜 2021-01-07 07:55

I know there are several libraries to connect to XMPP servers, but is there an XMPP server library somewhere written in Python?

相关标签:
2条回答
  • 2021-01-07 08:28

    It seems like that there is a new project on github:

    python-xmpp-server

    An XMPP Server written in Python. 
    

    Personally I'm modifying it to provide an XMPP interface to the service I'm building, and I found it fairly easy to achieve this by modifying the "chat-server" example. You can write your own handlers for presence notification, roster requests, and other events.

    0 讨论(0)
  • 2021-01-07 08:29

    A quick google search reveals:

    • http://code.google.com/p/pretzel/

      An XMPP server written on the Twisted Python framework

    • http://code.google.com/p/pjabberd/

      Jabber/XMPP Server in Python

    Both seem a bit unmaintained, but you might be able to get them up and running.

    0 讨论(0)
提交回复
热议问题