Find rss, atom, xml, and rdf feeds on webpages
Project description
It slant rhymes with “heat seeker”
A library for finding atom, rss, rdf, and xml feeds from web pages. Produced at the mediacloud project. An incremental improvement over feedfinder2, which was itself based on feedfinder, written by Mark Pilgrim, and maintained by Aaron Swartz until his untimely death.
Installation
The library is available on PyPI:
pip install feed_seeker
The library requires Python 3.5+.
Quickstart
By default, the library uses requests
to grab html and inspect it and find the most
likely feed url:
from feed_seeker import find_feed_url
>>> find_feed_url('https://github.com/mitmedialab/feed_seeker')
'https://github.com/mitmedialab/feed_seeker/commits/master.atom'
To do a more thorough search, use generate_feed_urls
, which returns more likely candidates first.
from feed_seeker import generate_feed_urls
>>> for url in generate_feed_urls('https://xkcd.com'):
... print(url)
...
https://xkcd.com/atom.xml
https://xkcd.com/rss.xml
For the most thorough search, add a spider
argument to do depth-first spidering of urls on the same hostname. Note the below call takes nearly four minutes, compared to 0.5 seconds for find_feed_url
.
>>> for url in generate_feed_urls('https://github.com/mitmedialab/feed_seeker', spider=1):
... print(url)
...
https://github.com/mitmedialab/feed_seeker/commits/master.atom,
https://github.com/mitmedialab/feed_seeker/commits/95cf320796c487df8b70f9c42281d8f26452cc31.atom,
https://github.com/mitmedialab/feed_seeker/commits/3e93490cb91f7652325c2fe41ef29a5be4558d6a.atom,
https://github.com/mitmedialab/feed_seeker/commits/659311b8853c4c4a67e3b4bc67a78461d825a064.atom,
https://github.com/mitmedialab/feed_seeker/commits/a8f7b86eac2cedd9209ac5d2ddcceb293d2404c9.atom,
https://github.com/index.atom,
https://github.com/articles.atom,
https://github.com/dfm/feedfinder2/commits/master.atom,
https://github.com/blog.atom,
https://github.com/blog/all.atom,
https://github.com/blog/broadcasts.atom,
https://github.com/ColCarroll.atom
New Feedly Support
Search Feedly to find relevant feeds to a specific site:
from feed_seeker import find_feedly_feeds
>>> for url in find_feedly_feeds('https://www.nytimes.com'):
... print(url)
...
http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml
http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml
http://www.nytimes.com/services/xml/rss/nyt/Science.xml
http://www.nytimes.com/services/xml/rss/nyt/Travel.xml
http://www.nytimes.com/services/xml/rss/nyt/Technology.xml
http://www.nytimes.com/services/xml/rss/nyt/Business.xml
In a hurry?
If you have a long list of urls, you might want to set a timeout with max_time
:
>>> for url in ('https://httpstat.us/200?sleep=5000', 'https://github.com/mitmedialab/feed_seeker'):
... try:
... print('found feed:\t{}'.format(find_feed_url(url, max_time=3)))
... except TimeoutError:
... print('skipping {}'.format(url))
skipping https://httpstat.us/200?sleep=5000
found feed: https://github.com/mitmedialab/feed_seeker/commits/master.atom
Differences with feedfinder2
The biggest difference is that all functions are implemented as generators, and are evaluated lazily. Candidate feed links are actually accessed and inspected to determine whether or not they are a feed, which can be quite time consuming. We expose a function to find the most likely feed link, and another to lazily generate links in rough order from most prominent to least.
There are also a few more heuristics based on our experience at mediacloud.
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 feed_seeker-1.1.0.tar.gz
.
File metadata
- Download URL: feed_seeker-1.1.0.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99e8e783d14295c51386cc44b642a34cdd4874f93514a9d67c0301baf2d03f79 |
|
MD5 | c25a33f4da0722b4ea6d4f927c9bcc9a |
|
BLAKE2b-256 | eb3545b6e6532039975fdd8f29af9b9abe020faf22ba55f5ab407c7922620c13 |
File details
Details for the file feed_seeker-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: feed_seeker-1.1.0-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce6f822a6598cf798106defeac11719c2b92a97b00fdc3849ec8f487973c74f8 |
|
MD5 | 687d591f93e1f3a8fda88be7375611f2 |
|
BLAKE2b-256 | 975bb731f679c25e330f0553ed871c6f98438bfbbc85c125bf962615d0075f46 |