forked from kurtmckee/feedparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
459 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
feedparser - Parse Atom and RSS feeds in Python. | ||
|
||
Copyright (c) 2010-2013 Kurt McKee <[email protected]> | ||
Copyright (c) 2002-2008 Mark Pilgrim | ||
| Copyright 2010-2015 Kurt McKee <[email protected]> | ||
| Copyright 2002-2008 Mark Pilgrim | ||
feedparser is open source. See the LICENSE file for more information. | ||
|
||
|
||
Installation | ||
============ | ||
|
||
Feedparser can be installed using distutils or setuptools by running: | ||
Feedparser can be installed using distutils or setuptools by running:: | ||
|
||
$ python setup.py install | ||
|
||
|
@@ -28,7 +28,7 @@ copy it to somewhere in your Python path. | |
|
||
If a copy of sgmllib.py was not included in your feedparser download, you can | ||
grab a copy from the Python 2 standard library (preferably from the Python 2.7 | ||
series) and run the 2to3 tool on it: | ||
series) and run the 2to3 tool on it:: | ||
|
||
$ 2to3 -w sgmllib.py | ||
|
||
|
@@ -49,14 +49,14 @@ Documentation | |
|
||
The feedparser documentation is available on the web at: | ||
|
||
http://packages.python.org/feedparser | ||
https://pythonhosted.org/feedparser/ | ||
|
||
It is also included in its source format, ReST, in the docs/ directory. To | ||
build the documentation you'll need the Sphinx package, which is available at: | ||
|
||
http://sphinx.pocoo.org/ | ||
|
||
You can then build HTML pages using a command similar to: | ||
You can then build HTML pages using a command similar to:: | ||
|
||
$ sphinx-build -b html docs/ fpdocs | ||
|
||
|
@@ -67,7 +67,7 @@ Testing | |
======= | ||
|
||
Feedparser has an extensive test suite that has been growing for a decade. If | ||
you'd like to run the tests yourself, you can run the following command: | ||
you'd like to run the tests yourself, you can run the following command:: | ||
|
||
$ python feedparsertest.py | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.