Skip to content

Python library to be able to retrieve a RSS feed link from any given link

License

Notifications You must be signed in to change notification settings

sorasful/rss_digger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Python library to be able to retrieve a RSS feed link from any given link

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages