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.
- Host: GitHub
- URL: https://github.com/antitree/rss
- Owner: antitree
- Created: 2013-01-25T01:44:30.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-25T04:31:20.000Z (over 12 years ago)
- Last Synced: 2025-02-09T23:33:35.826Z (5 months ago)
- Language: Python
- Size: 115 KB
- Stars: 0
- Watchers: 0
- 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")