feedfinder2
Find the feed URLs for a website.
What it is and what it does
Feedfinder2 is a Python library that searches a website for feed URLs—RSS, Atom, or other syndication formats—and returns them as a list. It wraps the original feedfinder logic created by Mark Pilgrim and maintained by Aaron Swartz, adapting it for modern use. The library exposes a single public function, `find_feeds`, which takes a domain or URL and returns a ranked list of feed URLs it discovers by parsing the site's HTML.
The package has no runtime dependencies, making installation straightforward, but it has not been actively maintained since its 2016-01-25 release. The repository shows minimal recent activity. This age raises concerns about compatibility with current Python versions and whether its feed-detection heuristics remain effective on modern websites.
Use it for:
- Automatically discover RSS or Atom feeds on a website when building a feed aggregator or reader.
- Bulk-index feed URLs from a list of websites for archival or monitoring purposes.
- Detect available syndication formats on a domain as part of a web scraping or content-discovery pipeline.
- Migrate or consolidate feeds from multiple sites without manually hunting for feed URLs.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Feedfinder2 detects and returns feed URLs (RSS, Atom, etc.) available on a given website by parsing its HTML.
No. The package is abandoned (last release 2016-01-25) and its Python version compatibility is unspecified. While MIT-licensed and dependency-free, the lack of maintenance means it will likely fail on modern Python versions and may not handle contemporary website structures. For active feed discovery, use a maintained alternative or implement feed detection directly with current libraries.
Install
feedfinder2 on PyPI
pip
pip install feedfinder2uv
uv add feedfinder2poetry
poetry add feedfinder2Installing feedfinder2
Before you install
High install friction: the package has been abandoned since 2016 with no updates for many years. The latest release is from 2016-01-25, and the repository shows minimal recent activity. No runtime dependencies, but the age and lack of active development signal potential compatibility issues with modern Python versions.
License in practice
MIT license is permissive and imposes no significant restrictions on use, modification, or distribution.
Quickstart
from feedfinder2 import find_feeds
feeds = find_feeds("xkcd.com")
print(feeds)
Python version compatibility is unspecified; the package may not work on modern Python versions without fixes, given its last release in 2016-01-25.
Verify before relying
- Whether the package works on current Python versions without modification.
- Whether external HTTP fetching or parsing libraries are actually required at runtime despite being unlisted.
- Whether feed detection accuracy remains acceptable for contemporary website structures.
Package facts
| License | MIT (permissive) |
| Python support | not specified |
| Install friction | high — source build required |
| Runtime dependencies | none |
| Maintenance | abandoned — 3,854 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 462,534/month — #6,526 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: feedfinder2-0.0.4.tar.gz
Tags
More WWW/HTTP packages
urllib3 is an HTTP client library that provides…
permissive · top 100 on PyPI
requestsRequests is a Python HTTP library that…
permissive · top 100 on PyPI
h11h11 is a pure-Python HTTP/1.1 protocol…
permissive · top 100 on PyPI
httpxHTTPX is a fully featured HTTP client library…
permissive · top 100 on PyPI
httpcoreA minimal low-level HTTP client library that…
permissive · top 100 on PyPI
aiohttpaiohttp is an async HTTP client and server…
permissive · top 100 on PyPI
feedparserParses Atom and RSS feeds (including RSS 0.9x,…
permissive · top 5,000 on PyPI
feedgenGenerates web feeds in ATOM and RSS formats,…
copyleft · top 15,000 on PyPI
mkdocs-rss-pluginGenerates RSS 2.0 and JSON Feed 1.1 feeds for…
permissive · top 15,000 on PyPI
ultimate-sitemap-parserParses and crawls sitemaps in multiple formats…
copyleft · top 15,000 on PyPI
gnewsGNews searches Google News RSS feeds and…
permissive · top 15,000 on PyPI
georss-clientA framework for building client libraries that…
permissive · top 15,000 on PyPI
georss-generic-clientProvides generic access to GeoRSS feeds with…
permissive · top 15,000 on PyPI
urlextractExtracts URLs from text by locating TLDs and…
permissive · top 5,000 on PyPI
pelicanPelican is a static site generator that…
agpl · top 15,000 on PyPI