├── Database ├── ALL-IN-ONE-FILE.sql ├── zomato_clone_menus.sql ├── zomato_clone_orderdetails.sql ├── zomato_clone_orders.sql ├── zomato_clone_restaurants.sql └── zomato_clone_users.sql ├── Database_Schema_and_Data ├── ER Diagram.jpg ├── zomato ER diagram.pbix └── zomatosqlexcelsheet.xlsx ├── GUI ├── Main_window.py ├── __pycache__ │ ├── Main_window.cpython-311.pyc │ └── Main_window.cpython-312.pyc ├── main.py └── user_authentication_zomato.py ├── Images └── zomato.jpg └── README.md /Database/ALL-IN-ONE-FILE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/Database/ALL-IN-ONE-FILE.sql -------------------------------------------------------------------------------- /Database/zomato_clone_menus.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/Database/zomato_clone_menus.sql -------------------------------------------------------------------------------- /Database/zomato_clone_orderdetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/Database/zomato_clone_orderdetails.sql -------------------------------------------------------------------------------- /Database/zomato_clone_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/Database/zomato_clone_orders.sql -------------------------------------------------------------------------------- /Database/zomato_clone_restaurants.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/Database/zomato_clone_restaurants.sql -------------------------------------------------------------------------------- /Database/zomato_clone_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/Database/zomato_clone_users.sql -------------------------------------------------------------------------------- /Database_Schema_and_Data/ER Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/Database_Schema_and_Data/ER Diagram.jpg -------------------------------------------------------------------------------- /Database_Schema_and_Data/zomato ER diagram.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/Database_Schema_and_Data/zomato ER diagram.pbix -------------------------------------------------------------------------------- /Database_Schema_and_Data/zomatosqlexcelsheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/Database_Schema_and_Data/zomatosqlexcelsheet.xlsx -------------------------------------------------------------------------------- /GUI/Main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/GUI/Main_window.py -------------------------------------------------------------------------------- /GUI/__pycache__/Main_window.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/GUI/__pycache__/Main_window.cpython-311.pyc -------------------------------------------------------------------------------- /GUI/__pycache__/Main_window.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/GUI/__pycache__/Main_window.cpython-312.pyc -------------------------------------------------------------------------------- /GUI/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/GUI/main.py -------------------------------------------------------------------------------- /GUI/user_authentication_zomato.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/GUI/user_authentication_zomato.py -------------------------------------------------------------------------------- /Images/zomato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/Images/zomato.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tejeswar001/Zomato-Clone-with-Python-Tkinter-and-MySQL/HEAD/README.md --------------------------------------------------------------------------------