Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 924 Bytes

File metadata and controls

34 lines (23 loc) · 924 Bytes

Car Management App (Python + SQL + Tkinter)

A desktop CRUD application for storing and managing car records using a SQL database and a Tkinter UI.

Features

  • Create / Read / Update / Delete (CRUD) car records
  • View saved records from the database
  • Simple Tkinter interface
  • Persistent storage with SQL

Tech Stack

  • Python
  • Tkinter
  • SQL (SQLite/MySQL depending on the project setup)

How to Run

  1. Make sure Python is installed.
  2. Download/clone this repository.
  3. (Optional) If you have a requirements file, install dependencies:
    pip install -r requirements.txt
    

Run the main Python file (example):

python main.py

If the entry file has a different name, run that file instead.

Notes

If the project uses SQLite, a .db file may be included or created automatically on first run.

If it uses another database (MySQL, etc.), you may need to update the connection settings in the code.