Python wrapper and APIs for the PESU Academy website.
The wrapper provides read-only access to all the pages and information accessible on the PESU Academy website.
Without authentication, the wrapper will only be able to fetch details from the Know Your Class and Section page.
⚠️ Warning: This is not an official API and is not endorsed by PES University. Use at your own risk.
pip install pesuacademygit clone https://github.com/HackerSpace-PESU/pesuacademy-py
cd pesuacademy-py
python setup.py installfrom pesuacademy import PESUAcademy
p = PESUAcademy("PRN_or_SRN", "password")
# p = PESUAcademy() # Without authentication: can only fetch details from the `Know Your Class and Section` page
profile = p.profile()
courses = p.courses(semester=2)
attendance = p.attendance()