中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python爬蟲 批量下載zabbix文檔代碼實例

發布時間:2020-10-24 09:09:54 來源:腳本之家 閱讀:153 作者:NAVYSUMMER 欄目:開發技術

這篇文章主要介紹了python爬蟲 批量下載zabbix文檔代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

# -*- coding: UTF-8 -*-
import requests,re,time
url = 'https://www.zabbix.com/documentation/3.4/zh/manual'
base_url = 'https://www.zabbix.com/documentation/3.4/'
seconds = 1
err_url = []
def get_urls():
  res = requests.get(url)
  content = res.text
  pattern = re.compile(r"indexmenu_4848130395ca30b274d8bd.add[(]'(zh/manual.*?)[']", re.S)
  routes = pattern.findall(content)
  urls = [base_url+item for item in routes]
  return urls 
def download(url):
  download_url = url + "?do=export_pdf"
  print("當前下載url:")
  print(download_url)
  res = requests.get(url)
  if res.status_code == 200 :
    pattern = re.compile(r"<title>(.*?)</title>", re.S)
    title = pattern.findall(res.text)[0].encode("utf-8")
    try:
      filename = title.replace('\\','-').replace('/','-').replace('"','-').replace('*','-').replace('?','-').replace(':','-').replace('<','-').replace('>','-').replace('|','-')
    except Exception:
       title = pattern.findall(res.text)[0]
    filename = title.replace('\\','-').replace('/','-').replace('"','-').replace('*','-').replace('?','-').replace(':','-').replace('<','-').replace('>','-').replace('|','-')
    file = filename + '.pdf'
    res = requests.get(download_url)
    if res.status_code == 200 :
      with open(file,"wb") as f:
        f.write(res.content)
      print('下載成功')
    else:
      print('下載失敗')
      err_url.append(download_url)
  else:
    print('獲取文件名失敗,停止當前下載')
    err_url.append(download_url) 
def downloads(urls):
  for url in urls:
    download(url)
    time.sleep( seconds )
  if len(err_url) :
    print("下載失敗的URL:")
    print(err_url) 
def main():
  print("下載開始")
  urls = get_urls()
  downloads(urls)
  print("下載完成") 
if __name__ == '__main__':
  main()

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安仁县| 屏边| 海门市| 漠河县| 杭锦后旗| 南澳县| 社旗县| 淳安县| 台安县| 安塞县| 灵宝市| 馆陶县| 枣阳市| 高阳县| 五指山市| 淮滨县| 曲麻莱县| 舞阳县| 宣恩县| 昌宁县| 中西区| 新巴尔虎右旗| 威信县| 蓬溪县| 南郑县| 侯马市| 五常市| 玉田县| 江阴市| 日照市| 浑源县| 务川| 理塘县| 马山县| 新沂市| 汪清县| 大荔县| 奉新县| 法库县| 巴东县| 嘉义县|