polyglot-sql (Python)
Rust-powered SQL transpiler for more than 30 SQL dialects.
The polyglot-sql Python package exposes an API backed by the Rust polyglot-sql engine for fast parse/transpile/generate/format/validate workflows.
Installation
pip install polyglot-sql
Quick Start
import polyglot_sql
polyglot_sql.transpile(
"SELECT IFNULL(a, b) FROM t",
read="mysql",
write="postgres",
)
# ["SELECT COALESCE(a, b) FROM t"]
ast = polyglot_sql.parse_one("SELECT 1 + 2", dialect="postgres")
polyglot_sql.generate(ast, dialect="mysql")
data_type = polyglot_sql.parse_data_type("DECIMAL(10, 2)", dialect="duckdb")
data_type.sql("postgres")
# "DECIMAL(10, 2)"
# SQLGlot-compatible narrow form for data types only:
polyglot_sql.parse_one("VARCHAR(255)", dialect="duckdb", into=polyglot_sql.DataType)
polyglot_sql.format_sql("SELECT a,b FROM t WHERE x=1", dialect="postgres")
SQLGlot-Compatible Builders
The common SQLGlot builder surface is available directly from
polyglot_sql. Builders return normal Polyglot expression objects and are
immutable: each chained call returns a new expression.
query = (
polyglot_sql.select("customer_id", "COUNT(*) AS orders")
.from_("orders")
.where("status = 'complete'")
.group_by("customer_id")
.order_by("orders DESC")
.limit(10)
)
query.sql("postgres")
# "SELECT customer_id, COUNT(*) AS orders FROM orders WHERE status = 'complete' GROUP BY customer_id ORDER BY orders DESC LIMIT 10"
active = polyglot_sql.column("status").eq("active")
active.sql()
# "status = 'active'"
The shared builder feature set also includes named aggregate/string/math/date
helpers, all join and set-operation variants, named windows, lateral views,
hints, row locks, CTAS, CASE, INSERT, UPDATE, DELETE, and conditional
MERGE actions. Repeated clauses append by default; pass append=False to
replace one. Advanced parser options, mutable copy=False behavior, and the
complete SQLGlot expression catalog are not included. Polyglot expressions
remain the native AST type; SQLGlot is not a runtime dependency.
ast = polyglot_sql.parse_one("SELECT id FROM a UNION ALL SELECT id FROM b")
order_expr = polyglot_sql.parse_one("SELECT id").args["expressions"][0]
ast = polyglot_sql.set_limit(ast, 100)
ast = polyglot_sql.set_offset(ast, 10)
ast = polyglot_sql.set_order_by(ast, order_expr)
polyglot_sql.generate(ast)
# ["SELECT id FROM a UNION ALL SELECT id FROM b ORDER BY id LIMIT 100 OFFSET 10"]
Complexity Guard Options
parse, parse_one (including into=DataType), parse_data_type, validate,
validate_with_schema, analyze_query, and transpile accept the keyword-only
complexity_guard, a ComplexityGuardOptions typed dictionary
using the shared camelCase keys: maxParserDepth, maxInputBytes, maxTokens,
maxAstNodes, maxAstDepth, maxParenthesisDepth, and maxFunctionCallDepth.
Omit the argument, pass None, or omit a key to use its default. A field-level None
disables that check; a nonnegative integer overrides it. For example:
polyglot_sql.transpile(sql, complexity_guard={"maxParserDepth": 128})
polyglot_sql.validate(sql, dialect="snowflake", complexity_guard={"maxFunctionCallDepth": 128})
polyglot_sql.parse_one(sql, dialect="snowflake", complexity_guard={"maxFunctionCallDepth": None})
analyze_query also accepts options={"complexityGuard": {...}}; do not supply
both forms in one call. Limits must be nonnegative integers or None; booleans,
floats, out-of-range integers, and unknown guard keys are rejected.
Omitting the entire guard preserves dialect-specific defaults (including
ClickHouse's higher function-nesting limit). A supplied dictionary uses the
shared Rust defaults for omitted fields. Validation reports guard exhaustion
as diagnostics; parsing and analysis raise ParseError.
Parser depth defaults to 1024 logical levels on native targets (32 on WASM) and is checked during parsing, before an AST exists. Zero rejects parsing descents. Other checks remain independent. Raising or disabling limits can permit stack exhaustion and process termination, even for trusted generated SQL. Increasing a limit does not increase stack space; these limits are not general time/memory budgets. Application owners should control overrides. Other SQL-consuming helpers, including lineage and optimization, continue to inherit default protection.
Format Guard Behavior
format_sql uses Rust core formatting guards with default limits:
- input bytes:
16 * 1024 * 1024 - tokens:
1_000_000 - AST nodes:
1_000_000 - set-op chain:
256
import polyglot_sql
try:
pretty = polyglot_sql.format_sql("SELECT 1", dialect="generic")
except polyglot_sql.GenerateError as exc:
# Guard failures contain E_GUARD_* codes in the message.
print(str(exc))
Per-call guard overrides:
pretty = polyglot_sql.format_sql(
"SELECT 1 UNION ALL SELECT 2",
dialect="generic",
max_set_op_chain=1024,
max_input_bytes=32 * 1024 * 1024,
)
result = polyglot_sql.validate(
"SELECT * FROM users LIMIT 10",
dialect="postgres",
strict_syntax=True,
semantic=True,
)
if result:
print("valid")
Schema-aware validation uses the same Rust validator as the TypeScript SDK:
sql = "SELECT o.order_id FROM orders o WHERE o.missing_column = TRUE"
schema = {"tables": [{"name": "orders", "columns": [{"name": "order_id", "type": "INT"}]}]}
result = polyglot_sql.validate_with_schema(
sql, schema, dialect="snowflake", check_types=True, check_references=True,
)
for error in result.errors:
print(error.code, error.message)
if error.start is not None and error.end is not None:
print(sql[error.start:error.end])
Unknown tables, columns and aliases are checked by default. check_references
also checks ambiguous columns and foreign-key metadata; check_types enables
type checks. strict overrides the schema's strict value, which defaults to
True; strict=False reports reference/type findings as warnings. An empty
column list or a * column denotes an open schema, so unknown columns are not
rejected solely because their names are absent. Nonempty lists without *
are treated as complete. Options use snake_case keyword arguments, not an
options dictionary. Invalid schemas and unknown dialects raise ValueError.
options = {
"producer": "https://github.com/tobilg/polyglot",
"datasetNamespace": "postgres://warehouse",
"outputDataset": {
"namespace": "postgres://warehouse",
"name": "analytics.revenue",
},
}
payload = polyglot_sql.openlineage_column_lineage(
"SELECT order_id, amount * 100 AS amount_cents FROM raw.orders",
options,
)
print(payload["facet"]["fields"])
OpenLineage helpers only produce compatible payloads. Transport and client emission are intentionally out of scope.
analysis = polyglot_sql.analyze_query(
"WITH base AS (SELECT id, amount FROM orders) SELECT * FROM base",
{
"dialect": "generic",
"schema": {
"tables": [
{
"name": "orders",
"columns": [
{"name": "id", "type": "INT", "nullable": False},
{"name": "amount", "type": "DECIMAL(10,2)", "nullable": True},
],
}
]
},
},
)
print(analysis["cteFacts"][0]["bodySql"]) # "SELECT id, amount FROM orders"
print(analysis["starProjections"][0]["expandedColumns"]) # ["id", "amount"]
print(analysis["projections"][0]["nullability"]) # "non_null"
print(analysis["baseTables"][0]["name"]) # "orders"
print(analysis["baseTables"][0]["table"]) # "orders"
Non-projection uses are available through the same shared Rust analysis:
analysis = polyglot_sql.analyze_query(
"SELECT o.id FROM orders o WHERE o.amount > 0", dialect="duckdb"
)
use = analysis["columnUses"][0]
print(use["context"]) # "filter"
print(use["references"][0]["column"]) # "amount"
print(use["scopePath"]) # "root"
columnUses groups references by clause expression without changing projection
lineage. It covers joins, filters, grouping, HAVING/QUALIFY, window keys/frames,
ordering and set-operation filter inputs. scopePath/expressionPath identify
the scope and expression; expressionSql is dialect-rendered SQL. Optional
span objects use half-open Unicode-character offsets in the original input.
Reference spans locate uses, not upstream definitions. Unknown or ambiguous
sources remain conservative; whole-expression spans are omitted when unavailable.
analysis["relations"] reports sources visible in the analyzed scope.
analysis["baseTables"] reports deduplicated physical table dependencies across
nested CTEs, derived tables, subqueries, and set-operation branches. For
physical relation facts, name remains the qualified display name while
catalog, schema, and table expose parsed identifier parts. Validation
uses broad type families, while query analysis preserves parseable detailed
schema type strings for projection typeHint values. analysis["cteFacts"]
reports top-level CTE definitions, analysis["starProjections"] records the
original star projections and schema-expanded columns, and each projection has
conservative nullability: "non_null", "nullable", or "unknown".
Function-like projections may include transformFunction with the function
name, literal arguments, and column arguments, for example for
DATE_TRUNC('month', created_at).
Each analysis["setOperations"][...]["branches"] entry includes a role of
"value" or "filter". Lineage results attach optional set_branch metadata
to immediate set-operation branch roots with the operator, original
zero-based ordinal, and all flag; omitted branches do not renumber the
surviving nodes. In OpenLineage output, EXCEPT and INTERSECT right-hand
inputs are emitted as indirect FILTER dependencies.
Validation schema dictionaries use:
schema = {
"strict": True,
"tables": [
{
"name": "orders",
"schema": "analytics",
"aliases": ["o"],
"primaryKey": ["id"],
"uniqueKeys": [["external_id"]],
"foreignKeys": [
{
"columns": ["customer_id"],
"references": {"table": "customers", "columns": ["id"]},
}
],
"columns": [
{"name": "id", "type": "INT", "nullable": False, "primaryKey": True},
{"name": "amount", "type": "DECIMAL(10,2)", "nullable": True},
],
}
],
}
Use the type key for column types. dataType / data_type are not accepted
aliases in this payload.
API Reference
All functions are exported from polyglot_sql.
transpile(sql: str, read: str = "generic", write: str = "generic", *, pretty: bool = False) -> list[str]parse(sql: str, dialect: str = "generic") -> list[dict]parse_one(sql: str, dialect: str = "generic") -> dictparse_one(sql: str, dialect: str = "generic", *, into=polyglot_sql.DataType) -> DataType(onlyDataTypeis supported forinto)parse_data_type(sql: str, dialect: str = "generic") -> DataTypegenerate(ast: dict | list[dict], dialect: str = "generic", *, pretty: bool = False) -> list[str]format_sql(sql: str, dialect: str = "generic", *, max_input_bytes: int | None = None, max_tokens: int | None = None, max_ast_nodes: int | None = None, max_set_op_chain: int | None = None) -> strformat(sql: str, dialect: str = "generic", *, max_input_bytes: int | None = None, max_tokens: int | None = None, max_ast_nodes: int | None = None, max_set_op_chain: int | None = None) -> str(alias offormat_sql)validate(sql: str, dialect: str = "generic", *, strict_syntax: bool = False, semantic: bool = False) -> ValidationResultvalidate_with_schema(sql: str, schema: dict, dialect: str = "generic", *, check_types: bool = False, check_references: bool = False, strict: bool | None = None, semantic: bool = False, strict_syntax: bool = False) -> ValidationResultoptimize(sql: str, dialect: str = "generic") -> strlineage(column: str, sql: str, dialect: str = "generic") -> dictlineage_at(ordinal: int, sql: str, dialect: str = "generic") -> dictlineage_at_with_schema(ordinal: int, sql: str, schema: dict, dialect: str = "generic") -> dictlineage_with_schema(column: str, sql: str, schema: dict, dialect: str = "generic") -> dictoutput_columns(sql: str, dialect: str = "generic") -> dictoutput_columns_with_schema(sql: str, schema: dict, dialect: str = "generic") -> dictsource_tables(column: str, sql: str, dialect: str = "generic") -> list[str]analyze_query(sql: str, options: dict | None = None, dialect: str = "generic") -> dictopenlineage_column_lineage(sql: str, options: dict) -> dictopenlineage_job_event(sql: str, options: dict) -> dictopenlineage_run_event(sql: str, options: dict) -> dictdiff(sql1: str, sql2: str, dialect: str = "generic") -> list[dict]dialects() -> list[str]__version__: str
Supported Dialects
Current dialect names returned by polyglot_sql.dialects():
athena, bigquery, clickhouse, cockroachdb, datafusion, databricks, doris, dremio, drill, druid, duckdb, dune, exasol, fabric, generic, hana, hive, materialize, mysql, oracle, postgres, presto, redshift, risingwave, singlestore, snowflake, solr, spark, sqlite, starrocks, tableau, teradata, tidb, trino, tsql, vertica.
Error Handling
Exception hierarchy:
PolyglotErrorParseErrorGenerateErrorTranspileErrorValidationErrorColumnResolutionError(reason,column, andordinalattributes)
Unknown dialect names raise built-in ValueError.
validate(...) and validate_with_schema(...) return ValidationResult:
result.valid: boolresult.errors: list[ValidationErrorInfo]bool(result)works (Truewhen valid)
strict_syntax=True rejects compatibility forms such as trailing commas before
clause boundaries. semantic=True checks every query scope and reports errors
for invalid grouping (E230), aggregate placement/nesting (E231), and window
placement/nesting (E232). These errors make the result invalid, including with
strict=False. Quality hints remain warnings: SELECT * (W001), uncertain
grouping (W002), DISTINCT with ORDER BY (W003), and unordered LIMIT
(W004). Default validation remains syntax-only.
Schema validation always checks DML targets and references, independently of
check_types. Type checks use lexical query scopes and name-aligned set-operation
outputs. An empty column list or * denotes an open schema; validation is not a
database execution check and cannot prove runtime/session-dependent behavior.
Analysis options and schemas reject unknown keys, including nested metadata.
Public TypedDict models such as AnalyzeQueryOptions, ValidationSchema,
QueryAnalysis, and FunctionCatalogSpec describe their dictionary payloads.
Analysis retains best-effort references for missing columns but marks them
unknown, not resolved. Lambda-local parameters are not physical dependencies.
Python also accepts a declarative function catalog (Rust offers
FunctionCatalogSpec::build and the existing FunctionCatalog trait):
catalog: polyglot_sql.FunctionCatalogSpec = {
"functions": [{
"name": "my_udf",
"signatures": [{"minArity": 1, "maxArity": 2}],
}],
}
result = polyglot_sql.validate_with_schema(
"SELECT my_udf(1)", {"tables": []}, check_types=True,
function_catalog=catalog,
)
The catalog replaces the embedded function name/arity catalog; it does not
activate check_types automatically. Overloads are supported; omitted/null
maxArity means variadic. nameCase is insensitive by default, or sensitive,
and can be overridden per function. Native typed-function checks remain active.
Blank names, empty signature lists, negative/noninteger arities, reversed bounds,
conflicting case overrides, and unknown fields are rejected. Other SDKs do not
expose this catalog option.
Each ValidationErrorInfo has:
message: strline: intcol: intcode: strseverity: strstart: int | None(zero-based Unicode character offset)end: int | None(exclusive Unicode character offset)
Source ranges refer to the original SQL and support Python string slicing.
Reference diagnostics point to the offending identifier when available;
synthetic or schema-only findings have no source range. Existing line and
col fields remain integers and use 0 when unavailable.
Performance Note
The package uses Rust internals directly via PyO3 and has zero runtime Python dependencies for SQL processing.
Published wheels use the dedicated Cargo python_release profile with
opt-level=2 and thin LTO. This favors Python query throughput without changing
the size-oriented release profile used by WASM. FFI/Go artifacts use their own
native throughput profile. Editable development installs continue to use
Cargo's dev profile.
Development
cd crates/polyglot-sql-python
uv sync --group dev
uv run maturin develop
uv run pytest
uv run pyright python/polyglot_sql/
uv run maturin build --profile python_release
uv run --with mkdocs mkdocs build --strict --clean --config-file mkdocs.yml --site-dir ../../packages/python-docs/dist
Links
- Repository: https://github.com/tobilg/polyglot
- Issues: https://github.com/tobilg/polyglot/issues
- Python API Docs: https://polyglot-sql-python-api.pages.dev
- TypeScript API Docs: https://polyglot.gh.tobilg.com
- Playground: https://polyglot-playground.gh.tobilg.com/
Release files for polyglot-sql 0.13.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| polyglot_sql-0.13.0.tar.gz | 2.1 MB | Details |
Built distributions (wheels)
Total release size: 400.4 MB
Release files / polyglot_sql-0.13.0.tar.gz
| Download URL | polyglot_sql-0.13.0.tar.gz |
|---|---|
| Size | 2.1 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4cc74b55642c5ed153b8807576350f081fbafe409a979c99f3b5b40b7f40b97f
|
|
BLAKE2b-256 checksum How to use checksums |
bfa13dd101d30d9ba8c328772d8340c723fd5b877616daf9bb19ec2c77fe67ac
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | polyglot_sql-0.13.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 12.1 MB |
| Tags | Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
db5aad19850519edc2af492126cb08a8f236f8e25e856f3ca96bec275117f078
|
|
BLAKE2b-256 checksum How to use checksums |
b932e3eaf73d39758fe47cde159e0cf45ca28f6f6c0e3a380a32cf151c06ba38
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | polyglot_sql-0.13.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 13.1 MB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
9207df258899388d3473d089e3d393ab3566ec40733386edc4ba70d2af11205e
|
|
BLAKE2b-256 checksum How to use checksums |
85be7f23d9d5337e4f4af70c9e76fb2c4a1d390487b34d01b9eb6ada29597881
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 12.2 MB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
f29596393942b7a4d1b5d816a996e3c00c6112c76972a6b0668952030946ad43
|
|
BLAKE2b-256 checksum How to use checksums |
23cbb62c47fe45bc20f0be6791ff6d5568ad3911ce6d19402f6b3ffb9a9f10e5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 12.1 MB |
| Tags | CPython 3.15 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
fea404304b9e7a8638ceec5130b43cc03178862004b9f14a9978ac54a6617b64
|
|
BLAKE2b-256 checksum How to use checksums |
b7dcf690d2f1d8f2e48a7e6813c9911086bf404ba13b538ff816ef8ac4164fa2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 12.2 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
8a8196c3e465a804ecec9d1b79153b432db0254b7480b5f77b2c0e3c3b214d1c
|
|
BLAKE2b-256 checksum How to use checksums |
c5d1761a0a86e5e4e3a14da604b0d49198a2a3fae24be0e6b1c8c2b32c4d300a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | polyglot_sql-0.13.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 13.2 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
d49a5197b5bd34d176e2e569d975bc0ff78368f16330d6c2809f737f96b712ad
|
|
BLAKE2b-256 checksum How to use checksums |
f7adcd8857ada084b7bb52a38440a0753ba5a8c0c3b4de365580307da54488ef
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp314-cp314-win_amd64.whl
| Download URL | polyglot_sql-0.13.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 11.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
a377c9fc83531213c821b69ac96ce9d62f8772263c4ac6b28c463deada561430
|
|
BLAKE2b-256 checksum How to use checksums |
8ddd58798bcc2ae22225e5474c1a571bf5715669d9a5e83c59c0c9aca5aa0323
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 12.1 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
3e74c51f07c38bfe09c711ea219675cb733b54e10fe8aeedf317ce2a7f184b13
|
|
BLAKE2b-256 checksum How to use checksums |
3a42a2f2492f889249fe2b3cf327b4d993440bd143b4fa4c77c2f3c2881a2aeb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | polyglot_sql-0.13.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 13.1 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
8664726d9fe0f9e09fa4df9b9f63c58b058f381861be361389f4e06413b11199
|
|
BLAKE2b-256 checksum How to use checksums |
47cdcbb5a0146f8d89aabca818adb8b4d2d1d586beec7c909caabd4f52a6caeb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | polyglot_sql-0.13.0-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 12.2 MB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
67d12a3e576d795c17635e73535db89cfdc1070afa94a3268d116bd2922fc4ce
|
|
BLAKE2b-256 checksum How to use checksums |
c734c9c5cb3e87feffc5c5b7edb8548b2c8d46f66c61e9f75c770426a3f138cd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp314-cp314-macosx_10_12_x86_64.whl |
|---|---|
| Size | 12.9 MB |
| Tags | CPython 3.14 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
1c0ebd2367e221b286e38fe908f5419af4deb5cf09cc5c51c2754ee8333f4673
|
|
BLAKE2b-256 checksum How to use checksums |
e51835177dcf82e701727be37909169aae6b037683bcaa596d18e9b25638f1ef
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp313-cp313-win_amd64.whl
| Download URL | polyglot_sql-0.13.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 11.8 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
9b20f5a8caa1da731286495b4f47aa16fc5299da285d6d13279abfa9471513b1
|
|
BLAKE2b-256 checksum How to use checksums |
2035428943d84ef3d8fa3025b89f5759d04f34b6e4d53802e356a51bdc89e0a0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 12.1 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
ac47823b06d257c97148ddd5a098d88919bcc3a78a14bca7d0ea59b99fddcd47
|
|
BLAKE2b-256 checksum How to use checksums |
31e1161e06aff6cc3ad26339a14ac19b1a6ca0426adbd7d59abeee3172c0269d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | polyglot_sql-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 13.1 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
66b699d3660a7bf808244f2318a741ff021500046c30345c39509042e3e0d329
|
|
BLAKE2b-256 checksum How to use checksums |
8d0b2c6572e50e103c25c5a72adfcefaa21b675d5853a45b7409a311b5314f08
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | polyglot_sql-0.13.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 12.2 MB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
06082ea6534bd43e0a28f95ccefa9c7ac886ce051356c026d80252c42e90d9b1
|
|
BLAKE2b-256 checksum How to use checksums |
1495a1d263e963c2aebf8633d110630947ab6cd8e4eb99614abd24e4598ac36c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl |
|---|---|
| Size | 12.9 MB |
| Tags | CPython 3.13 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
e2bec28fe54dde9f23c1b2a939a5877026ee98f92126882ce0186683022cc738
|
|
BLAKE2b-256 checksum How to use checksums |
2880cde71c6f0817afdc63809727df0c376394c01c048de9b26ea5d888efa77c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp312-cp312-win_amd64.whl
| Download URL | polyglot_sql-0.13.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 11.8 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
1d877e8811c30e9ebae420621413eba85efdeb80725eadfedff96ff35764941b
|
|
BLAKE2b-256 checksum How to use checksums |
c46ec3e6bb5ceca45c700f69fa2660199de0b6e21d1cee1c7e6425b996105684
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 12.1 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
3f39df3f8fea177b354138ee9a2ded41755ed44d38d0b63c4cdb6153f6dcb8a0
|
|
BLAKE2b-256 checksum How to use checksums |
bfa1114e862e24c444eff18ca559b07a2cd25a22d8edffd5c993e52996b0dfab
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | polyglot_sql-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 13.1 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
683da41fd9c602535e4abc16b79255a3edb3e04fef48292bf63c5bd42aeeb022
|
|
BLAKE2b-256 checksum How to use checksums |
4c7120165db828c9ea184b9fed43469c4d74dbce622e37bd24750a4ebee91144
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | polyglot_sql-0.13.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 12.2 MB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
a459c0f7b5e26f8cf1ddce6fe371245d5759630033d1a0003096458dfc91d80f
|
|
BLAKE2b-256 checksum How to use checksums |
3cf4ceb5749ba6705952d23dace45a25268e17feebfe6bdeb8cb760c6463eac2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl |
|---|---|
| Size | 12.9 MB |
| Tags | CPython 3.12 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
eb8723f4030ebe020fbbcea408978889e59dbb4c16fc6a1949f99861f9540660
|
|
BLAKE2b-256 checksum How to use checksums |
7bfb0dc3527069da8e1861090a7edfec839668ac5f530b2f624e96b968ca626d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp311-cp311-win_amd64.whl
| Download URL | polyglot_sql-0.13.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 11.8 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
69cde6d8ba1a85683bd80c347a9ffee576e66a057cd440adb263d9cb01dae88e
|
|
BLAKE2b-256 checksum How to use checksums |
b64bc9ed4e8cafe83f4d1b172ab539e5d5c77db6283d19f5b933a204fd2229f9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 12.1 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
aabca8bcec56ca18809c708c6bc8bf95d3ab93f0325a3ebc8cb705f0ee387a72
|
|
BLAKE2b-256 checksum How to use checksums |
6c030f3817f10a9d09cbba3534dd50d9a9b96b325c35cbca50005fb214210014
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | polyglot_sql-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 13.1 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
df41beafe00bf281fbde52b4dffbc60e99d9b54097ad58107a5781bb616516c9
|
|
BLAKE2b-256 checksum How to use checksums |
e0da455cc84635c209f4180782d86ed7068c2848664310209e1ef45f25e3380b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | polyglot_sql-0.13.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 12.2 MB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
481dd15695e48c1aff84e123fe2b4f3c62516518420be85fa057955bc51a366d
|
|
BLAKE2b-256 checksum How to use checksums |
d5e7e2129d73506e22809e3a009a3c0ee653873efc52c408d61f9f2c490814b6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl |
|---|---|
| Size | 12.9 MB |
| Tags | CPython 3.11 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
ffdaf731f3e42322f0b9f88fe8ebbf588e339948356c7bb280c5595620321c75
|
|
BLAKE2b-256 checksum How to use checksums |
39af5770f4a9a85046328eeb5944163d40c5e76d49ae77cd625f61d0a4220429
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp310-cp310-win_amd64.whl
| Download URL | polyglot_sql-0.13.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 11.8 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
be168cd8a1066e356c1f86ba7b513b5dbf5dc032ab13f68799c49652d0f1a87e
|
|
BLAKE2b-256 checksum How to use checksums |
d06ce3469296c78acbf3ff490318b27f348c88843382afb9d13d502f9afc038c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 12.1 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
76ac4a8c20169a71bc822bb9c245dd83df31dfd9561a14cf04164eee7f55b98f
|
|
BLAKE2b-256 checksum How to use checksums |
fe7ce09b1777c8aaf57fb3e447b37250b5f11ce87660b409c71aedba6bf5349e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | polyglot_sql-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 13.1 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
4521af6247fc81d0425999aa5279e5cdcab6e2403818cbe7e47e145dc19d0ae0
|
|
BLAKE2b-256 checksum How to use checksums |
8119ce429608fa45ebe2e67bf288982d7a49e0d22ce87791d29ee0eccbc4388d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl |
|---|---|
| Size | 12.9 MB |
| Tags | CPython 3.10 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
d6460aac81dca78f5019f41c1103d3ef7e98f6faf6c75d4bb209b3e9b88962fe
|
|
BLAKE2b-256 checksum How to use checksums |
18e2fc14c05b67450d2a7ddf3f8785704ca362e7147209bf11a5d1c9d2a9961d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | polyglot_sql-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 12.1 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
4e5be03c03f5123964bb2686a4a1ed02d285164aceb5f05b3a2bc0bdeec70821
|
|
BLAKE2b-256 checksum How to use checksums |
ab17814ef7ee361be99afd54912e2d326c0383b1fd8738e0dd69e894b8d1f815
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / polyglot_sql-0.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | polyglot_sql-0.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 13.1 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
5891053b3a344f33348b4e3c9945acf02e91bee92032949e5fe2c658a85e394c
|
|
BLAKE2b-256 checksum How to use checksums |
90d94cb122eaba59d90bb730a9e8f3f681d8707cbf989bedc8a5bf92a372b266
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency log