The flight booking database contains the initials data of the users and bookings.
- Go to the directory and install the required packages
pip install -r requirements.txt
- Go to the directory and create "sample.db" using schema commands in a file
sqlite3 flight.db < db.schema
- Open the database file with the sqlite command line utility
sqlite3 flight.db
- 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
- Run the application
python main.py