system changes
This commit is contained in:
parent
96c0592f43
commit
35e9245577
5 changed files with 12 additions and 32 deletions
|
@ -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
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
curl https://www.youtube.com/@CaptainKRB
|
8
macos.local/flake/home/scripts/yt-to-rss.org
Normal file
8
macos.local/flake/home/scripts/yt-to-rss.org
Normal 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
|
|
@ -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)
|
|
@ -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
|
Loading…
Add table
Reference in a new issue