update README

1. update root README, pointer to all proj
2. create all README
Powered by claude code, maybe mistake, checked and commit manually.
This commit is contained in:
2025-09-12 14:58:58 +08:00
parent f539792fd1
commit b4c04343e8
27 changed files with 964 additions and 74 deletions

View File

@ -13,8 +13,8 @@ from Crypto.Util.Padding import pad
from base64 import b64encode
URL = "http://[your libseat url]"
UID = "[uid]" # 图书馆账号
PWD = "[password]" # 图书馆密码
# UID = "[uid]" # 图书馆账号
PWD = "000000" # 图书馆密码
USERNAME = "[username]" # 验证码平台用户名
PASSWORD = "[password]" # 验证码平台密码
TOKEN = "[token]"
@ -171,8 +171,8 @@ def main(dep=0):
print("正在尝试登录...")
tried =0
while token is None and tried <= 5:
id = UID
# id = str(random.choice(years)) + random.choice(house) + str(random.choice(classes)) + str(random.choice(num)).zfill(2)
# id = UID
id = str(random.choice(years)) + random.choice(house) + str(random.choice(classes)) + str(random.choice(num)).zfill(2)
token = login(id,PWD)
if token is None:
print("登陆失败:",token)