Skip to main content

RSS parsing with batteries included

Project description

travis-img 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 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

superss-0.1.8.tar.gz (100.7 kB view details)

Uploaded Source

Built Distribution

superss-0.1.8.macosx-10.9-intel.exe (166.1 kB view details)

Uploaded Source

File details

Details for the file superss-0.1.8.tar.gz.

File metadata

  • Download URL: superss-0.1.8.tar.gz
  • Upload date:
  • Size: 100.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for superss-0.1.8.tar.gz
Algorithm Hash digest
SHA256 361732c5d0b26ba141a5987d079b14517a6fe972c0c83329285d6ba3e1468b5d
MD5 056923230aa93a2994ca806303793b0f
BLAKE2b-256 1e9fa6d1012be16ec97931c9558901a4d0ce543c45ddc1b2820bfe0a4b526337

See more details on using hashes here.

File details

Details for the file superss-0.1.8.macosx-10.9-intel.exe.

File metadata

File hashes

Hashes for superss-0.1.8.macosx-10.9-intel.exe
Algorithm Hash digest
SHA256 e51da106109d691ff6d0880ea054de4d3181626dd6a9572916ef5918a34302f8
MD5 d9800fa37d397999351215a67637c041
BLAKE2b-256 e420a638bbdd7b611677eb7527061e643da5bc0c624b1700586a43301649d0a9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page