摘要: 本主题需要JS权限,没有的请先申请权限 进入管理后台 设置 当前页面所涉及的配置有: 博客皮肤 页面定制CSS代码 禁用模板默认CSS 博客侧边栏公告 页脚Html代码 1.后台-选项中打开公告 获取需要使用的版本 github:https://github.com/BNDong/Cnblogs-T 阅读全文
posted @ 2021-07-26 17:15 G0mini 阅读(974) 评论(0) 推荐(1) 编辑
摘要: 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; 阅读全文
posted @ 2021-07-26 15:31 G0mini 阅读(103) 评论(0) 推荐(0) 编辑
摘要: import os def all_files_path(rootDir): for root, dirs, files in os.walk(rootDir): # 分别代表根目录、文件夹、文件 for file in files: # 遍历文件 file_path = os.path.join( 阅读全文
posted @ 2021-07-26 15:11 G0mini 阅读(982) 评论(0) 推荐(0) 编辑