system changes

This commit is contained in:
jjanzen 2025-03-08 16:57:01 -06:00
parent 96c0592f43
commit 35e9245577
5 changed files with 12 additions and 32 deletions

View file

@ -22,6 +22,10 @@ Import various scripts useful on my system.
executable = true;
source = ./manage-system;
};
"./.local/bin/yt-to-rss" = {
executable = true;
source = ./yt-to-rss;
};
};
}
#+end_src

View file

@ -1 +0,0 @@
curl https://www.youtube.com/@CaptainKRB

View file

@ -0,0 +1,8 @@
#+title: YouTube Channel to RSS Link
Quick script to get the RSS link for a YouTube channel so I don't have to visit the website.
#+begin_src sh
#!/bin/sh
curl "$1" 2> /dev/null | pup 'link[title="RSS"] attr{href}'
#+end_src

View file

@ -1,12 +0,0 @@
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)

View file

@ -1,19 +0,0 @@
#+title: YouTube Channel to RSS Link
Quick script to get the RSS link for a YouTube channel so I don't have to visit the website.
#+begin_src python
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)
#+end_src