Python请求不返回>>>提示

时间:2017-01-10 01:30:58

标签: python python-2.7 get python-requests

我已经安装了请求,是的,它是最新的。导入请求,写下标题和写下URL都很好。他们返回>>>提示符。我写的时候:

>>> res = requests.get(url, headers=headers)

没有回报。我甚至没有得到>>>提示。在此之后我写的所有其他内容都没有回复,没有>>>并且只是黑色。

1 个答案:

答案 0 :(得分:1)

You need to pass in a timeout, allowing the call to stop after a certain amount of time.

Replace

res = requests.get(url, headers=headers)

with

r = requests.get(
    url,
    headers=headers,
    timeout=5
)