python自动化调用百度api解决验证码

作者:回忆you呵 时间:2023-03-18 19:21:27 

自动化测试验证码登陆的三种解决方式

1,找开发关闭验证码
2,找开发设置万能验证码
3,使用第三方接口识别验证–不能100%识别,比自己搭建的ocr识别的识别率高很多

具体讲的就是第三种-调用百度云识别验证码:


from selenium import webdriver
from PIL import Image
import base64
import requests
import time

def baidu_api(Verification_code, AK, SK):#Verification_code验证码路径,AK,SK百度云的身份识别码
   chrome.get_screenshot_as_file('reg.png')  # 获取登陆页面的图片
   code_img = chrome.find_element_by_xpath(Verification_code)  # 找到验证码图片的位置
   img = Image.open('reg.png')# 保存图片
   c_img = img.crop((code_img.location['x'], code_img.location['y'], code_img.location['x'] + code_img.size['width'],
                     code_img.location['y'] + code_img.size['height']))  # 截取验证码图片
   c_img.save('reg_code.png')
   host = 'https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&' \
           'client_id='+AK+'&' \
           'client_secret='+ SK
   response = requests.get(host)
   token = response.json()['access_token']
   request_url = "https://aip.baidubce.com/rest/2.0/ocr/v1/accurate_basic"
   f = open('reg_code.png', 'rb')# 二进制方式打开图片文件
   img = base64.b64encode(f.read())
   params = {"image": img}
   access_token = token
   request_url = request_url + "?access_token=" + access_token
   headers = {'content-type': 'application/x-www-form-urlencoded'}
   response = requests.post(request_url, data=params, headers=headers)
   dict_a = response.json()['words_result']
   if response:
       dict_a = eval(str(dict_a)[1:-1])#数据类型的格式转换
       dict_a = dict(dict_a)#转化为字典类型
       dict_a = dict_a['words']
       dict_a = "".join(dict_a.split())  # 使用一个空字符串合成列表内容生成新的字符串
       dict_a = dict_a.lower()#把大写字母改为小写字母
       return dict_a
   else:
       chrome.refresh()

chrome = webdriver.Chrome()#浏览器实例化
chrome.maximize_window()#最大化浏览器
chrome.get('自己登陆的网址')
test = baidu_api(Verification_code, AK, SK)#返回识别的验证码
chrome = webdriver.Chrome()
print(test)#验证码

百度云AK,SK的获取:
进入:百度云
点击立即使用——进行登陆——实名认证。

python自动化调用百度api解决验证码

按着自己的需求选着,免费的基本上就够用了

python自动化调用百度api解决验证码

这就是自己的AK和SK

然后写入在代码里给AK和SK就行了

来源:https://blog.csdn.net/ckzuishuai/article/details/115482755

标签:python,百度api,验证码
0
投稿

猜你喜欢

  • PHP函数extension_loaded()用法实例

    2023-08-14 19:11:10
  • MySQL函数Locate的使用详解

    2024-01-17 22:59:41
  • Django数据库迁移常见使用方法

    2024-01-17 09:57:26
  • 用FrontPage制作缩略图和图片重叠效果

    2007-11-18 14:45:00
  • Yolov5(v5.0)+pyqt5界面设计图文教程

    2023-01-30 03:30:16
  • Keras实现将两个模型连接到一起

    2021-07-10 07:24:08
  • 从长尾理论和二八定律的比较去看用户体验

    2009-07-22 19:11:00
  • vue项目中将element-ui table表格写成组件的实现代码

    2024-05-28 15:55:31
  • 巧用特殊的空格字符

    2009-04-10 18:32:00
  • Python实现的对本地host127.0.0.1主机进行扫描端口功能示例

    2021-05-13 08:43:23
  • 一文搞懂Python中Pandas数据合并

    2023-03-21 13:28:56
  • 详解php中implode explode serialize json msgpack性能对比

    2023-09-03 18:00:19
  • 一个oracle指令的好网站

    2010-07-21 13:31:00
  • asp如何向前端显示用户请求的信息?

    2010-06-09 18:52:00
  • Python实现多项式拟合正弦函数详情

    2023-04-15 09:45:20
  • Element el-date-picker 日期选择器的使用

    2024-05-09 15:09:08
  • 解析Anaconda创建python虚拟环境的问题

    2023-08-01 03:58:13
  • Python+Pygame编写一个Pong游戏

    2023-08-04 15:58:31
  • Python日志:自定义输出字段 json格式输出方式

    2022-08-20 01:27:19
  • JavaScript实现动态时钟效果

    2024-04-16 10:27:04
  • asp之家 网络编程 m.aspxhome.com