-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotifyBot.py
130 lines (105 loc) · 3.7 KB
/
notifyBot.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import os
import discord
import Anilist
import keep_alive
from time import sleep
from discord.ext import commands,tasks
from nyaa import Torrent
from dotenv import load_dotenv
load_dotenv()
# Add anilist user name and discord client secret
username = os.getenv('username')
secret = os.getenv('client_secret')
# format time
intervals = (
('days', 86400), # 60 * 60 * 24
('hours', 3600), # 60 * 60
('minutes', 60),
('seconds', 1),
)
def display_time(seconds, granularity=3):
result = []
for name, count in intervals:
value = seconds // count
if value:
seconds -= value * count
if value == 1:
name = name.rstrip('s')
result.append("{} {}".format(value, name))
return ', '.join(result[:granularity])
user = Anilist.Anilist(username)
bot = commands.Bot(command_prefix='.')
channel_id = None # channel id to send msg in
# creates two process one for comands and another for tasks
if os.fork():
@bot.event
async def on_ready():
print("Bot is online")
#commands
@bot.command(brief="Returns ping of the bot")
async def ping(ctx):
await ctx.send(f'Pong! {round (bot.latency * 1000)}ms ')
@bot.command(brief="Stops bot from running")
async def stop(ctx):
await bot.close()
@bot.command(brief="Clear messages. Takes args of number of msg to delete")
async def clear(ctx,n=5):
n = n + 1
await ctx.channel.purge(limit=n)
@bot.command(brief="change user.requires new username as an argument")
async def register(ctx,uname):
username = uname
@bot.command(brief="List airing schedules for anime in your watch list")
async def list(ctx):
l = user.getWatchingList()
embed = discord.Embed(
title="Airing Schedule",
description="Your watchlist airing schedule"
)
for i in l:
embed.add_field(
name=i['title'],
value=f"Episode: [{i['epiNo']}]({i['url']}) \nTime: {display_time(i['timeRem'])}",
inline=False)
await ctx.send(embed=embed)
@bot.command(brief="lists torrent for anime")
async def torrent(ctx,query,pr='sp'):
obj = Torrent()
epi_list = obj.search(query,provider=pr)
embed = discord.Embed(
title = query,
description = "Epi\n480p\t720p\t1080p"
)
for ep in epi_list:
embed.add_field(
name = ep,
value=f"[{epi_list[ep]['480p']['size']}]({epi_list[ep]['480p']['link']})\t\t[{epi_list[ep]['720p']['size']}]({epi_list[ep]['720p']['link']})\t\t[{epi_list[ep]['1080p']['size']}]({epi_list[ep]['1080p']['link']})",
inline=False
)
await ctx.send(embed=embed)
else:
#runs the "announce" function once a day
@tasks.loop(seconds=86400)
async def announce():
channel = bot.get_channel(channel_id)
list = user.getWatchingList()
print(list)
while (len(list) != 0):
d = list.pop()
sleep(d['timeRem'])
for i in list:
i['timeRem'] -= d['timeRem']
embed = discord.Embed(title=d['title'],url=d['url'],description=f"Episode: {d['epiNo']}")
embed.set_image(url=d['img'])
await channel.send(embed=embed)
#wait till the bot is ready
@announce.before_loop
async def before_printer():
print('waiting...')
await bot.wait_until_ready()
#start the task
announce.start()
#start server
keep_alive.keep_alive()
#run Bot
bot.run(secret)