ezsqlite

A module changing string to seconds.


Keywords
sqlite3, sqlite, sql
License
GPL-3.0
Install
pip install ezsqlite==2.0.0

Documentation

EZSQLITE

Use SQLite3 without knowing SQL

How to Install :

$ pip install ezsqlite

How to Use :

from ezsqlite import Database
db = Database('File.db', 'users')

users = db.slctall()
user = db.select(id = 'test')
db.update({'id': 'test'}, {'id': 'example'})
db.insert('text', 'ex', 'ample')
db.delete(id = 'test')