Flight Booking

The flight booking database contains the initials data of the users and bookings.

Install Instruction 📦

Getting Start

  1. Go to the directory and install the required packages
pip install -r requirements.txt
  1. Go to the directory and create "sample.db" using schema commands in a file
sqlite3 flight.db < db.schema
  1. Open the database file with the sqlite command line utility
sqlite3 flight.db
  1. Import the data from csv to the database file
sqlite> .mode csv
sqlite> .import data/users.csv users
sqlite> .import data/flight_bookings.csv flight_bookings
  1. Run the application
python main.py

Web Service API

UML Diagrams