Professional client for interacting with the School App API
Project description
SchoolApp API
A Python library designed to make interacting with the SchoolApp platform a lot less painful. Instead of wrestling with session cookies and manual HTML scraping, this library gives you a clean, object-oriented way to access your grades, attendance, and profile data.
Why This Exists
Browsing the SchoolApp web interface manually for updates is slow. If you want to build a custom dashboard, a grade tracker, or a notification bot, you need a reliable way to get that data programmatically. This library takes care of:
- Authentication: Solid session management with automatic CSRF token handling.
- Data Cleanup: Converts messy HTML tables into structured Python objects.
- Smart Logic: Handles nested modules, element-level statistics, and transcript parsing out of the box.
Quick Start
Installation
You can install the library locally using:
pip install schoolapp-api
Basic Usage
Getting your data is as simple as this:
from schoolapp_api import SchoolAppClient
# Initialize and log in
client = SchoolAppClient()
if client.login("your.email@example.com", "password"):
# Get your basic info
profile = client.get_profile()
print(f"Hello, {profile.full_name}!")
# Fetch your current semester grades
grades = client.get_current_elem_note()
for item in grades:
print(f"{item.CodeElem}: {item.Moy}")
Project Layout
The library is organized into several specific managers, so you always know where to find what you need:
grades: Handle module marks, element notes, and academic year results.attendance: Track your absences and see any sanctions.profile: Access your personal data and administrative files.courses: Browse the study plan and available modules.
For the full details on every class and function, head over to the /docs folder.
Contributions
Found a bug or have an idea for a new feature? Feel free to open an issue or submit a pull request. Any help making this library better for everyone is appreciated!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file schoolapp_api-2.1.0.tar.gz.
File metadata
- Download URL: schoolapp_api-2.1.0.tar.gz
- Upload date:
- Size: 14.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb8b0a7c0dfcf1a44e03b689ecacc671bcb45e0547679973b1231fb58a1c53b9
|
|
| MD5 |
5e70d181530bb3c1e912112ea3a14e77
|
|
| BLAKE2b-256 |
5a4b69694552cfbbacbc3a633f130e509813f5a838460f0174d83a43e057c566
|
File details
Details for the file schoolapp_api-2.1.0-py3-none-any.whl.
File metadata
- Download URL: schoolapp_api-2.1.0-py3-none-any.whl
- Upload date:
- Size: 21.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f9ebf58ed4ff75c58ec9334f13a43c06a8d8e3fc04825eef694750c63c4f10d
|
|
| MD5 |
319ffcabe4a8027eaeaa598cb841c15d
|
|
| BLAKE2b-256 |
f4903de6d19474698179fd3e2548d09637b8c43f88087332b7d2ea5ba5ebfcc4
|