作者 by Tokeii / 2021-12-03 / 1 评论 / 2662 个足迹
import requests
from tqdm import tqdm
for i in tqdm(range(0,100)):
url = "https://iw233.cn/API/Ghs.php"
payload = {}
headers = {}
response = requests.request("GET", url, headers=headers, data=payload)
img = response.content
open(r"img\{0}.jpg".format(i),"wb").write(img)
 评论 1 条