requests_html中ssl问题

相关代码

// 请把代码文本粘贴到下方(请勿用图片代替代码)

from requests_html import HTMLSession

import re

session = HTMLSession()

first_Page = session.get("https://sou.zhaopin.com/?p=5&jl=531&kw=java工程师&kt=3&sf=0&st=0")

first_Page.html.render(sleep=10)

#nextButton = firstPage.html.find("#pagination_content > div > button:nth-child(7)",first=True)

##listContent > div:nth-child(1) > div.contentpile__content__wrapper__item.clearfix > a > div.contentpile__content__wrapper__item__info__box.contentpile__content__wrapper__item__info--desc.itemBox.descBox > div.contentpile__content__wrapper__item__info__box__job.jobDesc > p

#薪资水平源代码正则表达式

salary_element = "<p.*>(\d+)K-(\d+)K</p>"

salary = re.findall(salary_element,first_Page.html.html)

#最后一页下一页表达式

disabled_button_element = '<button.* disabled="disabled">下一页</button>'

disabled_button = re.findall(disabled_button_element,first_page.html.html)

print(salary)

你期待的结果是什么?实际看到的错误信息又是什么?

问题描述

在代码运行的时候出现报错,我把报错信息放到谷歌翻译,翻译结果是ssl握手失败,
requests_html中ssl问题

问题出现的环境背景及自己尝试过哪些方法

我查阅了资料,可是都是requests库的方法,我也弄好该网站的证书,可是不知道如何导入python中

相关代码

// 请把代码文本粘贴到下方(请勿用图片代替代码)

你期待的结果是什么?实际看到的错误信息又是什么?


回答:

不验证证书呗。。


回答:

那就不验证证书, verify=False 就行 demo如下

res = session.get(url, verify=False)

以上是 requests_html中ssl问题 的全部内容, 来源链接: utcz.com/a/163668.html

回到顶部