Maintain sqlite3 databases easily and without MYSQL syntax
Project description
lite3
It helps to create an sqlite3 database easily and maintainable without MYSQL syntax with just using simple familar python functions with the same names as sqlite3 python builtin module.
Installation
'''pip install lite3'''
Documentation
'''https://lite3.herokuapp.com/'''
Usage
'''python import lite3
db = lite3.lite('customers.db', 'connect', 'cursor')
table = 'Common' cols = ['name', 'gender']
db.execute(table, cols)
creates a database with a Table name common with two columns
'''
Change Log
0.0.1 (11/02/2021)
- First Release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lite3-0.0.1.tar.gz
(3.5 kB
view hashes)
Built Distribution
lite3-0.0.1-py3-none-any.whl
(3.6 kB
view hashes)