1. import http.client, mimetypes, urllib, json, time, requests
  2. ######################################################################
  3.  
  4. class YDMHttp:
  5. apiurl = 'http://api.yundama.com/api.php'
  6. username = ''
  7. password = ''
  8. appid = ''
  9. appkey = ''
  10.  
  11. def __init__(self, username, password, appid, appkey):
  12. self.username = username
  13. self.password = password
  14. self.appid = str(appid)
  15. self.appkey = appkey
  16.  
  17. def request(self, fields, files=[]):
  18. response = self.post_url(self.apiurl, fields, files)
  19. response = json.loads(response)
  20. return response
  21.  
  22. def balance(self):
  23. data = {'method': 'balance', 'username': self.username, 'password': self.password, 'appid': self.appid,
  24. 'appkey': self.appkey}
  25. response = self.request(data)
  26. if (response):
  27. if (response['ret'] and response['ret'] < 0):
  28. return response['ret']
  29. else:
  30. return response['balance']
  31. else:
  32. return -9001
  33.  
  34. def login(self):
  35. data = {'method': 'login', 'username': self.username, 'password': self.password, 'appid': self.appid,
  36. 'appkey': self.appkey}
  37. response = self.request(data)
  38. if (response):
  39. if (response['ret'] and response['ret'] < 0):
  40. return response['ret']
  41. else:
  42. return response['uid']
  43. else:
  44. return -9001
  45.  
  46. def upload(self, filename, codetype, timeout):
  47. data = {'method': 'upload', 'username': self.username, 'password': self.password, 'appid': self.appid,
  48. 'appkey': self.appkey, 'codetype': str(codetype), 'timeout': str(timeout)}
  49. file = {'file': filename}
  50. response = self.request(data, file)
  51. if (response):
  52. if (response['ret'] and response['ret'] < 0):
  53. return response['ret']
  54. else:
  55. return response['cid']
  56. else:
  57. return -9001
  58.  
  59. def result(self, cid):
  60. data = {'method': 'result', 'username': self.username, 'password': self.password, 'appid': self.appid,
  61. 'appkey': self.appkey, 'cid': str(cid)}
  62. response = self.request(data)
  63. return response and response['text'] or ''
  64.  
  65. def decode(self, filename, codetype, timeout):
  66. cid = self.upload(filename, codetype, timeout)
  67. if (cid > 0):
  68. for i in range(0, timeout):
  69. result = self.result(cid)
  70. if (result != ''):
  71. return cid, result
  72. else:
  73. time.sleep(1)
  74. return -3003, ''
  75. else:
  76. return cid, ''
  77.  
  78. def report(self, cid):
  79. data = {'method': 'report', 'username': self.username, 'password': self.password, 'appid': self.appid,
  80. 'appkey': self.appkey, 'cid': str(cid), 'flag': ''}
  81. response = self.request(data)
  82. if (response):
  83. return response['ret']
  84. else:
  85. return -9001
  86.  
  87. def post_url(self, url, fields, files=[]):
  88. for key in files:
  89. files[key] = open(files[key], 'rb');
  90. res = requests.post(url, files=files, data=fields)
  91. return res.text
  92.  
  93. def code(IMG_URL):
  94. ######################################################################
  95.  
  96. # 用户名
  97. username = ''
  98.  
  99. # 密码
  100. password = ''
  101. # 软件ID,开发者分成必要参数。登录开发者后台【我的软件】获得!
  102. appid = 1
  103.  
  104. # 软件密钥,开发者分成必要参数。登录开发者后台【我的软件】获得!
  105. appkey = '22cc5376925e9387a23cf797cb9ba745'
  106.  
  107. # 图片文件
  108. filename = IMG_URL
  109.  
  110. # 验证码类型,# 例:1004表示4位字母数字,不同类型收费不同。请准确填写,否则影响识别率。在此查询所有类型 http://www.yundama.com/price.html
  111. codetype = 1004
  112.  
  113. # 超时时间,秒
  114. timeout = 60
  115.  
  116. # 检查
  117. if (username == 'username'):
  118. print('请设置好相关参数再测试')
  119. else:
  120. # 初始化
  121. yundama = YDMHttp(username, password, appid, appkey)
  122.  
  123. # 登陆云打码
  124. uid = yundama.login();
  125. # print('uid: %s' % uid)
  126.  
  127. # 查询余额
  128. balance = yundama.balance();
  129. print('balance: %s' % balance)
  130.  
  131. # 开始识别,图片路径,验证码类型ID,超时时间(秒),识别结果
  132. cid, result = yundama.decode(filename, codetype, timeout);
  133. print('cid: %s, result: %s' % (cid, result))
  134. return result
  135.  
  136. ######################################################################

python 云打码 http接口的更多相关文章

  1. python 云打码 hhtp接口

    import http.client, mimetypes, urllib, json, time, requests ######################################## ...

  2. requests利用selenium,代理Ip,云打码,验证码抠图操作 爬取搜狗微信公众号内容

    爬取思路,爬取搜狗微信公众号内容,爬取第一层url时请求太快出现验证码,我这里用的蘑菇云代理,并在程序中我判断什么情况下是否+代理,做到合理运用代理ip.爬取第二层url时验证码出现次数更严重(和第一 ...

  3. 接口自动化 [授客]基于python+Testlink+Jenkins实现的接口自动化测试框架V3.0

    基于python+Testlink+Jenkins实现的接口自动化测试框架V3.0   by:授客 QQ:1033553122     博客:http://blog.sina.com.cn/ishou ...

  4. 基于python+Testlink+Jenkins实现的接口自动化测试框架V3.0

    基于python+Testlink+Jenkins实现的接口自动化测试框架V3.0 目录 1. 开发环境2. 主要功能逻辑介绍3. 框架功能简介 4. 数据库的创建 5. 框架模块详细介绍6. Tes ...

  5. Python——Requests库的开发者接口

    本文介绍 Python Requests 库的开发者接口,主要内容包括: 目录 一.主要接口 1. requests.request() 2. requests.head().get().post() ...

  6. 《python解释器源码剖析》第11章--python虚拟机中的控制流

    11.0 序 在上一章中,我们剖析了python虚拟机中的一般表达式的实现.在剖析一遍表达式是我们的流程都是从上往下顺序执行的,在执行的过程中没有任何变化.但是显然这是不够的,因为怎么能没有流程控制呢 ...

  7. 《python解释器源码剖析》第8章--python的字节码与pyc文件

    8.0 序 我们日常会写各种各样的python脚本,在运行的时候只需要输入python xxx.py程序就执行了.那么问题就来了,一个py文件是如何被python变成一系列的机器指令并执行的呢? 8. ...

  8. 《python解释器源码剖析》第0章--python的架构与编译python

    本系列是以陈儒先生的<python源码剖析>为学习素材,所记录的学习内容.不同的是陈儒先生的<python源码剖析>所剖析的是python2.5,本系列对应的是python3. ...

  9. Python+Pytest+Allure+Git+Jenkins接口自动化框架

    Python+Pytest+Allure+Git+Jenkins接口自动化框架 一.接口基础 接口测试是对系统和组件之间的接口进行测试,主要是效验数据的交换,传递和控制管理过程,以及相互逻辑依赖关系. ...

随机推荐

  1. redis命令Keys(九)

    常用命令 1>keys 返回满足给定pattern 的所有key redis 127.0.0.1:6379> keys mylist* 1) "mylist" 2) & ...

  2. Hive元数据找回

    如果不小心删除了了hive的元数据文件(/user/hive/warehouse),只要先前core-site.xml文件中设置了fs.trash.interval属性就可以找回.hdfs会为用户创建 ...

  3. ECSIDE标签

    ECSIDE标签之<ec:table>标签的属性说明与使用   EC side是基于jsp tag的开源列表组件,可以帮助我们快速实现墙大的列表的jsp标签.EC side可以展现列表(分 ...

  4. 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 ...

  5. Python学习之路基础篇--09Python基础,初识函数

    函数可以分为内置函数 和 自定义函数.这次关注的主要是自定义函数.定义函数之后,就可以在任何需要它的地方调用. 1 返回值的重要性 返回值的3种情况 没有返回值 ---- 返回None 不定 retu ...

  6. Java线程池不错的总结博客

    ImportNew线程池总结 Java多线程之Executor.ExecutorService.Executors.Callable.Future与FutureTask 线程池,这一篇或许就够了

  7. Virtualization

    time sharing——>virtualization. OS需要low-level machinery mechanisms and high-level intelligence. 前者 ...

  8. java根据ip地址获取详细地域信息的方法

    通过淘宝IP地址库获取IP位置(也可以使用新浪的) 请求接口(GET):http://ip.taobao.com/service/getIpInfo.php?ip=[ip地址字串] 响应信息:(jso ...

  9. 设计模式—模板方法(template method)

    一.定义 百度百科给的定义:定义一个操作中的算法骨架(稳定),而将一些步骤延迟到子类中(变化).Template Method使得子类可以不改变一个算法的结构即可重定义该算法的某些特定步骤. 如何做到 ...

  10. centos安装实用总结

    1.常用软件安装: yum install -y bash-completion vim lrzsz wget expect net-tools nc nmap tree dos2unix htop ...