Metadata-Version: 2.1
Name: quick_sqlite
Version: 1.0
Summary: This library can you help you use sqlite3 much easier and faster.
Home-page: https://github.com/SparkDrago05/quick_sqlite
Author: Spark Drago
Author-email: huzaifa.farooq05@gmail.com
License: MIT
Download-URL: https://github.com/SparkDrago05/quick_sqlite/archive/refs/tags/v1.0.tar.gz
Keywords: sqlite,sqlite3,quick
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# quick_sqlite

It is a fast package that will ease you to work with sqlite3.

## Installation

```
pip install quick_sqlite
```

## Usage

```
from quick_sqlite import QuickSqlite
sqle = QuickSqlite('example')
sqle.create_table('employes', 'name, email')
```


