Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bahamas10/rssparse
RSS Parser for Python
https://github.com/bahamas10/rssparse
Last synced: about 2 months ago
JSON representation
RSS Parser for Python
- Host: GitHub
- URL: https://github.com/bahamas10/rssparse
- Owner: bahamas10
- License: bsd-3-clause
- Created: 2012-03-21T01:17:06.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-06-06T05:39:11.000Z (over 12 years ago)
- Last Synced: 2024-05-08T19:53:46.574Z (8 months ago)
- Language: Python
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
RSS Parse
============
Parse RSS in python and return a python native objectUsage
=====
Example Usage:``` python
>>> import urllib2
>>> import rss
>>> print rss.parse(urllib2.urlopen('http://someurl/rss.xml').read())
{ 'title' : 'Title of RSS', 'description' : 'Description of RSS', items : [ {}, {}, ... ] }
```Command line:
$ ./rss.py http://www.daveeddy.com/feed
Copying
=======
Released under the BSD 3-clause license, see LICENSE for details.