Metadata-Version: 2.1
Name: quick-sqlite
Version: 1.2.2
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.2.2.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
### Simple and Protected Database
```
from quick_sqlite import QuickSqlite
database_path = './data/example'
key = b'7vEREn9p76PwgOYxBY-ManCwy_XuYGFxKY0XtMBTF_E='
simple_database = QuickSqlite(database_path)
protected_database = QuickSqlite(database_path, True, key)
```

### Example
```
from quick_sqlite import QuickSqlite
qsql = QuickSqlite('example')
qsql.create_table('employes', 'name, email')
qsql.insert_table('employes', 'name, email', ['John', 'John@gmail.com'])
table = qsql.select_table('employes')
print(table)
```

