美文网首页
Python识别简单验证码(一)

Python识别简单验证码(一)

作者: sunland_0416 | 来源:发表于2020-10-10 08:08 被阅读0次

素材准备下载
从网上找到一个简单的验证码的地址

# -*- coding:utf-8 -*-

import requests 
import os
import time

os.makedirs('./image/', exist_ok=True)
IMAGE_URL = "xxxxxxxxxxxxxxxx"

for i in range(10,1000):
    def request_download():
        r = requests.get(IMAGE_URL)
        with open('./image/'+str(i)+'.png', 'wb') as f:
            f.write(r.content)


    try:
        request_download()
        print('download img')
        # im = Image.open('./image/img.png')
        # im.show()
    except:
        print('download img error!')

    time.sleep(1)

相关文章

网友评论

      本文标题:Python识别简单验证码(一)

      本文链接:https://www.haomeiwen.com/subject/dwldpktx.html