aiorss

Asyncio client for interacting with rss feeds


License
MIT
Install
pip install aiorss==0.1.0

Documentation

aiorss

Asyncio client for interacting with rss feeds

Installation instructions:

pip install aiorss

Usage:

from aiorss import RSSFeed

async def main():
	url = 'http://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml'
	feed = RSSFeed(url)
	return await feed.parse()

Note

aiorss is not affiliated or endorsed by any of the web services it interacts with.