chore: keep single latest commit
This commit is contained in:
94
.gitignore
vendored
Normal file
94
.gitignore
vendored
Normal file
@@ -0,0 +1,94 @@
|
||||
########################################
|
||||
# Python Project #
|
||||
########################################
|
||||
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
share/python-wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
*.py,cover
|
||||
.hypothesis/
|
||||
.pytest_cache/
|
||||
pytestdebug.log
|
||||
|
||||
# Linting / type check caches
|
||||
.mypy_cache/
|
||||
.pyre/
|
||||
.pytype/
|
||||
.ruff_cache/
|
||||
|
||||
# Jupyter
|
||||
.ipynb_checkpoints/
|
||||
|
||||
# PEP 582
|
||||
__pypackages__/
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
.python-version
|
||||
|
||||
# Editor / IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
Desktop.ini
|
||||
|
||||
# Logs and temp
|
||||
*.log
|
||||
logs/
|
||||
*.tmp
|
||||
*.temp
|
||||
*.bak
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# PyBuilder
|
||||
target/
|
||||
107
README.md
Normal file
107
README.md
Normal file
@@ -0,0 +1,107 @@
|
||||
# 关于职教智慧云的签到研究
|
||||
|
||||
本项目记录对“职教智慧云” App 及其 Flutter 框架的研究,以及如何从日志中获取 Cookie、请求课程与打卡信息并完成打卡的基本实践。理论上可以直接跳过蓝牙设备验证进行远程打卡
|
||||
|
||||
- 目标:从日志中截取 `token`,获取课程与打卡信息,并执行打卡。
|
||||
- 平台:Android;命令示例包含 Windows PowerShell 与 Linux/macOS 两种形式。
|
||||
|
||||
## 1. 抓取 Cookie(token)
|
||||
|
||||
连接 Android 设备后,查看 Flutter 在 Dart 层输出的日志并筛选包含 `cookie` 的行。
|
||||
|
||||
Windows(PowerShell):
|
||||
在此之前您需要安装安卓调试工具(platform-tools)
|
||||
|
||||
```powershell
|
||||
adb shell
|
||||
logcat -s flutter | grep -i cookie
|
||||
```
|
||||
|
||||
Linux/macOS:
|
||||
|
||||
```bash
|
||||
adb logcat -s flutter | grep -i cookie
|
||||
```
|
||||
|
||||
从输出中截取形如 `token=XXXX` 的值,后续作为请求头中的 Cookie 使用。
|
||||
|
||||
## 2. 获取课程与打卡信息
|
||||
|
||||
接口地址:`https://m-zjt.kefang.net/api/zms/zhijiaotong/page/homePageData`
|
||||
|
||||
通用请求头(表单):
|
||||
|
||||
```http
|
||||
User-Agent: Dart/3.6 (dart:io)
|
||||
Accept-Encoding: gzip
|
||||
Content-Type: application/x-www-form-urlencoded
|
||||
Cookie: token=YOUR_TOKEN
|
||||
```
|
||||
|
||||
示例(PowerShell/curl):
|
||||
|
||||
```powershell
|
||||
curl --silent `
|
||||
-H "User-Agent: Dart/3.6 (dart:io)" `
|
||||
-H "Accept-Encoding: gzip" `
|
||||
-H "Content-Type: application/x-www-form-urlencoded" `
|
||||
-H "Cookie: token=YOUR_TOKEN" `
|
||||
"https://m-zjt.kefang.net/api/zms/zhijiaotong/page/homePageData"
|
||||
```
|
||||
|
||||
示例(Linux/macOS/curl):
|
||||
|
||||
```bash
|
||||
curl -s \
|
||||
-H "User-Agent: Dart/3.6 (dart:io)" \
|
||||
-H "Accept-Encoding: gzip" \
|
||||
-H "Content-Type: application/x-www-form-urlencoded" \
|
||||
-H "Cookie: token=YOUR_TOKEN" \
|
||||
"https://m-zjt.kefang.net/api/zms/zhijiaotong/page/homePageData"
|
||||
```
|
||||
|
||||
从响应中提取 `contentId` 以及后续需要的 `attendanceId` 等字段。
|
||||
|
||||
## 3. 提交打卡
|
||||
|
||||
接口地址:`https://m-zjt.kefang.net/api/zms/attendance/attendanceRecord/punchCourseByStudent`
|
||||
|
||||
方法:`PUT`;`Content-Type`:`application/x-www-form-urlencoded`
|
||||
|
||||
示例(PowerShell/curl):
|
||||
|
||||
```powershell
|
||||
curl -X PUT `
|
||||
-H "User-Agent: Dart/3.6 (dart:io)" `
|
||||
-H "Accept-Encoding: gzip" `
|
||||
-H "Content-Type: application/x-www-form-urlencoded" `
|
||||
-H "Cookie: token=YOUR_TOKEN" `
|
||||
-d "attendanceId=YOUR_ATTENDANCE_ID" `
|
||||
"https://m-zjt.kefang.net/api/zms/attendance/attendanceRecord/punchCourseByStudent"
|
||||
```
|
||||
|
||||
示例(Linux/macOS/curl):
|
||||
|
||||
```bash
|
||||
curl -X PUT \
|
||||
-H "User-Agent: Dart/3.6 (dart:io)" \
|
||||
-H "Accept-Encoding: gzip" \
|
||||
-H "Content-Type: application/x-www-form-urlencoded" \
|
||||
-H "Cookie: token=YOUR_TOKEN" \
|
||||
-d "attendanceId=YOUR_ATTENDANCE_ID" \
|
||||
"https://m-zjt.kefang.net/api/zms/attendance/attendanceRecord/punchCourseByStudent"
|
||||
```
|
||||
|
||||
返回结果若包含“操作成功”的 `message`,则表示打卡成功。
|
||||
|
||||
## 4. 常见问题
|
||||
|
||||
- `token` 过期:重新通过日志抓取;或在 App 内重新登录再抓取。
|
||||
- 403/401:检查 `Cookie` 是否正确;确认 `Content-Type` 是否为表单。
|
||||
- 字段变动:以实际接口响应为准,名称或层级可能更新。
|
||||
|
||||
## 5. 注意事项
|
||||
|
||||
- 仅用于学习与研究,请勿用于任何不当用途。
|
||||
- 请妥善保护个人隐私与账号安全。
|
||||
- 操作前请确保已安装 `adb` 并正确连接设备。
|
||||
74
get.py
Normal file
74
get.py
Normal file
@@ -0,0 +1,74 @@
|
||||
import requests
|
||||
from typing import Optional
|
||||
from sign import punch
|
||||
|
||||
# 在脚本顶端维护可用的 token 数组(按顺序尝试)
|
||||
TOKENS = [
|
||||
# 在此添加更多 token:"token2", "token3", ...
|
||||
]
|
||||
|
||||
HOME_URL = "https://m-zjt.kefang.net/api/zms/zhijiaotong/page/homePageData"
|
||||
|
||||
|
||||
def extract_content_id(payload: dict) -> Optional[str]:
|
||||
data = payload.get("data", {})
|
||||
# Prefer messages array for attendance
|
||||
|
||||
messages = data.get("messages")
|
||||
if isinstance(messages, list):
|
||||
for msg in messages:
|
||||
# look for 打卡 type
|
||||
if (msg.get("type") == "打卡") or ("打卡" in str(msg.get("tradeType", ""))):
|
||||
cid = msg.get("contentId")
|
||||
if cid:
|
||||
return str(cid)
|
||||
# fallback: single data.message presence indicates info, but no contentId
|
||||
return None
|
||||
|
||||
|
||||
def main():
|
||||
# 依次使用 TOKENS 尝试获取打卡 contentId 并发起打卡
|
||||
for token in TOKENS:
|
||||
headers = {
|
||||
"User-Agent": "Dart/3.6 (dart:io)",
|
||||
"Accept-Encoding": "gzip",
|
||||
"content-type": "application/x-www-form-urlencoded",
|
||||
"Cookie": f"token={token}",
|
||||
}
|
||||
|
||||
try:
|
||||
resp = requests.get(HOME_URL, headers=headers, verify=False)
|
||||
print(resp.text)
|
||||
except Exception as e:
|
||||
# 当前 token 请求失败,继续尝试下一个
|
||||
continue
|
||||
|
||||
try:
|
||||
payload = resp.json()
|
||||
except ValueError:
|
||||
# 非 JSON 或解析失败,继续尝试下一个 token
|
||||
continue
|
||||
|
||||
content_id = extract_content_id(payload)
|
||||
if not content_id:
|
||||
# 未获取到打卡消息,尝试下一个 token
|
||||
continue
|
||||
|
||||
# 找到 contentId,执行打卡
|
||||
try:
|
||||
punch_resp = punch(content_id, token)
|
||||
print(punch_resp.text)
|
||||
if punch_resp.status_code == 200:
|
||||
print("打卡成功!")
|
||||
return
|
||||
except Exception:
|
||||
# 打卡失败,尝试下一个 token
|
||||
continue
|
||||
|
||||
# 所有 token 尝试失败
|
||||
print("未获取到打卡信息")
|
||||
raise SystemExit(0)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
91
info.json
Normal file
91
info.json
Normal file
@@ -0,0 +1,91 @@
|
||||
{
|
||||
//homePageData返回数据
|
||||
"code": 0,
|
||||
"message": "操作成功",
|
||||
"data": {
|
||||
"schoolRollId": "1677491175234015234",
|
||||
"classRoomId": "1685504716637413377",
|
||||
"headerTeacherId": "1910166080264925186",
|
||||
"headerTeacher": "郑燕华",
|
||||
"headerTeacherAvatar": "https://static-legacy.dingtalk.com/media/lQDPM5iQKZKWzXHNAqXNAqawOsdp6-ZRPRwItB8xZUukAA_678_677.jpg",
|
||||
"studyPoint": 0.0,
|
||||
"studyPointRanking": 1,
|
||||
"studyAddPoint": null,
|
||||
"studySubtractPoint": null,
|
||||
"courseAttendanceCount": 0,
|
||||
"dormitoryAttendanceCount": 0,
|
||||
"leaveCount": 2,
|
||||
"leaveStatus": null,
|
||||
"courseTable": [
|
||||
{
|
||||
"classRoomId": "1685504716637413377",
|
||||
"startTime": 300000,
|
||||
"endTime": 2700000,
|
||||
"teachingPlan": "就业指导",
|
||||
"teacher": "鞠明明"
|
||||
},
|
||||
{
|
||||
"classRoomId": "1685504716637413377",
|
||||
"startTime": 3000000,
|
||||
"endTime": 5700000,
|
||||
"teachingPlan": "就业指导",
|
||||
"teacher": "鞠明明"
|
||||
},
|
||||
{
|
||||
"classRoomId": "1685504716637413377",
|
||||
"startTime": 6600000,
|
||||
"endTime": 9300000,
|
||||
"teachingPlan": "就业指导",
|
||||
"teacher": "鞠明明"
|
||||
},
|
||||
{
|
||||
"classRoomId": "1685504716637413377",
|
||||
"startTime": 9600000,
|
||||
"endTime": 12300000,
|
||||
"teachingPlan": "就业指导",
|
||||
"teacher": "鞠明明"
|
||||
},
|
||||
{
|
||||
"classRoomId": "1685504716637413377",
|
||||
"startTime": 20400000,
|
||||
"endTime": 23100000,
|
||||
"teachingPlan": "网站动效开发",
|
||||
"teacher": "汪杰"
|
||||
},
|
||||
{
|
||||
"classRoomId": "1685504716637413377",
|
||||
"startTime": 23700000,
|
||||
"endTime": 26400000,
|
||||
"teachingPlan": "网站动效开发",
|
||||
"teacher": "汪杰"
|
||||
},
|
||||
{
|
||||
"classRoomId": "1685504716637413377",
|
||||
"startTime": 27000000,
|
||||
"endTime": 29700000,
|
||||
"teachingPlan": "网站动效开发",
|
||||
"teacher": "汪杰"
|
||||
},
|
||||
{
|
||||
"classRoomId": "1685504716637413377",
|
||||
"startTime": 30300000,
|
||||
"endTime": 33000000,
|
||||
"teachingPlan": "网站动效开发",
|
||||
"teacher": "汪杰"
|
||||
}
|
||||
],
|
||||
"messages": [
|
||||
{
|
||||
"schoolRollId": "1677491175234015234",
|
||||
"type": "打卡",
|
||||
"tradeType": "到课打卡",
|
||||
"title": "到课打卡",
|
||||
"contentId": "2002893355401916417",
|
||||
"sendName": "郑燕华",
|
||||
"sendAvatar": "https://static-legacy.dingtalk.com/media/lQDPM5iQKZKWzXHNAqXNAqawOsdp6-ZRPRwItB8xZUukAA_678_677.jpg",
|
||||
"sendTime": 1766361962685,
|
||||
"extraInfo": "10001:23112"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
9
pyproject.toml
Normal file
9
pyproject.toml
Normal file
@@ -0,0 +1,9 @@
|
||||
[project]
|
||||
name = "sign"
|
||||
version = "0.1.0"
|
||||
description = "Add your description here"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.13"
|
||||
dependencies = [
|
||||
"requests>=2.32.5",
|
||||
]
|
||||
35
sign.py
Normal file
35
sign.py
Normal file
@@ -0,0 +1,35 @@
|
||||
import os
|
||||
import sys
|
||||
import requests
|
||||
|
||||
PUNCH_URL = "https://m-zjt.kefang.net/api/zms/attendance/attendanceRecord/punchCourseByStudent"
|
||||
|
||||
|
||||
def punch(attendance_id: str, token: str) -> requests.Response:
|
||||
payload = {
|
||||
"attendanceId": attendance_id
|
||||
}
|
||||
headers = {
|
||||
"User-Agent": "Dart/3.6 (dart:io)",
|
||||
"Accept-Encoding": "gzip",
|
||||
"Cookie": f"token={token}"
|
||||
}
|
||||
return requests.put(PUNCH_URL, data=payload, headers=headers, verify=False)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
# attendance_id from argv[1], else env ATTENDANCE_ID
|
||||
attendance_id = (sys.argv[1] if len(sys.argv) >
|
||||
1 else os.getenv("ATTENDANCE_ID"))
|
||||
token = os.getenv("TOKEN", "48db6cdf9a2c4f58a189436cb5429659")
|
||||
|
||||
if not attendance_id:
|
||||
print("缺少 attendanceId 内容,无法打卡")
|
||||
raise SystemExit(1)
|
||||
|
||||
try:
|
||||
resp = punch(attendance_id, token)
|
||||
print(resp.text)
|
||||
except Exception as e:
|
||||
print(f"打卡失败: {e}")
|
||||
raise SystemExit(1)
|
||||
97
uv.lock
generated
Normal file
97
uv.lock
generated
Normal file
@@ -0,0 +1,97 @@
|
||||
version = 1
|
||||
revision = 2
|
||||
requires-python = ">=3.13"
|
||||
|
||||
[[package]]
|
||||
name = "certifi"
|
||||
version = "2025.11.12"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/a2/8c/58f469717fa48465e4a50c014a0400602d3c437d7c0c468e17ada824da3a/certifi-2025.11.12.tar.gz", hash = "sha256:d8ab5478f2ecd78af242878415affce761ca6bc54a22a27e026d7c25357c3316", size = 160538, upload-time = "2025-11-12T02:54:51.517Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/70/7d/9bc192684cea499815ff478dfcdc13835ddf401365057044fb721ec6bddb/certifi-2025.11.12-py3-none-any.whl", hash = "sha256:97de8790030bbd5c2d96b7ec782fc2f7820ef8dba6db909ccf95449f2d062d4b", size = 159438, upload-time = "2025-11-12T02:54:49.735Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "charset-normalizer"
|
||||
version = "3.4.4"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/13/69/33ddede1939fdd074bce5434295f38fae7136463422fe4fd3e0e89b98062/charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a", size = 129418, upload-time = "2025-10-14T04:42:32.879Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794", size = 208091, upload-time = "2025-10-14T04:41:13.346Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7d/62/73a6d7450829655a35bb88a88fca7d736f9882a27eacdca2c6d505b57e2e/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b39f987ae8ccdf0d2642338faf2abb1862340facc796048b604ef14919e55ed", size = 147936, upload-time = "2025-10-14T04:41:14.461Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/89/c5/adb8c8b3d6625bef6d88b251bbb0d95f8205831b987631ab0c8bb5d937c2/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3162d5d8ce1bb98dd51af660f2121c55d0fa541b46dff7bb9b9f86ea1d87de72", size = 144180, upload-time = "2025-10-14T04:41:15.588Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/91/ed/9706e4070682d1cc219050b6048bfd293ccf67b3d4f5a4f39207453d4b99/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:81d5eb2a312700f4ecaa977a8235b634ce853200e828fbadf3a9c50bab278328", size = 161346, upload-time = "2025-10-14T04:41:16.738Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/d5/0d/031f0d95e4972901a2f6f09ef055751805ff541511dc1252ba3ca1f80cf5/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5bd2293095d766545ec1a8f612559f6b40abc0eb18bb2f5d1171872d34036ede", size = 158874, upload-time = "2025-10-14T04:41:17.923Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894", size = 153076, upload-time = "2025-10-14T04:41:19.106Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/75/1e/5ff781ddf5260e387d6419959ee89ef13878229732732ee73cdae01800f2/charset_normalizer-3.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc7637e2f80d8530ee4a78e878bce464f70087ce73cf7c1caf142416923b98f1", size = 150601, upload-time = "2025-10-14T04:41:20.245Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/d7/57/71be810965493d3510a6ca79b90c19e48696fb1ff964da319334b12677f0/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f8bf04158c6b607d747e93949aa60618b61312fe647a6369f88ce2ff16043490", size = 150376, upload-time = "2025-10-14T04:41:21.398Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/e5/d5/c3d057a78c181d007014feb7e9f2e65905a6c4ef182c0ddf0de2924edd65/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:554af85e960429cf30784dd47447d5125aaa3b99a6f0683589dbd27e2f45da44", size = 144825, upload-time = "2025-10-14T04:41:22.583Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/e6/8c/d0406294828d4976f275ffbe66f00266c4b3136b7506941d87c00cab5272/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:74018750915ee7ad843a774364e13a3db91682f26142baddf775342c3f5b1133", size = 162583, upload-time = "2025-10-14T04:41:23.754Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/d7/24/e2aa1f18c8f15c4c0e932d9287b8609dd30ad56dbe41d926bd846e22fb8d/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c0463276121fdee9c49b98908b3a89c39be45d86d1dbaa22957e38f6321d4ce3", size = 150366, upload-time = "2025-10-14T04:41:25.27Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/e4/5b/1e6160c7739aad1e2df054300cc618b06bf784a7a164b0f238360721ab86/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362d61fd13843997c1c446760ef36f240cf81d3ebf74ac62652aebaf7838561e", size = 160300, upload-time = "2025-10-14T04:41:26.725Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7a/10/f882167cd207fbdd743e55534d5d9620e095089d176d55cb22d5322f2afd/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a26f18905b8dd5d685d6d07b0cdf98a79f3c7a918906af7cc143ea2e164c8bc", size = 154465, upload-time = "2025-10-14T04:41:28.322Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/89/66/c7a9e1b7429be72123441bfdbaf2bc13faab3f90b933f664db506dea5915/charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac", size = 99404, upload-time = "2025-10-14T04:41:29.95Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14", size = 107092, upload-time = "2025-10-14T04:41:31.188Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/af/8f/3ed4bfa0c0c72a7ca17f0380cd9e4dd842b09f664e780c13cff1dcf2ef1b/charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2", size = 100408, upload-time = "2025-10-14T04:41:32.624Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/2a/35/7051599bd493e62411d6ede36fd5af83a38f37c4767b92884df7301db25d/charset_normalizer-3.4.4-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:da3326d9e65ef63a817ecbcc0df6e94463713b754fe293eaa03da99befb9a5bd", size = 207746, upload-time = "2025-10-14T04:41:33.773Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/10/9a/97c8d48ef10d6cd4fcead2415523221624bf58bcf68a802721a6bc807c8f/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8af65f14dc14a79b924524b1e7fffe304517b2bff5a58bf64f30b98bbc5079eb", size = 147889, upload-time = "2025-10-14T04:41:34.897Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/10/bf/979224a919a1b606c82bd2c5fa49b5c6d5727aa47b4312bb27b1734f53cd/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74664978bb272435107de04e36db5a9735e78232b85b77d45cfb38f758efd33e", size = 143641, upload-time = "2025-10-14T04:41:36.116Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/ba/33/0ad65587441fc730dc7bd90e9716b30b4702dc7b617e6ba4997dc8651495/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:752944c7ffbfdd10c074dc58ec2d5a8a4cd9493b314d367c14d24c17684ddd14", size = 160779, upload-time = "2025-10-14T04:41:37.229Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/67/ed/331d6b249259ee71ddea93f6f2f0a56cfebd46938bde6fcc6f7b9a3d0e09/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d1f13550535ad8cff21b8d757a3257963e951d96e20ec82ab44bc64aeb62a191", size = 159035, upload-time = "2025-10-14T04:41:38.368Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/67/ff/f6b948ca32e4f2a4576aa129d8bed61f2e0543bf9f5f2b7fc3758ed005c9/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ecaae4149d99b1c9e7b88bb03e3221956f68fd6d50be2ef061b2381b61d20838", size = 152542, upload-time = "2025-10-14T04:41:39.862Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/16/85/276033dcbcc369eb176594de22728541a925b2632f9716428c851b149e83/charset_normalizer-3.4.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cb6254dc36b47a990e59e1068afacdcd02958bdcce30bb50cc1700a8b9d624a6", size = 149524, upload-time = "2025-10-14T04:41:41.319Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/9e/f2/6a2a1f722b6aba37050e626530a46a68f74e63683947a8acff92569f979a/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c8ae8a0f02f57a6e61203a31428fa1d677cbe50c93622b4149d5c0f319c1d19e", size = 150395, upload-time = "2025-10-14T04:41:42.539Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/60/bb/2186cb2f2bbaea6338cad15ce23a67f9b0672929744381e28b0592676824/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:47cc91b2f4dd2833fddaedd2893006b0106129d4b94fdb6af1f4ce5a9965577c", size = 143680, upload-time = "2025-10-14T04:41:43.661Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/7d/a5/bf6f13b772fbb2a90360eb620d52ed8f796f3c5caee8398c3b2eb7b1c60d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:82004af6c302b5d3ab2cfc4cc5f29db16123b1a8417f2e25f9066f91d4411090", size = 162045, upload-time = "2025-10-14T04:41:44.821Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/df/c5/d1be898bf0dc3ef9030c3825e5d3b83f2c528d207d246cbabe245966808d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2b7d8f6c26245217bd2ad053761201e9f9680f8ce52f0fcd8d0755aeae5b2152", size = 149687, upload-time = "2025-10-14T04:41:46.442Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/a5/42/90c1f7b9341eef50c8a1cb3f098ac43b0508413f33affd762855f67a410e/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:799a7a5e4fb2d5898c60b640fd4981d6a25f1c11790935a44ce38c54e985f828", size = 160014, upload-time = "2025-10-14T04:41:47.631Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/76/be/4d3ee471e8145d12795ab655ece37baed0929462a86e72372fd25859047c/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:99ae2cffebb06e6c22bdc25801d7b30f503cc87dbd283479e7b606f70aff57ec", size = 154044, upload-time = "2025-10-14T04:41:48.81Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/b0/6f/8f7af07237c34a1defe7defc565a9bc1807762f672c0fde711a4b22bf9c0/charset_normalizer-3.4.4-cp314-cp314-win32.whl", hash = "sha256:f9d332f8c2a2fcbffe1378594431458ddbef721c1769d78e2cbc06280d8155f9", size = 99940, upload-time = "2025-10-14T04:41:49.946Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/4b/51/8ade005e5ca5b0d80fb4aff72a3775b325bdc3d27408c8113811a7cbe640/charset_normalizer-3.4.4-cp314-cp314-win_amd64.whl", hash = "sha256:8a6562c3700cce886c5be75ade4a5db4214fda19fede41d9792d100288d8f94c", size = 107104, upload-time = "2025-10-14T04:41:51.051Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/da/5f/6b8f83a55bb8278772c5ae54a577f3099025f9ade59d0136ac24a0df4bde/charset_normalizer-3.4.4-cp314-cp314-win_arm64.whl", hash = "sha256:de00632ca48df9daf77a2c65a484531649261ec9f25489917f09e455cb09ddb2", size = 100743, upload-time = "2025-10-14T04:41:52.122Z" },
|
||||
{ url = "https://files.pythonhosted.org/packages/0a/4c/925909008ed5a988ccbb72dcc897407e5d6d3bd72410d69e051fc0c14647/charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f", size = 53402, upload-time = "2025-10-14T04:42:31.76Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "3.11"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "requests"
|
||||
version = "2.32.5"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
dependencies = [
|
||||
{ name = "certifi" },
|
||||
{ name = "charset-normalizer" },
|
||||
{ name = "idna" },
|
||||
{ name = "urllib3" },
|
||||
]
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sign"
|
||||
version = "0.1.0"
|
||||
source = { virtual = "." }
|
||||
dependencies = [
|
||||
{ name = "requests" },
|
||||
]
|
||||
|
||||
[package.metadata]
|
||||
requires-dist = [{ name = "requests", specifier = ">=2.32.5" }]
|
||||
|
||||
[[package]]
|
||||
name = "urllib3"
|
||||
version = "2.6.2"
|
||||
source = { registry = "https://pypi.org/simple" }
|
||||
sdist = { url = "https://files.pythonhosted.org/packages/1e/24/a2a2ed9addd907787d7aa0355ba36a6cadf1768b934c652ea78acbd59dcd/urllib3-2.6.2.tar.gz", hash = "sha256:016f9c98bb7e98085cb2b4b17b87d2c702975664e4f060c6532e64d1c1a5e797", size = 432930, upload-time = "2025-12-11T15:56:40.252Z" }
|
||||
wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/6d/b9/4095b668ea3678bf6a0af005527f39de12fb026516fb3df17495a733b7f8/urllib3-2.6.2-py3-none-any.whl", hash = "sha256:ec21cddfe7724fc7cb4ba4bea7aa8e2ef36f607a4bab81aa6ce42a13dc3f03dd", size = 131182, upload-time = "2025-12-11T15:56:38.584Z" },
|
||||
]
|
||||
Reference in New Issue
Block a user