中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python 通過打碼平臺實現驗證碼的實現

發布時間:2020-08-20 01:10:35 來源:腳本之家 閱讀:284 作者:shaomine 欄目:開發技術

 在爬蟲時,經常遇到登錄需要驗證碼的情況,簡單的驗證碼可以自己解決,復制的驗證碼需要借助機器學習,有一定的難度。還有一個簡單的方案就是采用付費的打碼平臺。

比如R若快(http://www.ruokuai.com/client),還有云打碼平臺(http://www.yundama.com/price.html)

下面以R若快為例介紹打碼平臺的思路:

R若快平臺需要注冊兩個用戶,一個是普通用戶,一個開發者用戶,

Python 通過打碼平臺實現驗證碼的實現

Python 通過打碼平臺實現驗證碼的實現

Python 通過打碼平臺實現驗證碼的實現

Python 通過打碼平臺實現驗證碼的實現

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', im)}
    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.png', 'rb').read()
    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.png', 'rb').read()
#   result = rc.rk_create(im, 1030)
#   print(result['Result'])

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宣威市| 麻阳| 安阳市| 大英县| 巴南区| 浦北县| 西吉县| 越西县| 长丰县| 丰原市| 广宁县| 浮山县| 菏泽市| 外汇| 赣榆县| 工布江达县| 合作市| 南京市| 广南县| 苏尼特左旗| 塔河县| 龙口市| 沾益县| 陆川县| 南雄市| 郧西县| 鹤峰县| 项城市| 阜南县| 阜阳市| 武强县| 新河县| 城固县| 遂溪县| 客服| 临高县| 青神县| 怀仁县| 屯门区| 靖远县| 含山县|