A wrapper for the pronote "API"
Project description
[!WARNING] Maintenance mode
Pronotepy is currently in maintenance mode. We will continue to fix bugs and adapt to PRONOTE changes, but will not be adding new features. Please do NOT create PRs with new features. They will not get merged.
If you are looking for an alternative that is under active developement, consider using Pawnote (JavaScript/TS) instead.
pronotepy
An API wrapper for PRONOTE
Explore the docs »
Introduction
Pronotepy is a Python API wrapper for the PRONOTE student administration service. It mainly focuses on student accounts but has limited support for teacher accounts as well. This project does not use the official HYPERPLANNING API provided by PRONOTE, which is inaccessible to students.
About
Dependencies
- pycryptodome
- beautifulsoup4
- requests
- autoslot
Installation
Stable
Install directly from pypi using pip: pip install -U pronotepy
[!NOTE] If you are on Windows and have trouble with this command, use
py -3 -m pip install pronotepy
. You must have Python 3 installed on your machine.
Latest
You can install the latest version by installing directly from the repository:
pip install -U git+https://github.com/bain3/pronotepy
We cannot assure that the latest version will be working, but it might have features or bugfixes that are not yet released on pypi.
Testing the package
To self test pronotepy run this command:
python -m pronotepy.test_pronotepy
Please keep in mind that this uses the demo version of pronote and so it can't test every function.
Usage
[!WARNING] The usage part of this readme is for the latest version. If you are installing from pypi, please see the documentation linked at the beginning.
Here is an example script (homework shown in example.py):
import pronotepy
import datetime
from pathlib import Path
import json
# load login from `python3 -m pronotepy.create_login` command.
# See quickstart in documentation for other login methods.
credentials = json.loads(Path("credentials.json").read_text())
client = pronotepy.Client.token_login(**credentials)
if client.logged_in: # check if client successfully logged in
# save new credentials - IMPORTANT
credentials = client.export_credentials()
Path("credentials.json").write_text(json.dumps(credentials))
nom_utilisateur = client.info.name # get users name
print(f'Logged in as {nom_utilisateur}')
# get the all the periods (may return multiple types like trimesters and
# semesters but it doesn't really matter the api will get it anyway)
periods = client.periods
for period in periods:
for grade in period.grades: # iterate over all the grades
print(f'{grade.grade}/{grade.out_of}') # print out the grade in this style: 20/20
For any extra details, please see the documentation linked above.
Contributing
Feel free to contribute anything. Any help is appreciated. To contribute, please create a pull request with your changes.
Setting up the development environment is just cloning the repository and making sure you have all the dependencies by
running pip with the requirements.txt
file. Please also install mypy
and black
for type checking and formatting respectively.
You can find out how mypy is ran in github actions by looking at its configuration file.
If you have any questions about ENTs and their authentification function, please contact Bapt5
Please run these tools before you submit your PR. Thanks!
Adding content
Pronotepy has most of the essential features covered, but if you need anything that is not yet implemented, you can create an issue with your request. (or you can contribute by adding it yourself)
Funding
This repository is on issuehunt. You can put bounties on your issues if you'd like to thank the person who completes it. There is no project account for recieving tips, but you're welcome to tip contributors directly.
License
This project uses the MIT license. (see LICENSE file)
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file pronotepy-2.14.1.tar.gz
.
File metadata
- Download URL: pronotepy-2.14.1.tar.gz
- Upload date:
- Size: 44.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4204c31fd542689d2598d69163f8071a49e57a581b61a10fcef88d5f7c6019bc |
|
MD5 | e51535143617a003d218ec21fea3607e |
|
BLAKE2b-256 | 591cdb47db39f0780f05c7993f7f1e4d91f420cc951a2cbd02a99e1e97a06743 |
File details
Details for the file pronotepy-2.14.1-py3-none-any.whl
.
File metadata
- Download URL: pronotepy-2.14.1-py3-none-any.whl
- Upload date:
- Size: 46.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a259066e684bcf5e06bce20f77752832ef7a88b0f19a33cee540de710809546c |
|
MD5 | cad5a9ba52d61c298af646cf7b8f22da |
|
BLAKE2b-256 | 3f24d6edc1368be4710983b3f7bb0cda0b024d06c249bc17fb8c01adf2c8e439 |