New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

rss-digger

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rss-digger

Retrieve a RSS feed given an URL.

  • 0.1.3
  • PyPI
  • Socket score

Maintainers
1

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

  • YouTube Support: Extract RSS feeds from YouTube channel URLs. Example: https://www.youtube.com/@ExampleChannelhttps://www.youtube.com/feeds/videos.xml?channel_id=...

  • Reddit Support: Find RSS feeds for subreddits. Example: https://www.reddit.com/r/python/https://www.reddit.com/r/python.rss

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

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

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc