import requests
url = 'http://femhzs.mofcom.gov.cn/fecpmvc/pages/fem/CorpJWList_nav.pageNoLink.html;jsessionid=8C736597A2750E8A4D32363D15A9A5DF?session=T&sp=1&sp=S+_t1.CORP_CDE%2C+_t1.id&sp=T&sp=S'
headers = { 'User-Agent': "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36"}
r = requests.get(url,headers = headers)
上面显示了我的代码,但是这得到了连接异常中止的错误。我该怎么办,需要一些帮助。
答案 0 :(得分:0)
您的网址不起作用,但您以正确的方式使用了所有内容
In [168]: url = 'https://www.google.com'
In [169]: response = requests.get(url, headers=headers)
In [170]: response.status_code
Out[170]: 200