【爬蟲工具】下載博客轉成Markdown的形式

簡單的爬蟲工具

下載博客,並轉成Markdown的形式

爲何要寫這個工具

主要是爲了收集好的網上資源,每次看到一篇好的文章就像保存下來,可是保存網頁的可讀性太差了,若是轉換成Markdown的形式就很舒服。可是網頁中會有許多無聊的標籤干擾,因而寫個簡單的工具

使用的python庫

  • beautifulsoup4
  • requests
  • html2text

目錄

  • csdn.py csdn博客爬蟲
  • jianshu.py 簡書博客爬蟲
  • juejin.py 掘金文章爬蟲
  • segmentfault.py segmentfault文章爬蟲

使用方法舉例

import html2md

url_list = [
        'http://blog.csdn.net/qq_37482544/article/details/63720726', # csdn
        'https://www.jianshu.com/p/b6220e99df2d', # jianshu
        'https://juejin.im/post/5a68437b6fb9a01ca47aabc6', # juejin
        'https://segmentfault.com/a/1190000011929414', # segmentfault
        'http://www.voidcn.com/article/p-giqfrkhb-bbr.html', # 其餘
        'https://www.cnblogs.com/zxqstrong/p/4789105.html'
    ]
for url in url_list:
    checkSite(url)

項目地址

https://github.com/No-96/Feng...html

相關文章
相關標籤/搜索