Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 1.26 KB

README.md

File metadata and controls

49 lines (30 loc) · 1.26 KB

RSS Digger

RSS Digger is a Python library designed to help you discover RSS feeds from any given URL. Whether you're working with YouTube channels, subreddits, blogs, or other platforms, RSS Digger simplifies the process of finding and extracting RSS feed links.

With RSS Digger, you can:

  • Automatically detect RSS feeds from a variety of sources.
  • Handle complex URLs like YouTube channels, subreddits, and more.
  • Easily integrate RSS feed discovery into your projects.
pip install rss-digger

Quickstart

import asyncio

from rss_digger import get_rss_feeds_for


async def main():
  rss_url = "https://realpython.com"
  rss_links = await get_rss_feeds_for(url=rss_url)

  print(rss_links)  # ["https://realpython.com/atom.xml", ]


if __name__ == "__main__":
  asyncio.run(main())

Features

... Blogs and Websites: Detect RSS feeds from blogs and news websites.

Asynchronous: Built with asyncio for efficient, non-blocking operations.