RSS parsing with batteries included
Project description
superss ====== RSS parsing with batteries included
feedparser is great, but sometimes it doesn’t put things in the same place. superss fixes this by finding all known candidates for urls, content, images, tags, dates, and authors and intelligently picks the best candidate. It also does some other cool things like author parsing with lauteur, url reconciliation with siegfried, and pulling links and images out of the article html.
Another problem with RSS parsing is that feeds sometimes only include a summary of the article. superss can also extract the article’s full text from the page itself using particle and then intelligently merging this data with the data from the feed.
Finally, some sites don’t even have RSS feeds. In this page we combine pageone and particle to create a feed of articles from article urls on a site’s homepage.
Install
pip install superss
Test
Requires nose. (only currently tests full_text rss feeds.)
nosetests
Usage
Grab full-text feeds:
from superss import SupeRSS
s = SupeRSS('http://feeds.feedburner.com/publici_rss')
for entry in s.run():
print entry
Grab non-full-text feeds. You must install particle to run this.
from superss import SupeRSS
s = SupeRSS('http://feeds.feedburner.com/publici_rss', is_full_text = False)
for entry in s.run():
print entry
Experimental: Build a feed from a homepage. You must install pageone and particle to run this.
from superss import SupeRSS
s = SupeRSS(homepage = 'http://nytimes.com/')
for entry in s.run():
print entry
Optionally pass in a list of urls to ignore. This option is depuplicating when we’re polling a feed on an ongoing basis.
s = SupeRSS('http://feeds.feedburner.com/publici_rss', ignore_urls=[])
for entry in s.run():
print entry
TODO
[ ] Add optional concurrency with gevent
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file superss-0.1.0.tar.gz
.
File metadata
- Download URL: superss-0.1.0.tar.gz
- Upload date:
- Size: 100.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9a2775d1a30bf78f234ba94858becc433a16b2c714229b76e0f94e3c50d2b9a |
|
MD5 | f11aa0c8c06a16b9c659495b9544d16d |
|
BLAKE2b-256 | d0edb6dc149e3b9598a08c996d62ac4bbdfbe229b5ffef2bcac084cc8a591099 |
File details
Details for the file superss-0.1.0.macosx-10.9-intel.exe
.
File metadata
- Download URL: superss-0.1.0.macosx-10.9-intel.exe
- Upload date:
- Size: 165.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc6993fc2128a7c5e34bc984f252d135a58de79ac9755e83e47eed21ce1be87f |
|
MD5 | 901187c5152eb659bce617c7db8aa215 |
|
BLAKE2b-256 | 19d132feae704c56a4a3bf01452c0e731b1f6cde2cac90f914f82d6f8354bb74 |