代码拉取完成,页面将自动刷新
'''coding: utf-8
get 某网站的数独图片
现在可能没用了,在文件夹中有存
'''
#获取图片
import requests
import os
import random
number = random.randint(1,90)
print(number)
img = "image/"+ str(number) +'.jpg' ##目录根据自己自行更改
url = "http://psapi.gdieee.com/image/"+ str(number)
try:
if not os.path.exists(img):
#文件不存在
image = requests.get(url)
if image.status_code == 200:#请求正常
with open(img,'wb') as f:
f.write(image.content)
print("Successfully save")
else:
print(image.status_code)
else:
print("the file has existed")
except Exception as e:
print(e)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。