python爬虫自动识别
时间: 2023-08-14 18:05:35 浏览: 162
python爬虫详解.pdf
引用[1]和[2]提供了一个快速图片识别平台的API,可以用于验证码识别。在这个平台中,我们需要先使用用户名和密码获取到一个token。获取token的代码如下:
```python
username = '746074xxx'
password = '746074xxxxxx'
acc_url = 'http://api.95man.com:8888/api/Http/UserTaken?user=' + str(username) + '&pwd=' + str(password) + '&isref=0'
response = requests.get(acc_url, headers=headers)
token = response.text[2:]
```
获取到token后,可以使用该token对图片验证码进行识别。识别验证码的代码如下:
```python
img_orc_url = "http://api.95man.com:8888/api/Http/Recog?Taken=" + str(token) + "&imgtype=1&len=null"
orc_data = { 'ImgBase64': img }
response = requests.post(img_orc_url, headers=headers, data=orc_data)
verify = (response.text)[7:-2]
```
以上代码可以用于Python爬虫自动识别验证码。请注意,这只是一个示例,具体的实现可能需要根据实际情况进行调整。
阅读全文