一,检查pip有没安装cryptography,pyOpenSSL,certifi
pip install cryptography
pip install pyOpenSSL
pip install certifi
二,添加ssl验证
import ssl
ssl_create_default_https_context = ssl_create_stdlib_context
三,添加header
header = {
"User-Agent":"Mozilla/50 (Windows NT 100; Win64; x64) AppleWebKit/53736 (KHTML, like Gecko) Chrome/890438972 Safari/53736 Edg/89077445"
}
四,调用requests的get接口
response = requestsget(url,headers=header)
content = responsetext
print(content)
就能获取到html内容,如果需要更好的解释html标签内容可以使用 BeautifulSoup
以上就是关于python 获取https网站数据全部的内容,包括:python 获取https网站数据、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)