python requests.get错误消息

时间:2015-03-13 01:02:19

标签: python

import requests

number = requests.get("http://chainz.cryptoid.info/cure/api.dws?Key=3972cc3ec73f&q=getbalance&a=BMBGZdp8cB9gi2hgxJFBTyxgUZcL6aw6B")

print number.text

新手问题,但

我似乎无法得到我得到的错误403

1 个答案:

答案 0 :(得分:0)

如果它在您的浏览器中工作,但是从python获得403,我猜你可能有一些代理设置,否则这段代码应该可以正常工作。

如果您在代理后面,则需要配置请求模块以了解它

import requests

proxies = {
  "http": "http://10.10.1.10:3128",
  "https": "http://10.10.1.10:1080",
}

requests.get("http://chainz.cryptoid.info/cure/api.dws?Key=3972cc3ec73f&q=getbalance&a=BMBGZdp8cB9gi2hgxJFBTyxgUZcL6aw6B", proxies=proxies)