-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite.py
More file actions
315 lines (234 loc) · 16.3 KB
/
website.py
File metadata and controls
315 lines (234 loc) · 16.3 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
from attr import field
import discord
from discord.ext import commands
description = '''An example bot to showcase the discord.ext.commands extension
module. There are a number of utility commands being showcased here.'''
intents = discord.Intents.all()
intents.members = True
bot = commands.Bot(command_prefix='?', description=description, intents=intents)
@bot.event
async def on_ready():
print('Hello, I am online now')
@bot.command()
async def ping(ctx):
await ctx.send('pong!')
@bot.command()
async def hello(ctx):
await ctx.send('Hey! How are you doing today?')
@bot.command()
async def helpme(ctx):
await ctx.send('For any inquiries or concern regarding my status, open up a ticket in Blizzard Notify and the developer will be with you right away!')
@bot.command()
async def info(ctx):
await ctx.send('My name is Blizzard Bot. My goal is to ensure that all members of the Blizzard Notify community are able to navigate and find answers to their problems much quicker. I currently have a variety of features such as shoe size converter, website checker, and tips on certain websites. I am always in development with new features always being added.')
@bot.command()
async def footlocker(ctx):
footlocker = discord.Embed(title='Website Checker', description='Footlocker is a Footsite. You can visit at https://www.footlocker.com/. ', color=0x070d53)
footlocker.set_thumbnail(url='https://imgur.com/1Nl5Lc3.png')
footlocker.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=footlocker)
@bot.command()
async def ftl(ctx):
ftl = discord.Embed(title='Website Checker', description='Footlocker is a Footsite. You can visit at https://www.footlocker.com/. ', color=0x070d53)
ftl.set_thumbnail(url='https://imgur.com/1Nl5Lc3.png')
ftl.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=ftl)
@bot.command()
async def champssports(ctx):
champssports = discord.Embed(title='Website Checker', description='Champs Sports is a Footsite. You can visit at https://www.champssports.com/. ', color=0x070d53)
champssports.set_thumbnail(url='https://imgur.com/Blpctkl.png')
champssports.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=champssports)
@bot.command()
async def champs(ctx):
champs = discord.Embed(title='Website Checker', description='Champs Sports is a Footsite. You can visit at https://www.champssports.com/. ', color=0x070d53)
champs.set_thumbnail(url='https://imgur.com/Blpctkl.png')
champs.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=champs)
@bot.command()
async def amamaniere(ctx):
amamaniere = discord.Embed(title='Website Checker', description='A Ma Maniere is a Shopify based website. You can visit at https://www.a-ma-maniere.com/. ', color=0x070d53)
amamaniere.set_thumbnail(url='https://imgur.com/3Z4gQut.png')
amamaniere.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=amamaniere)
@bot.command()
async def amm(ctx):
amm = discord.Embed(title='Website Checker', description='A Ma Maniere is a Shopify based website. You can visit at https://www.a-ma-maniere.com/. ', color=0x070d53)
amm.set_thumbnail(url='https://imgur.com/3Z4gQut.png')
amm.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=amm)
@bot.command()
async def apb(ctx):
apb = discord.Embed(title='Website Checker', description='APB Store is a Shopify based website. You can visit at https://www.apbstore.com/. ', color=0x070d53)
apb.set_thumbnail(url='https://imgur.com/ipzaBQb.png')
apb.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=apb)
@bot.command()
async def atmos(ctx):
atmos = discord.Embed(title='Website Checker', description='Atmos or better known as Atmos USA is a Shopify based website. You can visit at https://www.apbstore.com/. ', color=0x070d53)
atmos.set_thumbnail(url='https://imgur.com/1raKyWA.png')
atmos.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=atmos)
@bot.command()
async def bbc(ctx):
bbc = discord.Embed(title='Website Checker', description='BBC, yes its weird, dont think about it, or better known as BBCIceCream is a Shopify based website. You can visit at https://www.bbcicecream.com/. ', color=0x070d53)
bbc.set_thumbnail(url='https://imgur.com/X7ni7kp.png')
bbc.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=bbc)
@bot.command()
async def bodega(ctx):
bodega = discord.Embed(title='Website Checker', description='Bodega is a Shopify based website. You can visit at https://bdgastore.com/. ', color=0x070d53)
bodega.set_thumbnail(url='https://imgur.com/4m0RcDL.png')
bodega.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=bodega)
@bot.command()
async def concepts(ctx):
concepts = discord.Embed(title='Website Checker', description='Concepts is a Shopify based website. You can visit at https://cncpts.com/. ', color=0x070d53)
concepts.set_thumbnail(url='https://imgur.com/6NDUkNN.png')
concepts.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=concepts)
@bot.command()
async def cncpts(ctx):
cncpts = discord.Embed(title='Website Checker', description='Concepts is a Shopify based website. You can visit at https://cncpts.com/. ', color=0x070d53)
cncpts.set_thumbnail(url='https://imgur.com/6NDUkNN.png')
cncpts.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=cncpts)
@bot.command()
async def dtlr(ctx):
dtlr = discord.Embed(title='Website Checker', description='DTLR is a Shopify based website. You can visit at https://www.dtlr.com/. ', color=0x070d53)
dtlr.set_thumbnail(url='https://imgur.com/q6IeJNg.png')
dtlr.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=dtlr)
@bot.command()
async def dsmny(ctx):
dsmny = discord.Embed(title='Website Checker', description='DSMNY is a Shopify based website. You can visit at https://shop-us.doverstreetmarket.com/. ', color=0x070d53)
dsmny.set_thumbnail(url='https://imgur.com/qHwSRbo.png')
dsmny.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=dsmny)
@bot.command()
async def darkside(ctx):
darkside = discord.Embed(title='Website Checker', description='Darkside, or Darkside Initiative, is a Shopify based website. You can visit at https://www.thedarksideinitiative.com/. ', color=0x070d53)
darkside.set_thumbnail(url='https://imgur.com/SA572Tk.png')
darkside.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=darkside)
@bot.command()
async def dicks(ctx):
dicks = discord.Embed(title='Website Checker', description='Dicks, or Dicks Sporting Goods, is neither a Shopify or a Footsite website. It is based on its own software. You can visit at https://www.dickssportinggoods.com/. ', color=0x070d53)
dicks.set_thumbnail(url='https://imgur.com/Qd0EQdn.png')
dicks.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=dicks)
@bot.command()
async def finishline(ctx):
finishline = discord.Embed(title='Website Checker', description='FinishLine, is neither a Shopify or a Footsite website. It is based on its own software. You can visit at https://www.finishline.com/. ', color=0x070d53)
finishline.set_thumbnail(url='https://imgur.com/McO0FtR.png')
finishline.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=finishline)
@bot.command()
async def fnl(ctx):
fnl = discord.Embed(title='Website Checker', description='FinishLine, is neither a Shopify or a Footsite website. It is based on its own software. You can visit at https://www.finishline.com/. ', color=0x070d53)
fnl.set_thumbnail(url='https://imgur.com/McO0FtR.png')
fnl.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=fnl)
@bot.command()
async def gbny(ctx):
gbny = discord.Embed(title='Website Checker', description='GBNY is a Shopify based website. You can visit at https://gbny.com/. ', color=0x070d53)
gbny.set_thumbnail(url='https://imgur.com/eVtufHJ.png')
gbny.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=gbny)
@bot.command()
async def hibbett(ctx):
hibbett = discord.Embed(title='Website Checker', description='Hibbett is neither a Shopify or a Footsite website. It is based on its own software. You can visit at https://www.hibbett.com/. ', color=0x070d53)
hibbett.set_thumbnail(url='https://imgur.com/c7jxIIc.png')
hibbett.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=hibbett)
@bot.command()
async def jdsports(ctx):
jdsports = discord.Embed(title='Website Checker', description='JD Sports, is neither a Shopify or a Footsite website. It is based on its own software. You can visit at https://www.jdsports.com/. ', color=0x070d53)
jdsports.set_thumbnail(url='https://imgur.com/jEODUuM.png')
jdsports.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=jdsports)
@bot.command()
async def jd(ctx):
jd = discord.Embed(title='Website Checker', description='JD Sports, is neither a Shopify or a Footsite website. It is based on its own software. You can visit at https://www.jdsports.com/. ', color=0x070d53)
jd.set_thumbnail(url='https://imgur.com/jEODUuM.png')
jd.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=jd)
@bot.command()
async def jimmyjazz(ctx):
jimmyjazz = discord.Embed(title='Website Checker', description='Jimmy Jazz is a Shopify based website. You can visit at https://www.jimmyjazz.com/. ', color=0x070d53)
jimmyjazz.set_thumbnail(url='')
jimmyjazz.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=jimmyjazz)
@bot.command()
async def jj(ctx):
jj = discord.Embed(title='Website Checker', description='Jimmy Jazz is a Shopify based website. You can visit at https://www.jimmyjazz.com/. ', color=0x070d53)
jj.set_thumbnail(url='')
jj.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=jj)
@bot.command()
async def kith(ctx):
kith = discord.Embed(title='Website Checker', description='KITH is a Shopify based website. You can visit at https://kith.com/. ', color=0x070d53)
kith.set_thumbnail(url='https://imgur.com/6whhp0U.png')
kith.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=kith)
@bot.command()
async def lapstone(ctx):
lapstone = discord.Embed(title='Website Checker', description='Lapstone, or Lapstone and Hammer is a Shopify based website. You can visit at https://www.lapstoneandhammer.com/. ', color=0x070d53)
lapstone.set_thumbnail(url='https://imgur.com/YZF9utX.png')
lapstone.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=lapstone)
@bot.command()
async def packer(ctx):
packer = discord.Embed(title='Website Checker', description='Packer is a Shopify based website. You can visit at https://packershoes.com/. ', color=0x070d53)
packer.set_thumbnail(url='https://imgur.com/CpEdDQY.png')
packer.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=packer)
@bot.command()
async def size(ctx):
size = discord.Embed(title='Website Checker', description='Size? is a Shopify based website. You can visit at https://size.ca/. ', color=0x070d53)
size.set_thumbnail(url='https://imgur.com/joAhl6j.png')
size.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=size)
@bot.command()
async def sneakerpolitics(ctx):
sneakerpolitics = discord.Embed(title='Website Checker', description='Sneaker Politics is a Shopify based website. You can visit at https://sneakerpolitics.com/. ', color=0x070d53)
sneakerpolitics.set_thumbnail(url='https://imgur.com/dCrpi3b.png')
sneakerpolitics.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=sneakerpolitics)
@bot.command()
async def snkrpol(ctx):
snkrpol = discord.Embed(title='Website Checker', description='Sneaker Politics is a Shopify based website. You can visit at https://sneakerpolitics.com/. ', color=0x070d53)
snkrpol.set_thumbnail(url='https://imgur.com/dCrpi3b.png')
snkrpol.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=snkrpol)
@bot.command()
async def saintalfred(ctx):
saintalfred = discord.Embed(title='Website Checker', description='Saint Alfred is a Shopify based website. You can visit at https://www.saintalfred.com/. ', color=0x070d53)
saintalfred.set_thumbnail(url='https://imgur.com/9okJ3sC.png')
saintalfred.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=saintalfred)
@bot.command()
async def shoepalace(ctx):
shoepalace = discord.Embed(title='Website Checker', description='Shoe Palace is a Shopify based website. You can visit at https://www.shoepalace.com/. ', color=0x070d53)
shoepalace.set_thumbnail(url='https://imgur.com/ZcyrJ79.png')
shoepalace.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=shoepalace)
@bot.command()
async def sp(ctx):
sp = discord.Embed(title='Website Checker', description='Shoe Palace is a Shopify based website. You can visit at https://www.shoepalace.com/. ', color=0x070d53)
sp.set_thumbnail(url='https://imgur.com/ZcyrJ79.png')
sp.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=sp)
@bot.command()
async def shopnicekicks(ctx):
shopnicekicks = discord.Embed(title='Website Checker', description='Shop Nice Kicks is a Shopify based website. You can visit at https://shopnicekicks.com/. ', color=0x070d53)
shopnicekicks.set_thumbnail(url='https://imgur.com/TGHew8v.png')
shopnicekicks.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=shopnicekicks)
@bot.command()
async def snk(ctx):
snk = discord.Embed(title='Website Checker', description='Shop Nice Kicks is a Shopify based website. You can visit at https://shopnicekicks.com/. ', color=0x070d53)
snk.set_thumbnail(url='https://imgur.com/TGHew8v.png')
snk.set_footer(text='@BlizzardNotify | Powered by Blizzard Notify', icon_url='https://imgur.com/zi8SCan.png')
await ctx.send(embed=snk)
bot.run('TOKEN GOES HERE')