CROUStillant est un projet qui a pour but de fournir les menus des restaurants universitaires en France et en Outre-Mer.
Ce dépôt contient le code source d'une librairie interne de CROUStillant en Python qui permet d’interagir avec l'API du CROUS.
La librairie n'est pas encore disponible sur PyPi, il faut donc l'installer manuellement en exécutant la commande suivante :
pip install git+https://github.com/CROUStillant-Developpement/CrousPy
Pour installer la librairie en mode de développement, exécutez les commandes suivantes :
- Cloner le dépôt
git clone https://github.com/CROUStillant-Developpement/CrousPy
- Créer un environnement virtuel et installer les dépendances
cd CrousPy
- Créer un environnement virtuel
python -m venv venv
- Activer l'environnement virtuel
source venv/bin/activate
- Installer les dépendances
pip install -r requirements.txt
import asyncio
from CrousPy import Crous
from aiohttp import ClientSession
async def main():
"""
Exemple d'utilisation de la librairie CrousPy
"""
session = ClientSession()
client = Crous(session=session)
# Récupérer les régions
regions = await client.region.get()
print(regions)
# Récupérer les restaurants
restaurants = await client.ru.get(regionID=23)
print(restaurants)
# Récupérer les menus
menus = await client.menu.get(regionID=23, ruID=1)
print(menus)
await session.close()
if __name__ == "__main__":
asyncio.run(main())
- Paul Bayfield - Fondateur du projet et développeur principal
CROUStillant sous licence Apache 2.0.
Copyright 2024 CROUStillant Développement
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.