python请求库,而不是下载文件

时间:2013-11-15 02:27:44

标签: python

伙计们,尝试下载远程文件并进行搜索。使用常规请求或urllib将其抛入输出文件:

{
  "code" : "not_found",
  "error" : true,
  "message" : "No service found for this URL."
}

使用curl / wget或浏览器工作正常...

>>> import requests
>>> 
>>> url = "http://download.foo.com/filename.zip?function=download"
>>> r = requests.get(url)
>>> print r.content
{
  "code" : "not_found",
  "error" : true,
  "message" : "No service found for this URL."
}

这是Web服务器阻止我的东西吗?我不想要卷曲,仍然想留在python解释器里面:))

谢谢!

0 个答案:

没有答案