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
- Host: GitHub
- URL: https://github.com/tim232/ezsqlite
- Owner: Tim232
- License: gpl-3.0
- Created: 2020-12-09T02:31:55.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-09T02:33:02.000Z (over 5 years ago)
- Last Synced: 2025-04-13T05:54:29.573Z (about 1 year ago)
- Language: Python
- Homepage: https://pypi.org/project/ezsqlite
- Size: 14.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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')
```