摘要:
本主题需要JS权限,没有的请先申请权限 进入管理后台 设置 当前页面所涉及的配置有: 博客皮肤 页面定制CSS代码 禁用模板默认CSS 博客侧边栏公告 页脚Html代码 1.后台-选项中打开公告 获取需要使用的版本 github:https://github.com/BNDong/Cnblogs-T 阅读全文
摘要:
import re import requests from bs4 import BeautifulSoup as bs import _thread import time headers={ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; 阅读全文
摘要:
import os def all_files_path(rootDir): for root, dirs, files in os.walk(rootDir): # 分别代表根目录、文件夹、文件 for file in files: # 遍历文件 file_path = os.path.join( 阅读全文