-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
40 lines (29 loc) · 1.24 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import feedparser
from discord_new import DiscordNews
import time
# this is a list where you specify the link, the name and the avatar of your webhook, you also specify what feed to use
webhooks_feeds = [
{
"webhook": "URL of the webhook here",
"username": "Name of your bot here",
"avatar_url": "",
"feed_url": "URL of the RSS feed here"
}
]
try:
for webhooks_feed in webhooks_feeds:
feed = feedparser.parse(webhooks_feed["feed_url"]) # analyse the feed
discord = DiscordNews(webhooks_feed["webhook"], webhooks_feed["username"], webhooks_feed["avatar_url"], feed) # create a new instance of DiscordNews
discord.prepare_and_notify() # prepare and send notification in Discord
latest_feed = feed.entries[0]['id']
while True:
print("Sleeping...")
time.sleep(60*60*24) # sleep for 24 hours (in seconds)
print("Checking for new feed...")
feed = feedparser.parse(webhooks_feed["feed_url"])
new_latest_feed = feed.entries[0]['id']
if new_latest_feed != latest_feed:
discord.notify(new_latest_feed)
latest_feed = new_latest_feed
except KeyboardInterrupt:
print("Au revoir ✨")