Ecosyste.ms: Awesome
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: 17 days ago
JSON representation
Simple RSS wrapper that exports content to an rss feed.
- Host: GitHub
- URL: https://github.com/antitree/rss
- Owner: antitree
- Created: 2013-01-25T01:44:30.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-25T04:31:20.000Z (almost 12 years ago)
- Last Synced: 2023-03-16T17:50:32.802Z (almost 2 years ago)
- Language: Python
- Size: 115 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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")