Metadata-Version: 2.1
Name: combinido_crud_app
Version: 0.3.0
Summary: A simple database CRUD application with SQLite and TKinter
Home-page: 
Author: Rico Combinido
Author-email: ricocombinido9@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: ttkbootstrap

# Simple Python CRUD System

A simple Python CRUD application using Tkinter and TKBootstrap for the GUI and SQLite for the database.

## Features

- Add, update, delete, and search users.
- Stores user data in an SQLite database.
- User interface created with Tkinter and styled using ttkbootstrap.
- Export user data to a CSV file.

## Requirements

- Python 3.6 or higher
- `ttkbootstrap` for modern GUI components
- SQLite (built-in with Python)
- `csv` for exporting user data

## Installation

To install this package, you can use `pip`. Run the following command:


```bash

pip install combinido-crud-app

```
## Running the CRUD Application

- In a new Python file, import `combinido-crud-app`
- Run the application using the `run()` function.
- e.g. "combinido-crud-app.run()"
