-
Notifications
You must be signed in to change notification settings - Fork 1
/
TESTER.py
25 lines (22 loc) · 977 Bytes
/
TESTER.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
import giffy
import os
urls = '''https://twitter.com/ChartBTS/status/1201920311245099008
https://www.reddit.com/r/gif/comments/e4gmow/karate_move/
https://ronweasley.tumblr.com/post/188896662009
https://giphy.com/gifs/mlb-astros-houston-carlos-correa-SxMF64Np2fUCMlcUdE
https://tenor.com/view/beyond-scared-straight-scared-straight-gif-13451841
https://imgur.com/gallery/RGLR9DK
https://9gag.com/gag/aMYdqjX
https://onsizzle.com/i/worlc-star-hip-hop-com-worlg-star-there-goes-that-cellphone-4484cfdb1cfc4453b78f46017c721183
https://gfycat.com/artisticheftygoldenmantledgroundsquirrel-good-job
http://www.gifbin.com/985660
http://www.reactiongifs.com/george-costanza-omg-2/
https://imgflip.com/gif/3i39e4
https://gifer.com/en/1Ibj
http://panagif.com/gif/XTDYDAGEc/
https://www.tiktok.com/@iamjoaskills/video/6763954173277949189'''.split('\n')
os.makedirs('GIFS', exist_ok=True)
os.chdir('GIFS')
for url in urls:
giffy.main(url, True)
print()