Is there a tool to connect a web UI with my existing Python RSS tool? I want users to update feeds and parameters in a browser without rewriting my core code.
try flask its super lightweight for adding a web ui. u can easily hook endpoints to your python rss tool. worked good for me with minor tweaks so no need for heavy frameworks
An alternative option to considering Flask is using the Tornado framework. I integrated Tornado with an existing Python core tool and found that its asynchronous capabilities handle multiple connections efficiently. Tornado allows you to serve a web interface that communicates with your backend seamlessly without requiring a complete rewrite of your logic. It supports rapid development and is well-suited for tasks that involve real-time updates and interactive features. Although initially more complex compared to some microframeworks, Tornado has proven robust in handling dynamic feed management and parameter updates through a browser interface.