Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

RSS Parse
============
Parse RSS in python and return a python native object

Usage
=====
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.