Skip to main content

sql-smith is an SQL query builder with zero dependencies and a fluent interface.

Project description

sql-smith is an SQL query builder with zero dependencies and a fluent interface.

The sentence above is, beside the name, a copy from the website of the PHP library Latitude, for the simple reason that this Python module is a port of Latitude.

Read the full documentation.

Installation

$ pip install sql-smith

Quick Start

QueryFactory is a factory to create a SELECT, INSERT, UPDATE or DELETE query. Use the fluent interface of the queries to complete the query.

from sql_smith import QueryFactory
from sql_smith.engine import CommonEngine
from sql_smith.functions import field

factory = QueryFactory(CommonEngine())
query = factory \
    .select('id', 'username') \
    .from_('users') \
    .where(field('id').eq(5)) \
    .compile()

print(query.sql)  # SELECT "id", "username" FROM "users" WHERE "id" = ?
print(query.params)  # (5)

When the query is ready, compile it. The return value of compile is a Query class instance with two properties: sql and params. Use these properties to pass the query to a database.

import sqlite3

db = sqlite3.connect('test.db')
cur = db.cursor()

for row in cur.execute(query.sql, query.params):
    print(row)

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

sql_smith-1.1.2.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sql_smith-1.1.2-py3-none-any.whl (30.1 kB view details)

Uploaded Python 3

File details

Details for the file sql_smith-1.1.2.tar.gz.

File metadata

  • Download URL: sql_smith-1.1.2.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.5

File hashes

Hashes for sql_smith-1.1.2.tar.gz
Algorithm Hash digest
SHA256 82016ca6593cb8c522a79d42197c7f0b23694b73056293b358d59aaef61f41f1
MD5 bdb427bc742434c2617cf4e4d4a16aa1
BLAKE2b-256 78aa49039aea54a8c3677ff2f66228091d97c61a1c3e93bec92b74d3b80e6df1

See more details on using hashes here.

File details

Details for the file sql_smith-1.1.2-py3-none-any.whl.

File metadata

  • Download URL: sql_smith-1.1.2-py3-none-any.whl
  • Upload date:
  • Size: 30.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.5

File hashes

Hashes for sql_smith-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 77a395bf360ef104a5fb690b5d0733e3e899862f79d3e6b7abb811c435f7f3f5
MD5 f4a76bd0a29ab93976be9420317ec34f
BLAKE2b-256 12f2757e7ccc0bc374e78e1049b95301f90da5f7cf286c14a2b517950db3ee96

See more details on using hashes here.

Supported by

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