Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/antitree/rss

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

Last synced: 17 days 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")