Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ewen-lbh/parcoursup-dataviz
Récupère et génère des graphiques de vos vœux en liste d'attente automatiquement
https://github.com/ewen-lbh/parcoursup-dataviz
data-visualization parcoursup
Last synced: about 1 month ago
JSON representation
Récupère et génère des graphiques de vos vœux en liste d'attente automatiquement
- Host: GitHub
- URL: https://github.com/ewen-lbh/parcoursup-dataviz
- Owner: ewen-lbh
- License: mit
- Created: 2020-05-20T12:13:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-17T23:43:47.000Z (about 2 years ago)
- Last Synced: 2024-04-23T02:33:04.748Z (9 months ago)
- Topics: data-visualization, parcoursup
- Language: Python
- Homepage:
- Size: 274 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# parcoursup-dataviz
![Hits](https://hitcounter.pythonanywhere.com/count/tag.svg?url=https%3A%2F%2Fgithub.com%2Fewen-lbh%2Fparcoursup-dataviz)
## Installation
parcoursup-dataviz is now available on PyPI:
```sh-session
pip install parcoursup-dataviz
```## Usage
NOTE: Wish names have been cut out from the demo images, you'll of course see them. Images are also slightly red-tinted here because I took screenshots and my computer has transparent windows, the images themselves has a perfectly white background.
Execute `parcoursup-dataviz --help` to get help on all the options available.
### Get graphs
The scripts takes the same CLI arguments as `scraper.py`
```sh-session
parcoursup-dataviz --out my-wishes.png
```Example for one wish:
![One graph plotting waitlist position & length over time for a wish](./demo-graph.png)
### Get a table (WIP)
```
parcoursup-dataviz --table --out my-table.html
```NOTE: For now "internship" wishes show only N/A values
You can also get a table which looks like this:
![Table showing numbers for three wishes](./demo-table.png)
### Just get the JSON
```sh-session
parcoursup-dataviz --json
``````json
{
"YYYY-MM-DD": [
{
"id": "identifiant dans le DOM (pas très utile)",
"name": "Nom de la formation",
"ranks": {
"group_capacity": "Capacité du groupe",
"rank": "Position dans la file d'attente",
"waitlist_length": "Taille de la file d'attente",
"calllist_rank": "Position dans la liste d'appel",
"max_admitted_rank": "Position la plus loin dans la liste d'appel à avoir été acceptée cette année",
"last_year_max_admitted_rank": "Position la plus loin dans la liste d'appel à avoir été acceptée en 2019",
},
"internat": {
"capacity" : "Capacité de l'internat",
"group_waitlist_rank" : "Position dans la file d'attente du groupe",
"rank" : "Position dans la file d'attente",
"condition_group_waitlist_rank" : "Ont reçu une proposition tout ceux qui était positionnés avant où à cette position dans la file d'attente du groupe (ET voir condition_rank)",
"condition_rank" : "Ont reçu une proposition tout ceux qui était positionnés avant où à cette position dans la file d'attente (ET voir condition_group_waitlist_rank)",
}
}
]
}
```Here's where these values are extracted from the website:
![parcoursup interface for ranks with labels showing the corresponding JSON keys](ranks-properties-explanation.png)
![parcoursup interface for boarding school ranks with labels showing the corresponding JSON keys](internat-properties-explanation.png)