A module changing string to seconds.
Project description
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')
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.