feedfinder2

0.0.4 · maintenance · verified Mon Apr 13

feedfinder2 is a Python library designed to locate RSS, Atom, and other feed URLs associated with a given website. It is based on the original `feedfinder` by Mark Pilgrim. The current version is 0.0.4, released in January 2016, indicating it is no longer actively maintained.

Warnings

Install

Imports

Quickstart

This quickstart demonstrates how to use `feedfinder2` to discover feed URLs for a given website. The `find_feeds` function takes a URL string and returns a list of discovered feed URLs.

from feedfinder2 import find_feeds

url_to_check = 'http://xkcd.com'
feeds = find_feeds(url_to_check)

if feeds:
    print(f'Found feeds for {url_to_check}:')
    for feed_url in feeds:
        print(feed_url)
else:
    print(f'No feeds found for {url_to_check}.')

view raw JSON →