Skip to content

CROUStillant-Developpement/CrousPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CROUStillant Logo

CROUStillant

CROUStillant est un projet qui a pour but de fournir les menus des restaurants universitaires en France et en Outre-Mer.

📖 • Sommaire

🚀 • Présentation

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.

⚙️ • Installation

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

💻 • Développement

Pour installer la librairie en mode de développement, exécutez les commandes suivantes :

  1. Cloner le dépôt
git clone https://github.com/CROUStillant-Developpement/CrousPy
  1. Créer un environnement virtuel et installer les dépendances
cd CrousPy
  1. Créer un environnement virtuel
python -m venv venv
  1. Activer l'environnement virtuel
source venv/bin/activate
  1. Installer les dépendances
pip install -r requirements.txt

📄 • Utilisation

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())

📃 • Crédits

📝 • License

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.