schoolapp-api 2.1.0__tar.gz → 2.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {schoolapp_api-2.1.0/schoolapp_api.egg-info → schoolapp_api-2.1.1}/PKG-INFO +2 -2
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/README.md +1 -1
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/pyproject.toml +1 -1
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1/schoolapp_api.egg-info}/PKG-INFO +2 -2
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/LICENSE +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/__init__.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/auth.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/constants.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/http_client.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/managers/__init__.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/managers/attendance_manager.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/managers/base_manager.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/managers/course_manager.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/managers/grades_manager.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/managers/profile_manager.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/parsers/__init__.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/parsers/absences.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/parsers/annees.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/parsers/filieres.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/parsers/modules.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/parsers/note_elem.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/parsers/note_mod.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/parsers/profile.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/parsers/sanctions.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/parsers/semestres.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/parsers/stats.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/school_app_client.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/types/__init__.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/types/annee.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/types/base.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/types/element.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/types/module.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api/types/semestre.py +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api.egg-info/SOURCES.txt +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api.egg-info/dependency_links.txt +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api.egg-info/requires.txt +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/schoolapp_api.egg-info/top_level.txt +0 -0
- {schoolapp_api-2.1.0 → schoolapp_api-2.1.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: schoolapp-api
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.1
|
|
4
4
|
Summary: Professional client for interacting with the School App API
|
|
5
5
|
Author: Aferiad Kamal
|
|
6
6
|
License: MIT
|
|
@@ -40,7 +40,7 @@ if client.login("your.email@example.com", "password"):
|
|
|
40
40
|
|
|
41
41
|
# Get your basic info
|
|
42
42
|
profile = client.get_profile()
|
|
43
|
-
print(f"Hello, {profile
|
|
43
|
+
print(f"Hello, {profile['basic_info']['full_name']}!")
|
|
44
44
|
|
|
45
45
|
# Fetch your current semester grades
|
|
46
46
|
grades = client.get_current_elem_note()
|
|
@@ -28,7 +28,7 @@ if client.login("your.email@example.com", "password"):
|
|
|
28
28
|
|
|
29
29
|
# Get your basic info
|
|
30
30
|
profile = client.get_profile()
|
|
31
|
-
print(f"Hello, {profile
|
|
31
|
+
print(f"Hello, {profile['basic_info']['full_name']}!")
|
|
32
32
|
|
|
33
33
|
# Fetch your current semester grades
|
|
34
34
|
grades = client.get_current_elem_note()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: schoolapp-api
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.1
|
|
4
4
|
Summary: Professional client for interacting with the School App API
|
|
5
5
|
Author: Aferiad Kamal
|
|
6
6
|
License: MIT
|
|
@@ -40,7 +40,7 @@ if client.login("your.email@example.com", "password"):
|
|
|
40
40
|
|
|
41
41
|
# Get your basic info
|
|
42
42
|
profile = client.get_profile()
|
|
43
|
-
print(f"Hello, {profile
|
|
43
|
+
print(f"Hello, {profile['basic_info']['full_name']}!")
|
|
44
44
|
|
|
45
45
|
# Fetch your current semester grades
|
|
46
46
|
grades = client.get_current_elem_note()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|