Basic Demo Tour and Travel Management System built with python and Microsoft SQL Server Management Studio
Note: You must have Microsoft SQL Server Management Studio installed
Open the 'ProjectTTMS.sql' file with ssms and execute the file. It will create the database, Create tables and insert data in it.
Clone this repo in your local machine using,
git clone https://github.com/IamMoosa/Travel-and-Tour-management-System.git
Run this command to install required modules,
pip install -r requirements.txt
#Change Server Name
In 'ProjectTTMS.py' file, replace with server name you are running on your local machine,
connection = pyodbc.connect('Driver={SQL Server};' 'Server=<Your-Server-Name-Here>;'
'Database=projectTTMS;' 'Trusted_connection=yes;')
Enter this command to run,
python ProjectTTMS.py