python 获取https网站数据

python 获取https网站数据,第1张

一,检查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网站数据、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/10149773.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存