主頁 > 知識庫 > python Requsets下載開源網(wǎng)站的代碼(帶索引 數(shù)據(jù))

python Requsets下載開源網(wǎng)站的代碼(帶索引 數(shù)據(jù))

熱門標(biāo)簽:打印谷歌地圖標(biāo)注 京華圖書館地圖標(biāo)注 佛山通用400電話申請 看懂地圖標(biāo)注方法 廣東旅游地圖標(biāo)注 淮安呼叫中心外呼系統(tǒng)如何 電話外呼系統(tǒng)招商代理 電話機器人貸款詐騙 蘇州人工外呼系統(tǒng)軟件

環(huán)境搭建

python 3.x
requests 包
re 包
gooey包 (用于可視化)

代碼

import requests
import re
import os
from gooey import Gooey, GooeyParser
import time

s = requests.Session()

def judgeTypeOfPath(name):
    '''
    判斷該路徑是文件還是文件夾
      :param name: 路徑名稱
      :return:True->文件;False->文件夾
    '''
    if name[-1] == '/':
        return False
    else:
        return True


def makeDirOfPath(path):
    '''
    創(chuàng)建文件夾
    :param path: 文件夾名稱以及路徑
    :return: True->創(chuàng)建成功;False->創(chuàng)建失敗
    '''
    if not os.path.isdir(path):
        os.mkdir(path)
    if not os.path.isdir(path):
        return False
    return True

def getPath(url):
    '''
    獲取網(wǎng)頁路徑列表
    :param url: 當(dāng)前網(wǎng)頁路徑
    :return: 路徑列表
    '''
    baseResponse = s.get(url=url, stream=True,verify=False).text
    listOfDirOrFilesTemp = re.findall(r'li>a href=".*?" rel="external nofollow" >', baseResponse)
    listOfDirOrFiles = []
    for i in range(len(listOfDirOrFilesTemp)):
        listOfDirOrFiles.append(listOfDirOrFilesTemp[i].split("\"")[1])
    return listOfDirOrFiles[1:len(listOfDirOrFiles) + 1]

def rfSearch(listOfPath,url, nowPath):
    '''
    遞歸尋找目錄、路徑,并下載文件
    :param listOfPath: 當(dāng)前目錄下文件以及文件夾目錄列表
    :param nowPath: 現(xiàn)在所在路徑
    :return:
    '''
    newList = listOfPath[:]
    if not newList:
        return
    for i in range(len(newList)):
        if not judgeTypeOfPath(newList[i]):
            u = nowPath + newList[i][0:len(newList[i])]
            makeDirOfPath(u)
            tempPath=nowPath + newList[i][0:len(newList[i])+1]
            tempUrl=url+newList[i][0:len(newList[i])+1]
            u=getPath(tempUrl)
            rfSearch(u,tempUrl,tempPath)
        else:
            print(f'開始下載{newList[i]}...')
            t1=time.time()
            u = nowPath + newList[i]
            m=url+newList[i]
            if not os.path.exists(u):
                r = s.get(m, stream=True,verify=False)
                f = open(u, "wb")
                for chunk in r.iter_content(chunk_size=10240):
                    if chunk:
                        f.write(chunk)
                f.close()
            t2=time.time()
            print(f'{newList[i]}下載完成\t\t用時  {t2-t1}')

@Gooey(
    program_name='isric數(shù)據(jù)下載器',
    encoding="utf-8", )
def main():
    parser = GooeyParser(description="isric數(shù)據(jù)下載器")
    parser.add_argument('--url',default=r'https://files.isric.org/soilgrids/latest/data/')
    parser.add_argument('--path', widget="DirChooser", default=r'F:/isricData/')
    args = parser.parse_args()
    url=args.url
    nowPath = args.path
    u = getPath(url)
    rfSearch(u, url,nowPath)
###如果不需要可視化,則不用gooey,可以將上面部分替換如下
#@Gooey(
#    program_name='isric數(shù)據(jù)下載器',
#   encoding="utf-8", )
#上面三行刪除即可
###main函數(shù)替換成下面部分:
# def main():
#     url=r'https://files.isric.org/soilgrids/latest/data/'#在此處修改地址鏈接
#     nowPath = r'F:/isricData/'#在此處修改文件保存地址
#     u = getPath(url)
#     rfSearch(u, url,nowPath)

if __name__ == "__main__":
    main()

到此這篇關(guān)于python Requsets下載開源網(wǎng)站的代碼(帶索引 數(shù)據(jù))的文章就介紹到這了,更多相關(guān)python Requsets下載內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • Python實現(xiàn)壁紙下載與輪換
  • Python 下載Bing壁紙的示例
  • python實現(xiàn)壁紙批量下載代碼實例
  • 編寫Python腳本批量下載DesktopNexus壁紙的教程
  • python批量下載壁紙的實現(xiàn)代碼
  • 用Python自動下載網(wǎng)站所有文件
  • python 制作網(wǎng)站小說下載器
  • python批量下載網(wǎng)站馬拉松照片的完整步驟
  • python抓取網(wǎng)站的圖片并下載到本地的方法
  • Python 批量下載陰陽師網(wǎng)站壁紙

標(biāo)簽:衡水 駐馬店 湖州 江蘇 畢節(jié) 呼和浩特 中山 股票

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python Requsets下載開源網(wǎng)站的代碼(帶索引 數(shù)據(jù))》,本文關(guān)鍵詞  python,Requsets,下載,開源,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python Requsets下載開源網(wǎng)站的代碼(帶索引 數(shù)據(jù))》相關(guān)的同類信息!
  • 本頁收集關(guān)于python Requsets下載開源網(wǎng)站的代碼(帶索引 數(shù)據(jù))的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章