如何使用Python下载文件?

时间:2018-03-05 15:16:12

标签: python download get

我是Python新手,我想通过向服务器发送请求来下载文件。当我在浏览器中输入它时,我看到CSV文件已下载,但是当我尝试发送获取请求时,它不会返回任何内容。例如:

import urllib2
response = urllib2.urlopen('https://publicwww.com/websites/%22google.com%22/?export=csv')
data = response.read()
print 'data: ',  data

它没有显示任何内容,我该如何处理?当我在网上搜索时,所有问题都是关于如何发送获取请求。我可以发送get请求,但我不知道文件是如何下载的,因为它不在请求的响应中。

我不知道如何找到解决方案。

3 个答案:

答案 0 :(得分:4)

您可以使用urlretrieve下载文件

<强> EX:

u = "https://publicwww.com/websites/%22google.com%22/?export=csv"

import urllib
urllib.request.urlretrieve (u, "Ktest.csv")

答案 1 :(得分:2)

import os
os.system("wget https://publicwww.com/websites/%22google.com%22/?export=csv")

你可以试试wget,如果你有的话。

答案 2 :(得分:2)

您也可以使用python中的请求模块下载文件。

import shutil

import requests

url = "https://publicwww.com/websites/%22google.com%22/?export=csv"
response = requests.get(url, stream=True)
with open('file.csv', 'wb') as out_file:
    shutil.copyfileobj(response.raw, out_file)
del response