From 413ec7f363b560a0f7d7d8c77c5f1e6539b30172 Mon Sep 17 00:00:00 2001 From: Mihit Date: Wed, 9 Apr 2025 15:48:43 +1000 Subject: [PATCH] changed scrape url password to env --- rss_gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rss_gen.py b/rss_gen.py index a256df0..2511ee6 100644 --- a/rss_gen.py +++ b/rss_gen.py @@ -54,7 +54,7 @@ def create_48h_latest(df): write_file("RSS/latest_48h.xml", XML_BEGIN_LAST+last_48_xml+XML_END) def create_df(): - torfiles_scrape = requests.get("https://upload.fieryeagle.org/torfiles", auth=("torbot","uqhuaOk0bDSzPSoPIyJjHVkq")) + torfiles_scrape = requests.get("https://upload.fieryeagle.org/torfiles", auth=("torbot",copyparty_token)) soup = BeautifulSoup(torfiles_scrape.content, "html.parser") torrent_files_names = [i.find_all("td")[1].text for i in soup.find_all("tbody")[0].find_all("tr")] torrent_files_timestamps = [i.find_all("td")[7].text for i in soup.find_all("tbody")[0].find_all("tr")]