Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.06 KB

README.md

File metadata and controls

45 lines (31 loc) · 1.06 KB

Airport Management System

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.

How to Clone and Launch

Prerequisites

  • Python 3.x
  • Git
  • Basic understanding of SQlite3

Clone the Repository

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

Install Dependencies

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