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 right place. superss fixes this by finding all known candidates for urls, content, images, tags, dates, and authors and intelligently picking 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 with particle and merge this data with the data from the RSS feed.
Finally, some sites don’t even have RSS feeds. In this case 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
Full-Text Feeds
from superss import SupeRSS
s = SupeRSS('http://feeds.feedburner.com/publici_rss')
for entry in s.run():
print entry
Non Full-Text Feeds
from superss import SupeRSS
s = SupeRSS('http://feeds.feedburner.com/publici_rss', is_full_text = False)
for entry in s.run():
print entry
Feed from homepage
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
Concurrency
Optionally run any function concurrently via gevent by passing in the kwargs concurrent and num_workers:
from superss import SupeRSS
s = SupeRSS(
'http://feeds.feedburner.com/publici_rss',
is_full_text = False,
concurrent=True,
num_workers=10
)
for entry in s.run():
print entry
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.2.5.tar.gz
.
File metadata
- Download URL: superss-0.2.5.tar.gz
- Upload date:
- Size: 100.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09264d94d7d30db1731b12b14dcd64994676b4822a34f1bf0ba8e4bcdb065704 |
|
MD5 | b36133acae9042d9f32043add912c9b1 |
|
BLAKE2b-256 | 57c3cdc4be5fca39ed2473fdbbd3d55a13b9081d8f1a10a4df51c3ba9194cf26 |
File details
Details for the file superss-0.2.5.macosx-10.9-intel.exe
.
File metadata
- Download URL: superss-0.2.5.macosx-10.9-intel.exe
- Upload date:
- Size: 166.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b75ed4523e30ebe436b24f0b2dad2770428c88e2473dc45928ece6347f86e12 |
|
MD5 | 035ce848f67295f3cdc0803a10bce414 |
|
BLAKE2b-256 | dfafe9cb483ad86f255971c41864f485a0b72d4572ba98f98a3f0ed84a9998c1 |