-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathllms.txt
More file actions
38 lines (32 loc) · 1.52 KB
/
llms.txt
File metadata and controls
38 lines (32 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# zzupy
zzupy is a Python library for Zhengzhou University mobile-app and web services.
## Public modules
- `zzupy.app`: synchronous mobile-app clients
- `zzupy.web`: synchronous web clients
- `zzupy.aio`: asynchronous counterparts of `zzupy.app` and `zzupy.web`
- `zzupy.model`: shared data models and response contracts
- `zzupy.exception`: project-specific exception types
## Main capabilities
- CAS authentication for Zhengzhou University services
- Campus card / ecard access and utility payment flows
- Undergraduate EAS schedule and semester queries
- Campus network portal authentication and self-service operations
## Important conventions
- Sync and async clients are intended to mirror behavior.
- Public data contracts are centralized in `zzupy.model`.
- Shared helpers live in `zzupy.utils`.
- Preserve upstream request headers, params, cookies, and login flows when changing client behavior.
- Reuse existing exception types instead of raising generic exceptions for domain failures.
## Recommended entry points
- `README.md`
- `docs/index.md`
- `docs/usage/app/auth.md`
- `docs/usage/app/ecard.md`
- `docs/usage/app/eas/undergrad.md`
- `docs/usage/web/network.md`
- `docs/reference/api.md`
## Notes for agents
- Prefer public client modules over internal implementation details.
- When changing `zzupy.app` or `zzupy.web`, check whether the same change is also needed in `zzupy.aio`.
- Keep model validation and normalization close to `zzupy.model` when possible.
- If public APIs or user workflows change, update the relevant docs.