zoukankan      html  css  js  c++  java
  • 通过urllib.request爬取CSDN原创博客标题方法封装

    通过urllib.request爬取CSDN博客原创博客标题方法封装

    • 正则表达式:pat = '<span class=".*">原创</span>(.*)</a>'
    import re
    import urllib.request
    
    
    def get_csdn(url, pat, page):
        title_list = []
        for page1 in range(1, int(page) + 1):
            new_url = url + str(page1)
            result = urllib.request.urlopen(new_url).read().decode("utf-8")
            string = re.compile(pat).findall(result)
            for title in string:
                j = title_list.append(title.strip()) # str.strip()去空格
        return title_list
    
    
    if __name__ == '__main__':
        url = "https://blog.csdn.net/weixin_42760923/article/list/"
        pat = '<span class=".*">原创</span>(.*)</a>'
        page = 5
        print(get_csdn(url, pat, page))
        print(len(get_csdn(url, pat, page)))

    返回结果:

  • 相关阅读:
    git
    fragment
    Builder模式
    代码混淆
    android studio快捷键
    小知识点
    angular组件使用
    英语摘要2019-6-4
    英语笔记2019-4-3
    搭建Eureka注册中心时遇到的问题
  • 原文地址:https://www.cnblogs.com/CesareZhang/p/12141797.html
Copyright © 2011-2022 走看看