Lines 1-16
Link Here
|
1 |
Universal Feed Parser is a Python module for downloading and parsing |
1 |
Feedparser is a Python library that parses feeds in all known formats, |
2 |
syndicated feeds. It can handle RSS 0.90, Netscape RSS 0.91, Userland |
2 |
including Atom, RSS, and RDF. It runs on Python 2.4 and above. |
3 |
RSS 0.91, RSS 0.92, RSS 0.93, RSS 0.94, RSS 1.0, RSS 2.0, Atom, and |
|
|
4 |
CDF feeds. |
5 |
|
3 |
|
6 |
To use Universal Feed Parser, you will need Python 2.1 or later. |
4 |
Feedparser is not meant to run standalone; it is a module for you to |
7 |
Universal Feed Parser is not meant to run standalone; it is a module |
5 |
use as part of a larger Python program. |
8 |
for you to use as part of a larger Python program. |
|
|
9 |
|
6 |
|
10 |
Universal Feed Parser is easy to use; the module is self-contained in |
7 |
Feedparser is easy to use; the module is self-contained in a single |
11 |
a single file, feedparser.py, and it has only one public function, |
8 |
file and it has only one public function. It can parse a URL, a |
12 |
parse. parse takes a number of arguments, but only one is required, |
9 |
local filename, or a raw string containing feed data in any format. |
13 |
and it can be a URL, a local filename, or a raw string containing feed |
|
|
14 |
data in any format. |
15 |
|
10 |
|
16 |
WWW: http://feedparser.org/ |
11 |
WWW: http://code.google.com/p/feedparser/ |