1
0
mirror of https://github.com/sjlongland/tornado-news.git synced 2025-09-13 10:03:14 +10:00
Tornado-based news reader
Go to file
Stuart Longland 1b906b760e
README.md: Project now requires Python 3.4.
Last commit I added `yield from`, which is a Python 3.4 feature.  I had
intended to retain Python 2.7 syntax, and I guess if that's really
wanted, we can change that `yield from` to a `yield`, but right now I'm
thinking: onward and upwards.
2020-04-26 09:25:19 +10:00
example example: Brighten the links a bit 2016-03-13 08:26:19 +10:00
tornadonews Wrap Tornado's HTTP client fetch to implement callback. 2020-04-25 09:02:10 +10:00
.gitignore Add .gitignore and README.md 2017-10-15 08:45:46 +10:00
COPYING Initial check-in of Tornado News 2016-03-06 14:58:34 +10:00
README.md README.md: Project now requires Python 3.4. 2020-04-26 09:25:19 +10:00
setup.py Add pyyaml dependency 2018-08-31 04:59:38 -05:00

TornadoNews: a feed aggregator built on Tornado

TornadoNews is a small feed aggregator much like Planet written to be small and simple.

It uses the Tornado asynchronous framework to fetch RSS and ATOM feeds asynchronously and uses its templating engine to generate the final HTML output. Like Planet, it is intended to be run from a cron job, with the output served up by a conventional HTTP server (e.g. Apache, nginx, lighthttpd, OpenBSD httpd, Microsoft IIS, etc...).

Feeds are parsed using the feedparser module, and a composite RSS feed is generated using feedgenerator.

The code works on 3.4 and above. It has been exclusively developed and tested on Linux. It should work with anything that understands POSIX.

Contributing

Pull requests on GitHub are most welcome. Please always create them on a separate branch so that we can rebase the merge to master; this helps keep the commit history on the master branch clean and noise-free. Thanks in advance!