An open API service indexing awesome lists of open source software.

https://github.com/tim232/ezsqlite

Use SQLite3 without knowing SQL
https://github.com/tim232/ezsqlite

Last synced: about 1 year ago
JSON representation

Use SQLite3 without knowing SQL

Awesome Lists containing this project

README

          

# EZSQLITE

Use SQLite3 without knowing SQL

How to Install :
```shell
$ pip install ezsqlite
```

How to Use :
```python
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')
```