summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--main.py4
2 files changed, 10 insertions, 2 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..ff564ef
--- /dev/null
+++ b/README.md
@@ -0,0 +1,8 @@
+simple script to parse a peertube rss feed for video urls. the urls can then be fed to yt-dpl for download.
+
+example:
+```commandline
+yt-dlp $(python3 main.py <peertube-rss-url>)
+```
+
+I wrote this in 5 minutes, don't hate on me for the simplistic code. \ No newline at end of file
diff --git a/main.py b/main.py
index 73b8bb0..dbd172f 100644
--- a/main.py
+++ b/main.py
@@ -1,7 +1,7 @@
+import argparse
+
from bs4 import BeautifulSoup
import requests
-import argparse
-import lxml
if __name__ == '__main__':