import urllib.request
l = 0
for i in range(8, 30):
    for j in range(0, 24):
        for k in range(0, 4):
            l = l + 1
            print("https://webdb.plebco.de/static/pages/in17-0-" + str(i) + "_" + str(j) + "-" + str(k * 15) + ".png - " + str(l))
            try: urllib.request.urlretrieve("https://webdb.plebco.de/static/pages/in17-0-" + str(i) + "_" + str(j) + "-" + str(k * 15) + ".png", "screenshots/" + str(l) +  ".png")
            except urllib.error.URLError as e:
                continue