python3下载文件
生活随笔
收集整理的這篇文章主要介紹了
python3下载文件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
python3下載文件
今天學習了周志華老師的機器學習導論,想從網上下載老師的講義,進入網站發現要下載的東西還不少,有14篇(雖然也不算太多啦)發現要下載的講義的url地址格式很類似哇,比如:
http://bcmi.sjtu.edu.cn/log/files/lecture_notes/ml_2014_spring_ieee/lecture1.pdf
http://bcmi.sjtu.edu.cn/log/files/lecture_notes/ml_2014_spring_ieee/lecture2.pdf
http://bcmi.sjtu.edu.cn/log/files/lecture_notes/ml_2014_spring_ieee/lecture3.pdf
都是lecturex.pdf結尾的,于是就想著用python下載,以下是我的操作步驟:
下載前
代碼:
import os import urllibprint("downloading with urllib")url0 = "http://bcmi.sjtu.edu.cn/log/files/lecture_notes/ml_2014_spring_ieee/" for item in range(1, 15):file = "lecture" + str(item) + ".pdf"url = url0 + fileprint("downloading with " + file)LocalPath = os.path.join('C:/Users/goatbishop/Desktop',file)#os.path.join將多個路徑組合后返回urllib.request.urlretrieve(url,LocalPath)#第一個參數url:需要下載的網絡資源的URL地址#第二個參數LocalPath:文件下載到本地后的路徑
下載中
下載后
打開文件檢查一下
OK
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎
總結
以上是生活随笔為你收集整理的python3下载文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: HIVE入门之数据模型
- 下一篇: 如何找到微信语音文件的文件夹