python 云打码 http接口
- import http.client, mimetypes, urllib, json, time, requests
- ######################################################################
- class YDMHttp:
- apiurl = 'http://api.yundama.com/api.php'
- username = ''
- password = ''
- appid = ''
- appkey = ''
- def __init__(self, username, password, appid, appkey):
- self.username = username
- self.password = password
- self.appid = str(appid)
- self.appkey = appkey
- def request(self, fields, files=[]):
- response = self.post_url(self.apiurl, fields, files)
- response = json.loads(response)
- return response
- def balance(self):
- data = {'method': 'balance', 'username': self.username, 'password': self.password, 'appid': self.appid,
- 'appkey': self.appkey}
- response = self.request(data)
- if (response):
- if (response['ret'] and response['ret'] < 0):
- return response['ret']
- else:
- return response['balance']
- else:
- return -9001
- def login(self):
- data = {'method': 'login', 'username': self.username, 'password': self.password, 'appid': self.appid,
- 'appkey': self.appkey}
- response = self.request(data)
- if (response):
- if (response['ret'] and response['ret'] < 0):
- return response['ret']
- else:
- return response['uid']
- else:
- return -9001
- def upload(self, filename, codetype, timeout):
- data = {'method': 'upload', 'username': self.username, 'password': self.password, 'appid': self.appid,
- 'appkey': self.appkey, 'codetype': str(codetype), 'timeout': str(timeout)}
- file = {'file': filename}
- response = self.request(data, file)
- if (response):
- if (response['ret'] and response['ret'] < 0):
- return response['ret']
- else:
- return response['cid']
- else:
- return -9001
- def result(self, cid):
- data = {'method': 'result', 'username': self.username, 'password': self.password, 'appid': self.appid,
- 'appkey': self.appkey, 'cid': str(cid)}
- response = self.request(data)
- return response and response['text'] or ''
- def decode(self, filename, codetype, timeout):
- cid = self.upload(filename, codetype, timeout)
- if (cid > 0):
- for i in range(0, timeout):
- result = self.result(cid)
- if (result != ''):
- return cid, result
- else:
- time.sleep(1)
- return -3003, ''
- else:
- return cid, ''
- def report(self, cid):
- data = {'method': 'report', 'username': self.username, 'password': self.password, 'appid': self.appid,
- 'appkey': self.appkey, 'cid': str(cid), 'flag': ''}
- response = self.request(data)
- if (response):
- return response['ret']
- else:
- return -9001
- def post_url(self, url, fields, files=[]):
- for key in files:
- files[key] = open(files[key], 'rb');
- res = requests.post(url, files=files, data=fields)
- return res.text
- def code(IMG_URL):
- ######################################################################
- # 用户名
- username = ''
- # 密码
- password = ''
- # 软件ID,开发者分成必要参数。登录开发者后台【我的软件】获得!
- appid = 1
- # 软件密钥,开发者分成必要参数。登录开发者后台【我的软件】获得!
- appkey = '22cc5376925e9387a23cf797cb9ba745'
- # 图片文件
- filename = IMG_URL
- # 验证码类型,# 例:1004表示4位字母数字,不同类型收费不同。请准确填写,否则影响识别率。在此查询所有类型 http://www.yundama.com/price.html
- codetype = 1004
- # 超时时间,秒
- timeout = 60
- # 检查
- if (username == 'username'):
- print('请设置好相关参数再测试')
- else:
- # 初始化
- yundama = YDMHttp(username, password, appid, appkey)
- # 登陆云打码
- uid = yundama.login();
- # print('uid: %s' % uid)
- # 查询余额
- balance = yundama.balance();
- print('balance: %s' % balance)
- # 开始识别,图片路径,验证码类型ID,超时时间(秒),识别结果
- cid, result = yundama.decode(filename, codetype, timeout);
- print('cid: %s, result: %s' % (cid, result))
- return result
- ######################################################################
python 云打码 http接口的更多相关文章
- python 云打码 hhtp接口
import http.client, mimetypes, urllib, json, time, requests ######################################## ...
- requests利用selenium,代理Ip,云打码,验证码抠图操作 爬取搜狗微信公众号内容
爬取思路,爬取搜狗微信公众号内容,爬取第一层url时请求太快出现验证码,我这里用的蘑菇云代理,并在程序中我判断什么情况下是否+代理,做到合理运用代理ip.爬取第二层url时验证码出现次数更严重(和第一 ...
- 接口自动化 [授客]基于python+Testlink+Jenkins实现的接口自动化测试框架V3.0
基于python+Testlink+Jenkins实现的接口自动化测试框架V3.0 by:授客 QQ:1033553122 博客:http://blog.sina.com.cn/ishou ...
- 基于python+Testlink+Jenkins实现的接口自动化测试框架V3.0
基于python+Testlink+Jenkins实现的接口自动化测试框架V3.0 目录 1. 开发环境2. 主要功能逻辑介绍3. 框架功能简介 4. 数据库的创建 5. 框架模块详细介绍6. Tes ...
- Python——Requests库的开发者接口
本文介绍 Python Requests 库的开发者接口,主要内容包括: 目录 一.主要接口 1. requests.request() 2. requests.head().get().post() ...
- 《python解释器源码剖析》第11章--python虚拟机中的控制流
11.0 序 在上一章中,我们剖析了python虚拟机中的一般表达式的实现.在剖析一遍表达式是我们的流程都是从上往下顺序执行的,在执行的过程中没有任何变化.但是显然这是不够的,因为怎么能没有流程控制呢 ...
- 《python解释器源码剖析》第8章--python的字节码与pyc文件
8.0 序 我们日常会写各种各样的python脚本,在运行的时候只需要输入python xxx.py程序就执行了.那么问题就来了,一个py文件是如何被python变成一系列的机器指令并执行的呢? 8. ...
- 《python解释器源码剖析》第0章--python的架构与编译python
本系列是以陈儒先生的<python源码剖析>为学习素材,所记录的学习内容.不同的是陈儒先生的<python源码剖析>所剖析的是python2.5,本系列对应的是python3. ...
- Python+Pytest+Allure+Git+Jenkins接口自动化框架
Python+Pytest+Allure+Git+Jenkins接口自动化框架 一.接口基础 接口测试是对系统和组件之间的接口进行测试,主要是效验数据的交换,传递和控制管理过程,以及相互逻辑依赖关系. ...
随机推荐
- redis命令Keys(九)
常用命令 1>keys 返回满足给定pattern 的所有key redis 127.0.0.1:6379> keys mylist* 1) "mylist" 2) & ...
- Hive元数据找回
如果不小心删除了了hive的元数据文件(/user/hive/warehouse),只要先前core-site.xml文件中设置了fs.trash.interval属性就可以找回.hdfs会为用户创建 ...
- ECSIDE标签
ECSIDE标签之<ec:table>标签的属性说明与使用 EC side是基于jsp tag的开源列表组件,可以帮助我们快速实现墙大的列表的jsp标签.EC side可以展现列表(分 ...
- Error: “app_name” is not translated in af
in values/strings.xml "app_name" is not translated in af, am, ar, be, bg, ca, cs, da, de ...
- Python学习之路基础篇--09Python基础,初识函数
函数可以分为内置函数 和 自定义函数.这次关注的主要是自定义函数.定义函数之后,就可以在任何需要它的地方调用. 1 返回值的重要性 返回值的3种情况 没有返回值 ---- 返回None 不定 retu ...
- Java线程池不错的总结博客
ImportNew线程池总结 Java多线程之Executor.ExecutorService.Executors.Callable.Future与FutureTask 线程池,这一篇或许就够了
- Virtualization
time sharing——>virtualization. OS需要low-level machinery mechanisms and high-level intelligence. 前者 ...
- java根据ip地址获取详细地域信息的方法
通过淘宝IP地址库获取IP位置(也可以使用新浪的) 请求接口(GET):http://ip.taobao.com/service/getIpInfo.php?ip=[ip地址字串] 响应信息:(jso ...
- 设计模式—模板方法(template method)
一.定义 百度百科给的定义:定义一个操作中的算法骨架(稳定),而将一些步骤延迟到子类中(变化).Template Method使得子类可以不改变一个算法的结构即可重定义该算法的某些特定步骤. 如何做到 ...
- centos安装实用总结
1.常用软件安装: yum install -y bash-completion vim lrzsz wget expect net-tools nc nmap tree dos2unix htop ...