An open API service indexing awesome lists of open source software.

https://github.com/antitree/rss

Simple RSS wrapper that exports content to an rss feed.
https://github.com/antitree/rss

Last synced: 3 months ago
JSON representation

Simple RSS wrapper that exports content to an rss feed.

Awesome Lists containing this project

README

        

rss
===

Simple RSS wrapper that exports content to an rss feed.

usage
===

import rss

feed = rss.RSS("This is the title of my feed", "This is the description of my feed")
item1 = feed.add_item(title="Title of my first item")
feed.to_xml("./output.rss")