列表,并生成目录

Posted 程序媛一枚~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了列表,并生成目录相关的知识,希望对你有一定的参考价值。

使用Python爬取CSDN历史博客文章列表,并生成目录

这篇博客将介绍如何使用Python爬取CSDN历史博客文章列表,并生成目录。

2020年

2020年04月

2020年05月

2020年06月

2020年07月

2020年08月

2020年09月

2020年10月

2020年11月

2020年12月

2021年

2021年01月

2021年02月

2021年03月

2021年04月

2021年05月

2021年06月

2021年07月

2021年08月

2021年09月

2021年10月

2021年12月

2022年

2022年03月

2022年04月

2022年05月

2022年06月

2022年07月

2022年08月

2022年09月

2022年10月

2022年11月

2022年12月

2023年

2023年01月

2. 源码

# 使用Python爬取CSDN历史博客文章列表,并生成目录
# python pa_article.py

# 2022
## 202201
  # - aaa
  # - bbb
## 202202
  # -ccc
  # -ddd
# 2023
## 202301
  # -eee
  # -fff
import datetime
import json

import requests


def getCSDNTitleUrl(year, month, dict):
    now_time = datetime.datetime.now().strftime("%Y%m")
    if (year + month > now_time):
        return
    url = 'https://blog.csdn.net/community/home-api/v1/get-business-list?page=1&size=50&businessType=blog&orderby=&noMore=false&year=' + year + '&month=' + month + '&username=qq_40985985'
    headers = 
        'User-Agent':
            'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (Khtml, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0'
    
    response = requests.get(url, headers=headersAI:人脸识别

带有面部检测和形状预测的 Dlib 网络摄像头捕获速度很慢

检测设备是用针锁或面部锁的指纹锁保护的吗?

有没有办法知道正确的相机预览尺寸是不是与面部检测器兼容(产生检测到的面部)

在图像上标记面部和眼睛

OpenCV-Python实战(15)——面部特征点检测详解(仅需5行代码学会3种面部特征点检测方法)