chore: 批量新增各类工具脚本与配置文件

1. 新增音频录制、下载、上传相关脚本
2. 新增数据库操作、API调用工具
3. 新增Excel数据处理脚本
4. 新增弱密码检测脚本
This commit is contained in:
2026-06-14 17:47:15 +08:00
parent aac9f5934d
commit 2d8c1ea8f9
46 changed files with 11644 additions and 829 deletions
+15
View File
@@ -0,0 +1,15 @@
# %%
import os
os.add_dll_directory(os.getcwd())
from pctoken import get_token
from requests import get,post
# %%
BASE_URL = 'http://net2.hxzhxy.cn:5092'
USERNAME = 'xiatianle'
PASSWORD = 'Xia123456'
TOKEN = get_token(BASE_URL, USERNAME, PASSWORD)["access_token"]
# %%
print(TOKEN)