Python HTTP數(shù)據(jù)下載
Python HTTP數(shù)據(jù)下載
可以使用處理ftp或文件傳輸協(xié)議的python模塊從serer下載數(shù)據(jù)。還可以讀取數(shù)據(jù),然后將其保存到本地系統(tǒng)。需要安裝模塊ftplib來(lái)實(shí)現(xiàn)此目的。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 pip install ftplib
提取文件
可以使用getfile方法獲取特定文件。此方法將文件的副本從遠(yuǎn)程系統(tǒng)移動(dòng)到啟動(dòng)ftp連接的本地系統(tǒng)。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 import ftplib import sys def getFile(ftp, filename): try: ftp.retrbinary("RETR " + filename ,open(filename, 'wb').write) except: print "Error" ftp = ftplib.FTP("ftp.nluug.nl") ftp.login("anonymous", "ftplib-example-1") ftp.cwd('/pub/') change directory to /pub/ getFile(ftp,'README.nluug') ftp.quit()
當(dāng)運(yùn)行上述程序時(shí),發(fā)現(xiàn)文件README.nlug存在于啟動(dòng)連接的本地系統(tǒng)中。
讀取數(shù)據(jù)
在以下示例中,使用模塊urllib2讀取數(shù)據(jù)的必需部分,可以將其復(fù)制并保存到本地系統(tǒng)中。當(dāng)我們運(yùn)行上面的程序時(shí),得到以下輸出 :
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 import urllib2 response = urllib2.urlopen('http://www.slktour.com/python/spider-test.html') html = response.read() print html
執(zhí)行上面示例代碼,得到類似以下結(jié)果:
<meta charset="UTF-8"> <title>python spider </title> Hello,I am yapf Welcome to Python spider
相關(guān)文章
- python字符串定義的方式有哪些
- Python中find函數(shù)如何使用
- Python反射機(jī)制怎么應(yīng)用
- Python異步之上下文管理器怎么使用
- Python異步之如何獲取當(dāng)前和正在運(yùn)行任務(wù)
- Python迭代器如何創(chuàng)建使用
- Python IP地址
- Python 路由
- Python HTTP響應(yīng)
- Python 請(qǐng)求狀態(tài)代碼
- Python Socket程序
- Python Web表單提交
- Python 數(shù)據(jù)庫(kù)和SQL
- Python 電子郵件
- Python POP3
- Python Web服務(wù)器
- Python列出目錄
- Python 系統(tǒng)和內(nèi)存架構(gòu)
- Python 多處理器
- Python 處理器通信