This is a simple Airport Management System built using plain Python. The project is designed to handle basic airport operations such as managing flights, terminals, gates, staff, passengers, and tickets. It is lightweight and uses SQLite3 as its database to store and manage data efficiently.
- Python 3.x
- Git
- Basic understanding of
SQlite3
To clone the repository, run the following command:
git clone https://github.com/Joel-Fah/airport-management-system.git
Navigate to the Project Directory
cd airport-management-system
It is recommended to use a virtual environment to manage dependencies. You can create and activate a virtual environment using the following commands:
-
Linux
python -m venv venv source venv/bin/activate
-
Windows
.\venv\Scripts\activate
Then, install the required dependencies:
pip install -r requirements.txt