1 Star 3 Fork 1

Xianwu/opencv_sudoku

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
get_img.py 725 Bytes
一键复制 编辑 原始数据 按行查看 历史
Xianwu 提交于 2020-05-31 23:56 . Initial commit
'''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)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xianwu/opencv_sudoku.git
git@gitee.com:xianwu/opencv_sudoku.git
xianwu
opencv_sudoku
opencv_sudoku
master

搜索帮助