sqlight

A lightweight wrapper around SQLite, MySQL, PostgreSQL.


Keywords
sqlite, sqlite3, mysql, postgresql, postgre, lightweight, wrapper
License
MIT-feh
Install
pip install sqlight==2.0.1

Documentation

SQLight

A lightweight wrapper around SQLite, MySQL, PostgreSQL.

Install

pip3 install sqlight

Usgae

import sqlight

conn = sqlight.Connection("sqlite:///:memory:?isolation_level=DEFERRED")
conn.connect()
result = conn.get("select * from test where id = ?", 1)

For more examples, please read to tests