Remove test.py

This commit is contained in:
SeanOMik 2022-11-13 19:44:34 -05:00
parent 1e18557bd8
commit 32aed1689b
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
1 changed files with 0 additions and 16 deletions

16
test.py
View File

@ -1,16 +0,0 @@
import requests
base_url = "https://cdn.seedno.de/img/PokemonWallpapers/"
out = "pokemon-wallpapers"
for i in range(0, 493):
padded = format(i, '03')
print(f'Downloading {i:03}.jpg')
r = requests.get(base_url + padded + ".jpg")
with open(out + "/" + padded + ".jpg", 'wb') as f:
f.write(r.content)
print("Done!")