Fetches attendance details from PESUAcademy, provides real-time logs, and supports multiple SRN formats and mappings.
python -m venv .venv
source .venv/bin/activate # On Windows use `venv\Scripts\activate`
pip install --upgrade pip
pip install -r requirements.txt
python main.py
Update the mapping.json
file and open a PR
- Log in to PESUAcademy.
- Open the developer tools by right-clicking on the page and selecting
Inspect Element
(Hotkey:F12
orCTRL+SHIFT+I
). - Navigate to the
Network
tab and filter for all requests. - Go to the attendance page and select your semester.
- Look for a network request to
/studentProfilePESUAdmin
and click on it. - In the
Payload
orRequest
tab, locate the form data. -
- It should look like:
controllerMode=6407&actionType=8&batchClassId=2660&menuId=660
- It should look like:
-
- The
batchClassId
value2660
is what you need to for yourBATCH_CLASS_ID
key
- The
- Define your
SUBJECT_MAPPING
in key-value pairs based on your subjects.
Feel free to open issues and PRs for improvements and feature requests.