├── .idea ├── .gitignore ├── Taxi Booking System.iml ├── dataSources.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── other.xml └── vcs.xml ├── Images ├── Tablet login-rafiki.png ├── Taxi.png ├── back.png ├── book-content-regular-24.png ├── book-regular-48.png ├── car-regular-24.png ├── car-regular-48.png ├── check-square-regular-24.png ├── cleaning.png ├── dollar-regular-48.png ├── edit-alt-regular-24.png ├── edit.png ├── export-regular-24.png ├── hancieSignature.jpg ├── hyy.png ├── id-card-regular-24.png ├── key-solid-24.png ├── left.png ├── log-out-circle-regular-24.png ├── login.png ├── logo.ico ├── logo.jpg ├── logo.png ├── logo2.jpg ├── money-withdraw-regular-24.png ├── paypal-logo-24.png ├── right.png ├── search-alt-2-regular-24.png ├── small_logo.png ├── time-five-regular-24.png ├── trip-advisor-logo-24.png ├── user-account-solid-24.png ├── user-detail-solid-48.png ├── user-regular-24.png ├── user-solid-120.png ├── user-solid-72.png ├── user-x-regular-24.png └── vector.png ├── admin ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── active_booking.cpython-311.pyc │ ├── admin_dashboard.cpython-311.pyc │ └── booking_report.cpython-311.pyc ├── active_booking.py ├── admin_dashboard.py └── booking_report.py ├── billing ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── admin_billing_history.cpython-311.pyc │ ├── admin_payment.cpython-311.pyc │ ├── billing_report.cpython-311.pyc │ └── customer_billing_history.cpython-311.pyc ├── admin_billing_history.py ├── admin_payment.py ├── billing_report.py └── customer_billing_history.py ├── customer ├── Change_Password.py ├── Customer_Register.py ├── __pycache__ │ ├── Change_Password.cpython-311.pyc │ ├── Customer_Register.cpython-311.pyc │ ├── Login.cpython-311.pyc │ ├── customer_booking_history.cpython-311.pyc │ ├── customer_dashboard.cpython-311.pyc │ ├── customer_management.cpython-311.pyc │ ├── customer_report.cpython-311.pyc │ ├── customerprofile.cpython-311.pyc │ ├── search_customers.cpython-311.pyc │ ├── updatecustomerprofile.cpython-311.pyc │ └── viewprofilegui.cpython-311.pyc ├── customer_booking_history.py ├── customer_dashboard.py ├── customer_management.py ├── customer_report.py ├── customerprofile.py ├── images │ ├── __init__.py │ └── user.png ├── login.py ├── search_customers.py ├── updatecustomerprofile.py └── viewprofilegui.py ├── dbms ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── billing_backend.cpython-311.pyc │ ├── booking_backend.cpython-311.pyc │ ├── connection.cpython-311.pyc │ ├── customer_backend.cpython-311.pyc │ ├── customer_management.cpython-311.pyc │ ├── driver_backend.cpython-311.pyc │ ├── driver_history_backend.cpython-311.pyc │ ├── driver_management.cpython-311.pyc │ ├── employees_backend.cpython-311.pyc │ ├── login_management.cpython-311.pyc │ ├── myactivity_backend.cpython-311.pyc │ ├── passwordchange_backend.cpython-311.pyc │ └── regex.cpython-311.pyc ├── billing_backend.py ├── booking_backend.py ├── connection.py ├── customer_backend.py ├── customer_management.py ├── driver_backend.py ├── driver_history_backend.py ├── driver_management.py ├── employees_backend.py ├── login_management.py ├── myactivity_backend.py ├── passwordchange_backend.py └── regex.py ├── driver ├── DriverDashboard.py ├── __init__.py ├── __pycache__ │ ├── DriverDashboard.cpython-311.pyc │ ├── __init__.cpython-311.pyc │ ├── driver_registration.cpython-311.pyc │ ├── driver_report.cpython-311.pyc │ ├── driverhistory.cpython-311.pyc │ ├── driverprofile.cpython-311.pyc │ ├── drivertriphistory.cpython-311.pyc │ └── search_drivers.cpython-311.pyc ├── driver_registration.py ├── driver_report.py ├── driverhistory.py ├── driverprofile.py ├── drivertriphistory.py ├── left.png ├── right.png └── search_drivers.py ├── employees ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── employees_management.cpython-311.pyc │ └── search_employees.cpython-311.pyc ├── employees_management.py └── search_employees.py ├── libs ├── Global.py ├── __init__.py ├── __pycache__ │ ├── Global.cpython-311.pyc │ ├── __init__.cpython-311.pyc │ ├── billing_libs.cpython-311.pyc │ ├── booking_libs.cpython-311.pyc │ ├── customer_libs.cpython-311.pyc │ ├── driver_libs.cpython-311.pyc │ ├── employees_libs.cpython-311.pyc │ └── myactivity_libs.cpython-311.pyc ├── admin_libs.py ├── billing_libs.py ├── booking_libs.py ├── customer_libs.py ├── driver_libs.py ├── employees_libs.py └── myactivity_libs.py └── main.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Taxi Booking System.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/.idea/Taxi Booking System.iml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Images/Tablet login-rafiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/Tablet login-rafiki.png -------------------------------------------------------------------------------- /Images/Taxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/Taxi.png -------------------------------------------------------------------------------- /Images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/back.png -------------------------------------------------------------------------------- /Images/book-content-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/book-content-regular-24.png -------------------------------------------------------------------------------- /Images/book-regular-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/book-regular-48.png -------------------------------------------------------------------------------- /Images/car-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/car-regular-24.png -------------------------------------------------------------------------------- /Images/car-regular-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/car-regular-48.png -------------------------------------------------------------------------------- /Images/check-square-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/check-square-regular-24.png -------------------------------------------------------------------------------- /Images/cleaning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/cleaning.png -------------------------------------------------------------------------------- /Images/dollar-regular-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/dollar-regular-48.png -------------------------------------------------------------------------------- /Images/edit-alt-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/edit-alt-regular-24.png -------------------------------------------------------------------------------- /Images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/edit.png -------------------------------------------------------------------------------- /Images/export-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/export-regular-24.png -------------------------------------------------------------------------------- /Images/hancieSignature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/hancieSignature.jpg -------------------------------------------------------------------------------- /Images/hyy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/hyy.png -------------------------------------------------------------------------------- /Images/id-card-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/id-card-regular-24.png -------------------------------------------------------------------------------- /Images/key-solid-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/key-solid-24.png -------------------------------------------------------------------------------- /Images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/left.png -------------------------------------------------------------------------------- /Images/log-out-circle-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/log-out-circle-regular-24.png -------------------------------------------------------------------------------- /Images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/login.png -------------------------------------------------------------------------------- /Images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/logo.ico -------------------------------------------------------------------------------- /Images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/logo.jpg -------------------------------------------------------------------------------- /Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/logo.png -------------------------------------------------------------------------------- /Images/logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/logo2.jpg -------------------------------------------------------------------------------- /Images/money-withdraw-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/money-withdraw-regular-24.png -------------------------------------------------------------------------------- /Images/paypal-logo-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/paypal-logo-24.png -------------------------------------------------------------------------------- /Images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/right.png -------------------------------------------------------------------------------- /Images/search-alt-2-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/search-alt-2-regular-24.png -------------------------------------------------------------------------------- /Images/small_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/small_logo.png -------------------------------------------------------------------------------- /Images/time-five-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/time-five-regular-24.png -------------------------------------------------------------------------------- /Images/trip-advisor-logo-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/trip-advisor-logo-24.png -------------------------------------------------------------------------------- /Images/user-account-solid-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/user-account-solid-24.png -------------------------------------------------------------------------------- /Images/user-detail-solid-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/user-detail-solid-48.png -------------------------------------------------------------------------------- /Images/user-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/user-regular-24.png -------------------------------------------------------------------------------- /Images/user-solid-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/user-solid-120.png -------------------------------------------------------------------------------- /Images/user-solid-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/user-solid-72.png -------------------------------------------------------------------------------- /Images/user-x-regular-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/user-x-regular-24.png -------------------------------------------------------------------------------- /Images/vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/Images/vector.png -------------------------------------------------------------------------------- /admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/admin/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /admin/__pycache__/active_booking.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/admin/__pycache__/active_booking.cpython-311.pyc -------------------------------------------------------------------------------- /admin/__pycache__/admin_dashboard.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/admin/__pycache__/admin_dashboard.cpython-311.pyc -------------------------------------------------------------------------------- /admin/__pycache__/booking_report.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/admin/__pycache__/booking_report.cpython-311.pyc -------------------------------------------------------------------------------- /admin/active_booking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/admin/active_booking.py -------------------------------------------------------------------------------- /admin/admin_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/admin/admin_dashboard.py -------------------------------------------------------------------------------- /admin/booking_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/admin/booking_report.py -------------------------------------------------------------------------------- /billing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /billing/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/billing/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /billing/__pycache__/admin_billing_history.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/billing/__pycache__/admin_billing_history.cpython-311.pyc -------------------------------------------------------------------------------- /billing/__pycache__/admin_payment.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/billing/__pycache__/admin_payment.cpython-311.pyc -------------------------------------------------------------------------------- /billing/__pycache__/billing_report.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/billing/__pycache__/billing_report.cpython-311.pyc -------------------------------------------------------------------------------- /billing/__pycache__/customer_billing_history.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/billing/__pycache__/customer_billing_history.cpython-311.pyc -------------------------------------------------------------------------------- /billing/admin_billing_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/billing/admin_billing_history.py -------------------------------------------------------------------------------- /billing/admin_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/billing/admin_payment.py -------------------------------------------------------------------------------- /billing/billing_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/billing/billing_report.py -------------------------------------------------------------------------------- /billing/customer_billing_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/billing/customer_billing_history.py -------------------------------------------------------------------------------- /customer/Change_Password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/Change_Password.py -------------------------------------------------------------------------------- /customer/Customer_Register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/Customer_Register.py -------------------------------------------------------------------------------- /customer/__pycache__/Change_Password.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/__pycache__/Change_Password.cpython-311.pyc -------------------------------------------------------------------------------- /customer/__pycache__/Customer_Register.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/__pycache__/Customer_Register.cpython-311.pyc -------------------------------------------------------------------------------- /customer/__pycache__/Login.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/__pycache__/Login.cpython-311.pyc -------------------------------------------------------------------------------- /customer/__pycache__/customer_booking_history.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/__pycache__/customer_booking_history.cpython-311.pyc -------------------------------------------------------------------------------- /customer/__pycache__/customer_dashboard.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/__pycache__/customer_dashboard.cpython-311.pyc -------------------------------------------------------------------------------- /customer/__pycache__/customer_management.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/__pycache__/customer_management.cpython-311.pyc -------------------------------------------------------------------------------- /customer/__pycache__/customer_report.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/__pycache__/customer_report.cpython-311.pyc -------------------------------------------------------------------------------- /customer/__pycache__/customerprofile.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/__pycache__/customerprofile.cpython-311.pyc -------------------------------------------------------------------------------- /customer/__pycache__/search_customers.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/__pycache__/search_customers.cpython-311.pyc -------------------------------------------------------------------------------- /customer/__pycache__/updatecustomerprofile.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/__pycache__/updatecustomerprofile.cpython-311.pyc -------------------------------------------------------------------------------- /customer/__pycache__/viewprofilegui.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/__pycache__/viewprofilegui.cpython-311.pyc -------------------------------------------------------------------------------- /customer/customer_booking_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/customer_booking_history.py -------------------------------------------------------------------------------- /customer/customer_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/customer_dashboard.py -------------------------------------------------------------------------------- /customer/customer_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/customer_management.py -------------------------------------------------------------------------------- /customer/customer_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/customer_report.py -------------------------------------------------------------------------------- /customer/customerprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/customerprofile.py -------------------------------------------------------------------------------- /customer/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /customer/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/images/user.png -------------------------------------------------------------------------------- /customer/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/login.py -------------------------------------------------------------------------------- /customer/search_customers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/search_customers.py -------------------------------------------------------------------------------- /customer/updatecustomerprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/updatecustomerprofile.py -------------------------------------------------------------------------------- /customer/viewprofilegui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/customer/viewprofilegui.py -------------------------------------------------------------------------------- /dbms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbms/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/billing_backend.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/billing_backend.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/booking_backend.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/booking_backend.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/connection.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/connection.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/customer_backend.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/customer_backend.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/customer_management.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/customer_management.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/driver_backend.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/driver_backend.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/driver_history_backend.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/driver_history_backend.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/driver_management.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/driver_management.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/employees_backend.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/employees_backend.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/login_management.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/login_management.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/myactivity_backend.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/myactivity_backend.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/passwordchange_backend.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/passwordchange_backend.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/__pycache__/regex.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/__pycache__/regex.cpython-311.pyc -------------------------------------------------------------------------------- /dbms/billing_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/billing_backend.py -------------------------------------------------------------------------------- /dbms/booking_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/booking_backend.py -------------------------------------------------------------------------------- /dbms/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/connection.py -------------------------------------------------------------------------------- /dbms/customer_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/customer_backend.py -------------------------------------------------------------------------------- /dbms/customer_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/customer_management.py -------------------------------------------------------------------------------- /dbms/driver_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/driver_backend.py -------------------------------------------------------------------------------- /dbms/driver_history_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/driver_history_backend.py -------------------------------------------------------------------------------- /dbms/driver_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/driver_management.py -------------------------------------------------------------------------------- /dbms/employees_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/employees_backend.py -------------------------------------------------------------------------------- /dbms/login_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/login_management.py -------------------------------------------------------------------------------- /dbms/myactivity_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/myactivity_backend.py -------------------------------------------------------------------------------- /dbms/passwordchange_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/passwordchange_backend.py -------------------------------------------------------------------------------- /dbms/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/dbms/regex.py -------------------------------------------------------------------------------- /driver/DriverDashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/DriverDashboard.py -------------------------------------------------------------------------------- /driver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /driver/__pycache__/DriverDashboard.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/__pycache__/DriverDashboard.cpython-311.pyc -------------------------------------------------------------------------------- /driver/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /driver/__pycache__/driver_registration.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/__pycache__/driver_registration.cpython-311.pyc -------------------------------------------------------------------------------- /driver/__pycache__/driver_report.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/__pycache__/driver_report.cpython-311.pyc -------------------------------------------------------------------------------- /driver/__pycache__/driverhistory.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/__pycache__/driverhistory.cpython-311.pyc -------------------------------------------------------------------------------- /driver/__pycache__/driverprofile.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/__pycache__/driverprofile.cpython-311.pyc -------------------------------------------------------------------------------- /driver/__pycache__/drivertriphistory.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/__pycache__/drivertriphistory.cpython-311.pyc -------------------------------------------------------------------------------- /driver/__pycache__/search_drivers.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/__pycache__/search_drivers.cpython-311.pyc -------------------------------------------------------------------------------- /driver/driver_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/driver_registration.py -------------------------------------------------------------------------------- /driver/driver_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/driver_report.py -------------------------------------------------------------------------------- /driver/driverhistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/driverhistory.py -------------------------------------------------------------------------------- /driver/driverprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/driverprofile.py -------------------------------------------------------------------------------- /driver/drivertriphistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/drivertriphistory.py -------------------------------------------------------------------------------- /driver/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/left.png -------------------------------------------------------------------------------- /driver/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/right.png -------------------------------------------------------------------------------- /driver/search_drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/driver/search_drivers.py -------------------------------------------------------------------------------- /employees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /employees/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/employees/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /employees/__pycache__/employees_management.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/employees/__pycache__/employees_management.cpython-311.pyc -------------------------------------------------------------------------------- /employees/__pycache__/search_employees.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/employees/__pycache__/search_employees.cpython-311.pyc -------------------------------------------------------------------------------- /employees/employees_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/employees/employees_management.py -------------------------------------------------------------------------------- /employees/search_employees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/employees/search_employees.py -------------------------------------------------------------------------------- /libs/Global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/Global.py -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/__pycache__/Global.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/__pycache__/Global.cpython-311.pyc -------------------------------------------------------------------------------- /libs/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /libs/__pycache__/billing_libs.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/__pycache__/billing_libs.cpython-311.pyc -------------------------------------------------------------------------------- /libs/__pycache__/booking_libs.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/__pycache__/booking_libs.cpython-311.pyc -------------------------------------------------------------------------------- /libs/__pycache__/customer_libs.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/__pycache__/customer_libs.cpython-311.pyc -------------------------------------------------------------------------------- /libs/__pycache__/driver_libs.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/__pycache__/driver_libs.cpython-311.pyc -------------------------------------------------------------------------------- /libs/__pycache__/employees_libs.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/__pycache__/employees_libs.cpython-311.pyc -------------------------------------------------------------------------------- /libs/__pycache__/myactivity_libs.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/__pycache__/myactivity_libs.cpython-311.pyc -------------------------------------------------------------------------------- /libs/admin_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/admin_libs.py -------------------------------------------------------------------------------- /libs/billing_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/billing_libs.py -------------------------------------------------------------------------------- /libs/booking_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/booking_libs.py -------------------------------------------------------------------------------- /libs/customer_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/customer_libs.py -------------------------------------------------------------------------------- /libs/driver_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/driver_libs.py -------------------------------------------------------------------------------- /libs/employees_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/employees_libs.py -------------------------------------------------------------------------------- /libs/myactivity_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/libs/myactivity_libs.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hancie123/Taxi-Booking-System/HEAD/main.py --------------------------------------------------------------------------------