python复杂的验证码处理(Python 通过打码平台实现验证码的实现)
类别:脚本大全 浏览量:1350
时间:2021-10-02 01:44:32 python复杂的验证码处理
Python 通过打码平台实现验证码的实现在爬虫时,经常遇到登录需要验证码的情况,简单的验证码可以自己解决,复制的验证码需要借助机器学习,有一定的难度。还有一个简单的方案就是采用付费的打码平台。
比如r若快(http://www.ruokuai.com/client),还有云打码平台(http://www.yundama.com/price.html)
下面以r若快为例介绍打码平台的思路:
r若快平台需要注册两个用户,一个是普通用户,一个开发者用户,
1、首先验证码截图,就是截取网站上登录页面的验证码图片并保存到本地
2、调用打码平台的接口把验证码图片发送到打码平台并获取到验证码结果。
具体代码如下:
|
#!/usr/bin/env python # coding:utf-8 import requests from hashlib import md5 class rclient( object ): def __init__( self , username = 'shaoks123' , password = '123456' , soft_id = '113452' , soft_key = 'c0d07d796c8e470c92a126df60d61794' ): self .username = username # self.password = md5(password).hexdigest() self .password = md5(password.encode( "utf-8" )).hexdigest() self .soft_id = soft_id self .soft_key = soft_key self .base_params = { 'username' : self .username, 'password' : self .password, 'softid' : self .soft_id, 'softkey' : self .soft_key, } self .headers = { 'connection' : 'keep-alive' , 'expect' : '100-continue' , 'user-agent' : 'ben' , } def rk_create( self , im, im_type, timeout = 60 ): """ im: 图片字节 im_type: 题目类型 """ params = { 'typeid' : im_type, 'timeout' : timeout, } params.update( self .base_params) files = { 'image' : ( 'a.jpg" alt="python复杂的验证码处理(Python 通过打码平台实现验证码的实现)" border="0" /> r = requests.post( 'http://api.ruokuai.com/create.json' , data = params, files = files, headers = self .headers) return r.json() def rk_report_error( self , im_id): """ im_id:报错题目的id """ params = { 'id' : im_id, } params.update( self .base_params) r = requests.post( 'http://api.ruokuai.com/reporterror.json' , data = params, headers = self .headers) return r.json() def test( self ,imagefile,im_type = 1030 ): # im = open('e:\python36_crawl\veriycode\code\code_823.jpg" alt="python复杂的验证码处理(Python 通过打码平台实现验证码的实现)" border="0" /> im = open (imagefile, 'rb' ).read() result = self .rk_create(im, im_type) print (result[ 'result' ]) return result[ 'result' ] # if __name__ == '__main__': # rc = rclient() # im = open('e:\python36_crawl\veriycode\code\code_823.jpg" alt="python复杂的验证码处理(Python 通过打码平台实现验证码的实现)" border="0" /> # result = rc.rk_create(im, 1030) # print(result['result']) |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持开心学习网。
原文链接:https://www.cnblogs.com/shaosks/p/9816106.html
您可能感兴趣
- python sql注入怎么避免(Python实现SQL注入检测插件实例代码)
- python设置微信(利用python实现在微信群刷屏的方法)
- python怎么自动生成报告(python根据文章标题内容自动生成摘要的实例)
- python 模块详解(举例讲解Python常用模块)
- python3.7手册中文版(Python3.4解释器用法简单示例)
- python发送微信消息脚本(python实现微信每日一句自动发送给喜欢的人)
- python包和模块管理(python的依赖管理的实现)
- python人脸识别实战视频(Python学习笔记之图片人脸检测识别实例教程)
- python 模式识别(python实现全盘扫描搜索功能的方法)
- python 串口图形化(python使用MQTT给硬件传输图片的实现方法)
- python3语法规则(详解Python3注释知识点)
- python人脸识别库(20行python代码实现人脸识别)
- python开源协议简介(对python 自定义协议的方法详解)
- pythonpandas使用攻略(详解Python中pandas的安装操作说明傻瓜版)
- python如何新建虚拟环境(详解如何管理多个Python版本和虚拟环境)
- python如何获取列表值(Python中按键来获取指定的值)
- ()
- SCI检索 SSCI检索 EI检索 ISTP检索 CSCD检索简介(SCI检索SSCI检索EI检索)
- 参考文献里期刊名称的写法,你知道吗(参考文献里期刊名称的写法)
- 硕博期刊 SCI SSCI CSSCI分不清 一文带你看懂主流期刊分类(硕博期刊SCISSCI)
- 辱华品牌新百伦官宣新代言人IU,个别粉丝希望get爱豆同款(辱华品牌新百伦官宣新代言人IU)
- 巅峰时期被爆床照,曾被选国民最讨厌女星,IU不为人知的黑历史(巅峰时期被爆床照)
热门推荐
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9