No project description provided
Project description
sqlfocus
Simple wrapper for sql
Example of usage (sqlite3)
import sqlite3
from sqlfocus import SQLTable
conn = sqlite3.connect("test.db")
table = SQLTable("test", conn)
"CREATE TABLE IF NOT EXISTS test (id INTEGER, name TEXT);"
table.create(exists=True, schema=(
("id", "INTEGER"),
("name", "TEXT")
))
'SELECT * FROM test WHERE id = 23455 AND name = "None"'
table.select()
table.select(where=[table.id == 23455,
table.name == "None"])
'INSERT INTO test VALUES (23455, "None")'
table.insert(23455, "None")
conn.commit()
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 Distribution
sqlfocus-0.3.2.tar.gz
(3.3 kB
view details)
File details
Details for the file sqlfocus-0.3.2.tar.gz
.
File metadata
- Download URL: sqlfocus-0.3.2.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcaa20c03f17131498db3a978089d9ae204f176a3b17c0970978aae5ed5da1f4 |
|
MD5 | 9b179bf9d35fdb59cf09c1fb699768ad |
|
BLAKE2b-256 | 0999ec6bff5363a0a969570f26da9fb36afd09cebaa06a880584a7bab352ed14 |