Remove test.py
This commit is contained in:
parent
1e18557bd8
commit
32aed1689b
16
test.py
16
test.py
|
@ -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!")
|
Loading…
Reference in New Issue