從網上搜了下python實現文件下載的方法,總結以下,備查。python
如下方法均已測試,環境win7 python3.6服務器
方法一:函數
import urllib.request url = 'https://www.baidu.com/demo.rar' urllib.request.urlretrieve(url, 'D:/demo.rar')
#Python3.3後urllib2已經不能再用,只能用urllib.request來代替
使用 urllib 模塊提供的 urlretrieve() 函數。urlretrieve() 方法直接將遠程數據下載到本地。post
1
|
urlretrieve(url, [filename
=
None
, [reporthook
=
None
, [data
=
None
]]
|
說明:測試
參數 finename 指定了保存本地路徑(若是參數未指定,urllib會生成一個臨時文件保存數據。)url
參數 reporthook 是一個回調函數,當鏈接上服務器、以及相應的數據塊傳輸完畢時會觸發該回調,咱們能夠利用這個回調函數來顯示當前的下載進度。spa
參數 data 指 post 到服務器的數據,該方法返回一個包含兩個元素的(filename, headers)元組,filename 表示保存到本地的路徑,header 表示服務器的響應頭。 .net
實例:3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/usr/bin/python
#encoding:utf-8
import
urllib.request
import
os
def
Schedule(a,b,c):
'''''
a:已經下載的數據塊
b:數據塊的大小
c:遠程文件的大小
'''
per
=
100.0
*
a
*
b
/
c
if
per >
100
:
per
=
100
print
'%.2f%%'
%
per
url
=
'http://www.python.org/ftp/python/3.6.5/Python-3.6.5.tar.bz2'
#local = url.split('/')[-1]
local
=
os.path.join(
'/data/software'
,
'Python-3.6.5.tar.bz2'
)
urllib.request.urlretrieve(url,local,Schedule)
######output######
#0.00%
#0.07%
#0.13%
#0.20%
#....
#99.94%
#100.00%
|
來源:http://www.nowamagic.net/academy/detail/1302861code
方法二:
使用urllib的urlopen()函數
實例:
import urllib.request #Python3.3後urllib2已經不能再用,只能用urllib.request來代替
url = 'https://gss0.baidu.com/94o3dSag_xI4khGko9WTAnF6hhy/zhidao/wh%3D600%2C800/'\ 'sign=89d2ca65a2014c08196e20a33a4b2e30/38dbb6fd5266d01669d2d9e49c2bd40734fa3536.jpg' f = urllib.request.urlopen(url) data = f.read() with open("demo.jpg", "wb") as code: code.write(data)
方法三:
使用requests模塊
requests模塊下載:https://pypi.python.org/pypi/requests/#downloads
實例:
import requests url = 'http://ww.pythontab.com/test/demo.zip' r = requests.get(url) with open("demo3.zip", "wb") as code: code.write(r.content)