This project aims to recreate the IUT planning website with a modern interface, featuring the ability to add homework, evaluations, and grades for each course. The app will be built using HTML, CSS, and JavaScript for the front-end and Python for the back-end, including a web scraping script to fetch the timetable.
- Modern user interface for viewing the schedule.
- Ability to add homework, evaluations, and grades to courses.
- Web scraping script to fetch the timetable from the existing IUT website.
- Backend API using Python for data management.
- Frontend: HTML, CSS, JavaScript
- Backend: Flask
- Web Scraping: Python
- Storage:
- IndexedDB (client-side) : save preferences of a user.
- Flask-SQLAlchemy (MySQL, server-side) : save the planning week for a class.
To run this project locally, follow these steps:
-
Clone the repository:
git clone https://github.com/seyyko/Plancton.git cd Plancton -
Create a virtual environment:
-
linux:
python3 -m venv venv source venv/bin/activate (linux) -
windows:
python -m venv venv .\venv\Scripts\Activate.ps1 (windows)
-
-
Install the required dependencies:
pip install -r requirements.txt
You might need to do this to install Playwright's web browser:
playwright install-
Run the backend server:
python src/back_end/app.py
-
Open the front-end in your browser:
- The application will be available on all addresses (0.0.0.0:80)
- in particular on:
- http://127.0.0.1:80
- and your ip address.
This project is open-source and available under the MIT License. See the LICENSE file for more information.