adding a feed

This commit is contained in:
Gaël Honorez
2024-01-01 17:39:38 +01:00
parent bc02cc2c22
commit 1395940824

View File

@@ -192,8 +192,10 @@ async def main(login, password, account):
feeds.append(RSSfeed("https://dystopeek.fr/feed/")) feeds.append(RSSfeed("https://dystopeek.fr/feed/"))
feeds.append(RSSfeed("https://thepixelpost.com/rss/")) feeds.append(RSSfeed("https://thepixelpost.com/rss/"))
feeds.append(RSSfeed("https://yamukass.substack.com/feed")) feeds.append(RSSfeed("https://yamukass.substack.com/feed"))
feeds.append(RSSfeed("https://tseret.com/categorie/tests/feed"))
feeds.append(RSSfeed("https://www.youtube.com/feeds/videos.xml?channel_id=UC-OvBDfZGn1OdsqMBwkOI_A", True)) feeds.append(RSSfeed("https://www.youtube.com/feeds/videos.xml?channel_id=UC-OvBDfZGn1OdsqMBwkOI_A", True))
task = SubStackTask(login, password, account, feeds) task = SubStackTask(login, password, account, feeds)
await task.run_daily_at_6_am() await task.run_daily_at_6_am()