Replies: 1 comment 1 reply
-
The important parts here are:
I need to incorporate them into a plugin to read URIs like this
A userscript is sensible but lesser good than a plugin because the userscript (i.e. filter) is turned off and on or being called multiple times which means that upon scanning 20 feeds, there would be 20 instances of an XMPP account on an XMPP server. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Greetings!
I have made a proof of concept of an HTTP software that conveys XMPP PubSub nodes and node items as Atom Syndication feed.
The software is written in Python and utilizes slixmpp to communicate with the XMPP protocol.
Pros
Cons
Pros (Jabber ID)
Here is the code:
main.py
.$ uvicorn main:app --reload
To view node items
PubSub:
xmpp:pubsub.movim.eu
node:
berlin-xmpp-meetup
http://127.0.0.1:8000/atom?pubsub=pubsub.movim.eu&node=berlin-xmpp-meetup
To view a node item
PubSub:
xmpp:pubsub.movim.eu
node:
berlin-xmpp-meetup
item:
let-s-talk-about-the-xsf-and-possibly-other-things-6A8eV4
http://127.0.0.1:8000/atom?pubsub=pubsub.movim.eu&node=berlin-xmpp-meetup&item=let-s-talk-about-the-xsf-and-possibly-other-things-6A8eV4
Beta Was this translation helpful? Give feedback.
All reactions