遇到的问题---python---urllib获取到response为空
Posted 张小凡vip
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遇到的问题---python---urllib获取到response为空相关的知识,希望对你有一定的参考价值。
情况
雪球非鉴权api使用浏览器 可以直接访问到。
使用python3.7模拟浏览器访问,代码如下:
import urllib
import urllib.request
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
def fetchraw(link):
url = link
print(url)
headers = {
\'User-Agent\': \'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)\'}
req = urllib.request.Request(url,headers=headers)
response &
以上是关于遇到的问题---python---urllib获取到response为空的主要内容,如果未能解决你的问题,请参考以下文章
python urllib.request - 可能有效的标头
爬虫小探-Python3 urllib.request获取页面数据