From c8c3ad82a54dcaf84850b713e296306071c61f98 Mon Sep 17 00:00:00 2001 From: jjanzen Date: Sat, 8 Mar 2025 16:35:01 -0600 Subject: system changes --- macos.local/flake/home/scripts/yt-to-rss.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 macos.local/flake/home/scripts/yt-to-rss.py (limited to 'macos.local/flake/home/scripts/yt-to-rss.py') diff --git a/macos.local/flake/home/scripts/yt-to-rss.py b/macos.local/flake/home/scripts/yt-to-rss.py new file mode 100644 index 0000000..c442fb3 --- /dev/null +++ b/macos.local/flake/home/scripts/yt-to-rss.py @@ -0,0 +1,12 @@ +import requests +from bs4 import BeautifulSoup +import sys + +channel_link = sys.argv[1] + +response = requests.get(channel_link) +soup = BeautifulSoup(response.content, "html.parser") +rss_link = soup.find("link", title="RSS") +rss_url = rss_link.get("href") + +print(rss_url) -- cgit v1.2.3