Skip to main content

No project description provided

Project description

sqlfocus

Simple wrapper for sql

Example of usage (sqlite3)

import sqlite3

from sqlfocus import SQLTable

schema = (
    ("id", "INTEGER"),
    ("name", "TEXT")
)

conn = sqlite3.connect("test.db")
table = SQLTable("test", conn)


"CREATE TABLE IF NOT EXISTS test (id INTEGER, name TEXT);"
table.create(exists=True, schema=schema)


'SELECT * FROM test WHERE id = 23455 AND name = "None"'
table.select()
table.select(where=["id = 23455", 'name = "None"'])


'INSERT INTO test VALUES (23455, "None")'
table.insert(23455, "None")

conn.commit()

Project details


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.1.3.tar.gz (2.4 kB view details)

Uploaded Source

File details

Details for the file sqlfocus-0.1.3.tar.gz.

File metadata

  • Download URL: sqlfocus-0.1.3.tar.gz
  • Upload date:
  • Size: 2.4 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

Hashes for sqlfocus-0.1.3.tar.gz
Algorithm Hash digest
SHA256 e892c4aff9f1d046f1b2e38b1090184b7853e12bc61b93262e5f2e364f3724f6
MD5 0a2162bc0b92a1f8cbc59439b53a33fe
BLAKE2b-256 d26e4056dba03b55976429ed87a6a255f4cc62d6431b091c5b0539b9de87a1ce

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page