A fast SQL parser with Python wrapper and C++ core
Project description
fast-pysqlparse: High-Performance SQL Parsing Library
A high-performance, cross-platform SQL parsing library, designed to handle the most complex SQL queries with ease.
Overview
This library provides a robust set of tools for parsing and analyzing SQL statements. Built with a core engine in C++17 for maximum performance, it offers native Python bindings, making it the ideal choice for data-intensive applications where speed and accuracy are critical.
It excels at parsing extremely long SQL statements and queries with deeply nested subqueries, delivering performance far superior to pure-Python alternatives.
The parser is primarily tested against MySQL-style SQL. Current supported dialect names are exposed in fastsqlparse.conf.SUPPORT_DIALECTS.
Features
- Fast SQL Parsing: Leverages a high-performance C++17 core to parse SQL statements rapidly
- Cross-Platform: Compiled into native extensions (.pyd for Windows, .so for Linux)
- Comprehensive SQL Support: Supports a wide range of SQL statements, including:
- SELECT (with complex JOIN, WHERE, GROUP BY, subqueries, etc.)
- INSERT
- Data Definition Language (CREATE)
- VIEW
- DELETE
- UPDATE
- Common Table Expressions (CTEs), including nested CTEs
- Abstract Syntax Tree (AST): Generates a detailed JSON representation of the parsed SQL AST for easy traversal and analysis
- SQL Formatting: Automatically reformats messy SQL into a clean, readable structure
- Table Lineage Parsing: Automatically traces and reveals the source-to-target relationships between tables (data lineage)
- Tokenization: Breaks down SQL statements into their fundamental tokens for lexical analysis
- Python API: A clean and intuitive Python library built around the high-speed native extension
Performance
This library is engineered for speed. By moving the computationally intensive parsing work to a native C++ layer, it significantly outperforms pure-Python parsing libraries, especially when dealing with large, complex SQL scripts.
Benchmark Results
Test 1: 5000 Iterations
- SQL Length: 600+ characters
- Total Time: 0.60s
- PPS (Parses Per Second): 8000+
- Average per parse: 0.1ms~0.15ms
Test 2: 10 Million Character SQL
- SQL Length: 10,000,000 characters
- Total Time: 1.40s
- CPS (Characters Per Second): ~7,500,000
- Parse successful!
Test 3: Python-Only Comparison on ~10M PostgreSQL SQL (No C Benchmark)
Benchmark script: test/python_parsers_10m.py
| Parser | Avg Time | CPS |
|---|---|---|
| fastsqlparse | 1.3054s | 7,660,928.40 |
| pglast | 4.3322s | 2,308,429.85 |
| sqlglot (postgres) | 22.9163s | 436,392.53 |
| sqlparse | 87.2098s | 114,671.60 |
Notes:
- SQL size: 10,000,484 chars
- Runs per parser: 1
- Results source: results of
test/python_parsers_10m.py
Installation
pip install fast-pysqlparse
From Source:
git clone https://github.com/Nohaltsail/fast-pysqlparse.git
cd fast-pysqlparse
pip install build
python -m build
cd dist
pip install fast_pysqlparse-*.whl
Quick Start
from fastsqlparse import Parsed, ParsedQuery
if __name__ == '__main__':
sql = """
-- main query
SELECT
'Monthly Sales Report' AS report_type,
ms.year,
ms.month,
ms.region,
ms.customer_segment,
ms.unique_customers,
ms.total_orders,
ms.gross_sales,
ms.avg_order_value,
ms.cancelled_orders,
(SELECT SUM(gross_sales) FROM sub_monthly_sales WHERE year = ms.year AND month = ms.month) AS total_monthly_sales,
ms.gross_sales / NULLIF((SELECT SUM(gross_sales) FROM monthly_sales WHERE year = ms.year AND month = ms.month), 0) * 100 AS sales_percentage,
(SELECT AVG(avg_order_value) FROM monthly_sales WHERE year = ms.year AND month = ms.month) AS overall_avg_order_value
FROM monthly_sales ms
UNION ALL
SELECT
'Category Performance' AS report_type,
cs.year,
cs.month,
NULL AS region,
cs.category_name AS customer_segment,
cs.unique_buyers AS unique_customers,
cs.order_count AS total_orders,
cs.total_sales AS gross_sales,
cs.total_sales / NULLIF(cs.order_count, 0) AS avg_order_value,
NULL AS cancelled_orders,
(SELECT SUM(total_sales) FROM sub_category_sales WHERE year = cs.year AND month = cs.month) AS total_monthly_sales,
cs.total_sales / NULLIF((SELECT SUM(total_sales) FROM category_sales WHERE year = cs.year AND month = cs.month), 0) * 100 AS sales_percentage,
NULL AS overall_avg_order_value
FROM category_sales cs
LIMIT 50, 100"""
sql_len = len(sql)
print("sql length: ", sql_len)
# parse sql statements to SQL object
sql_stmt = Parsed(sql)
# Format and print the SQL statement with proper indentation
print(sql_stmt.format()) # Output formatted SQL statement
# Tokenization - returns list of tuples containing (token_value, token_type, position)
tokens = ParsedQuery.tokenize(sql) # Get tuple list of token information (token_value, token_type, position)
# Alternative tokenization - returns list of token objects with attributes
token_obj_list = sql_stmt.tokens() # Get object list of token information
# Generate and print Abstract Syntax Tree (AST) in JSON format
print(sql_stmt.AST()) # Get JSON structure of the SQL statement
# Extract table lineage/dependencies from the query
src_tables = ParsedQuery.parse_dependence(sql) # Get source tables (dependencies) of the query
Comment Handling (pure)
pure controls SQL comment handling in parser constructors such as Parsed,
ParsedQuery, ParsedInsert, ParsedCTE, and ParsedView.
pure=False(default): keep comments in parsing/formatting output.pure=True: strip--and/* ... */comments before parsing; formatted output and token results exclude comments, and parsing may be faster.
from fastsqlparse import Parsed
parsed_keep = Parsed(sql, pure=False) # preserve comments
parsed_clean = Parsed(sql, pure=True) # strip comments before parse
When to Use Which Parser
| Scenario | Parser to Use |
|---|---|
| SQL statement type is unknown or you don't want to specify the type | Parsed/ParsedOne |
Multiple SQL statements separated by ; (script execution) |
Parsed |
| SELECT / query statement | ParsedQuery |
| INSERT statement | ParsedInsert |
| DELETE statement | ParsedDelete |
| UPDATE statement | ParsedUpdate |
| CREATE TABLE statement | ParsedCreate |
| CREATE VIEW statement | ParsedView |
| CTE (WITH clause) statement | ParsedCTE |
Note: If your SQL contains multiple statements separated by semicolons (e.g., a script with CREATE, INSERT, SELECT), you must use
Parsed. The type-specific parsers are designed for single, known-type statements only.
Documentation
For complete API documentation, see: API_DOC.md
Contributing
Contributions are welcome! Please feel free to submit pull requests, report bugs, or suggest new features.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Note on Dynamic Libraries
This project currently distributes precompiled dynamic libraries (.pyd and .so).
The corresponding C++ source code for these dynamic libraries is temporarily not public and is planned to be opened in a future release.
For the full supplementary notice, see LICENSE.
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 Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fast_pysqlparse-0.7.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: fast_pysqlparse-0.7.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ee60e11a7606ad948d907577dd2ae18b115bc8ebbb30a28b707ffbd2c1e96c4
|
|
| MD5 |
cab5ea2db5940e7d0846dac3123725b7
|
|
| BLAKE2b-256 |
35d30a52907a90b0e68c545cd68de3a73f4edf42f6519281dc20c0daa997f80d
|
Provenance
The following attestation bundles were made for fast_pysqlparse-0.7.0-cp314-cp314-win_amd64.whl:
Publisher:
python-publish.yml on Nohaltsail/fast-pysqlparse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_pysqlparse-0.7.0-cp314-cp314-win_amd64.whl -
Subject digest:
2ee60e11a7606ad948d907577dd2ae18b115bc8ebbb30a28b707ffbd2c1e96c4 - Sigstore transparency entry: 1581518583
- Sigstore integration time:
-
Permalink:
Nohaltsail/fast-pysqlparse@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Branch / Tag:
refs/tags/107 - Owner: https://github.com/Nohaltsail
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fast_pysqlparse-0.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fast_pysqlparse-0.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69e357fdcb2233048b7798ae4a8a1c3ce280e8bf5141460686b1b3a10aaa26f7
|
|
| MD5 |
530d99087182c5389a4013c9a69668cf
|
|
| BLAKE2b-256 |
04f75a7bffa1f2840095624030b9f1581c4b287eedf4ceda4a82042742d34ac0
|
Provenance
The following attestation bundles were made for fast_pysqlparse-0.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:
Publisher:
python-publish.yml on Nohaltsail/fast-pysqlparse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_pysqlparse-0.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
69e357fdcb2233048b7798ae4a8a1c3ce280e8bf5141460686b1b3a10aaa26f7 - Sigstore transparency entry: 1581518482
- Sigstore integration time:
-
Permalink:
Nohaltsail/fast-pysqlparse@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Branch / Tag:
refs/tags/107 - Owner: https://github.com/Nohaltsail
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fast_pysqlparse-0.7.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fast_pysqlparse-0.7.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adcb478a35f81c0cdfdf9923748dbcc6c214a9a81af25b67d344864c84541e77
|
|
| MD5 |
9d867155a630f05391013954c43cdfb1
|
|
| BLAKE2b-256 |
6ff5a39d8ec0ebe7f2cd6e0941a5f7f59d54953290f219368503e2557270aa61
|
Provenance
The following attestation bundles were made for fast_pysqlparse-0.7.0-cp313-cp313-win_amd64.whl:
Publisher:
python-publish.yml on Nohaltsail/fast-pysqlparse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_pysqlparse-0.7.0-cp313-cp313-win_amd64.whl -
Subject digest:
adcb478a35f81c0cdfdf9923748dbcc6c214a9a81af25b67d344864c84541e77 - Sigstore transparency entry: 1581518772
- Sigstore integration time:
-
Permalink:
Nohaltsail/fast-pysqlparse@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Branch / Tag:
refs/tags/107 - Owner: https://github.com/Nohaltsail
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fast_pysqlparse-0.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fast_pysqlparse-0.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0b094174ca23bac38e73829b9c9a81e6a856fc38f8647cc391b46febd987f63
|
|
| MD5 |
301b3b057d68ea0504eac7882057f587
|
|
| BLAKE2b-256 |
c8030055bcad6c5c909e9a8f1fdb14ced5913f77620c24b30c1c479a5ddfb112
|
Provenance
The following attestation bundles were made for fast_pysqlparse-0.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:
Publisher:
python-publish.yml on Nohaltsail/fast-pysqlparse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_pysqlparse-0.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
f0b094174ca23bac38e73829b9c9a81e6a856fc38f8647cc391b46febd987f63 - Sigstore transparency entry: 1581518872
- Sigstore integration time:
-
Permalink:
Nohaltsail/fast-pysqlparse@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Branch / Tag:
refs/tags/107 - Owner: https://github.com/Nohaltsail
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fast_pysqlparse-0.7.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fast_pysqlparse-0.7.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f08ab6ddb9ef455baf7606ed6ecc713793fbbb24f421965f99e71ace1eb110b
|
|
| MD5 |
9a1ba73a1f33e93bfb2ab38b3785b44a
|
|
| BLAKE2b-256 |
a5ebb244ca30b99694027ff4e1e322da74105ed37d7486bafd929ae8f524d3c4
|
Provenance
The following attestation bundles were made for fast_pysqlparse-0.7.0-cp312-cp312-win_amd64.whl:
Publisher:
python-publish.yml on Nohaltsail/fast-pysqlparse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_pysqlparse-0.7.0-cp312-cp312-win_amd64.whl -
Subject digest:
6f08ab6ddb9ef455baf7606ed6ecc713793fbbb24f421965f99e71ace1eb110b - Sigstore transparency entry: 1581519503
- Sigstore integration time:
-
Permalink:
Nohaltsail/fast-pysqlparse@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Branch / Tag:
refs/tags/107 - Owner: https://github.com/Nohaltsail
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fast_pysqlparse-0.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fast_pysqlparse-0.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
112b52ea917aae368d3348618cdeb5fec0724788fb249eaa61a1106d0f75593e
|
|
| MD5 |
a01bd1726f1f7269bf3a815251ca1b5b
|
|
| BLAKE2b-256 |
a5c55b41c98603e529c8931fdcad0f632d178db39c95e143569245d35daeefd9
|
Provenance
The following attestation bundles were made for fast_pysqlparse-0.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:
Publisher:
python-publish.yml on Nohaltsail/fast-pysqlparse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_pysqlparse-0.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
112b52ea917aae368d3348618cdeb5fec0724788fb249eaa61a1106d0f75593e - Sigstore transparency entry: 1581519152
- Sigstore integration time:
-
Permalink:
Nohaltsail/fast-pysqlparse@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Branch / Tag:
refs/tags/107 - Owner: https://github.com/Nohaltsail
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fast_pysqlparse-0.7.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fast_pysqlparse-0.7.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc822b47e30b5c4ab291e5ac5d26dd71064f2396a34974e3384eefe40dd72885
|
|
| MD5 |
d99162679e706add95f77bb02edbe960
|
|
| BLAKE2b-256 |
56623a98dc59971c0221848df1bd7f42549c1fee8e1a247c5f1b5527f892b238
|
Provenance
The following attestation bundles were made for fast_pysqlparse-0.7.0-cp311-cp311-win_amd64.whl:
Publisher:
python-publish.yml on Nohaltsail/fast-pysqlparse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_pysqlparse-0.7.0-cp311-cp311-win_amd64.whl -
Subject digest:
bc822b47e30b5c4ab291e5ac5d26dd71064f2396a34974e3384eefe40dd72885 - Sigstore transparency entry: 1581519246
- Sigstore integration time:
-
Permalink:
Nohaltsail/fast-pysqlparse@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Branch / Tag:
refs/tags/107 - Owner: https://github.com/Nohaltsail
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fast_pysqlparse-0.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fast_pysqlparse-0.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29c0020a5d7bd04dffc2691bef10dcd4b7c565d13c67ba578ea74569ca15fe4f
|
|
| MD5 |
10e72f56f7e855e33de796db5a60c0f0
|
|
| BLAKE2b-256 |
8d103b29bd82dc5418391f9d84470dc5a0e9cb9a35680bb8e895b36c9021e827
|
Provenance
The following attestation bundles were made for fast_pysqlparse-0.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:
Publisher:
python-publish.yml on Nohaltsail/fast-pysqlparse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_pysqlparse-0.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
29c0020a5d7bd04dffc2691bef10dcd4b7c565d13c67ba578ea74569ca15fe4f - Sigstore transparency entry: 1581518987
- Sigstore integration time:
-
Permalink:
Nohaltsail/fast-pysqlparse@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Branch / Tag:
refs/tags/107 - Owner: https://github.com/Nohaltsail
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fast_pysqlparse-0.7.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fast_pysqlparse-0.7.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccb21860f13544c6832605a911102ca317b873094462f62b60e855406520a4f5
|
|
| MD5 |
95e5a07b30c1d143b62f2454713accc7
|
|
| BLAKE2b-256 |
100611c9445826b04ba5f4a045c977f8647571575c7e67adee515d5e78153661
|
Provenance
The following attestation bundles were made for fast_pysqlparse-0.7.0-cp310-cp310-win_amd64.whl:
Publisher:
python-publish.yml on Nohaltsail/fast-pysqlparse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_pysqlparse-0.7.0-cp310-cp310-win_amd64.whl -
Subject digest:
ccb21860f13544c6832605a911102ca317b873094462f62b60e855406520a4f5 - Sigstore transparency entry: 1581518669
- Sigstore integration time:
-
Permalink:
Nohaltsail/fast-pysqlparse@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Branch / Tag:
refs/tags/107 - Owner: https://github.com/Nohaltsail
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fast_pysqlparse-0.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: fast_pysqlparse-0.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e9e2666233547efaf5a315cb92c6cdb6872520ff2d77eae3a5904cb930953a8
|
|
| MD5 |
35c74deb1cc3acad6890743d6d90a737
|
|
| BLAKE2b-256 |
49a11c83467c830f655e78b8a4870dc1f4cbc78f3ac4fb8db1a966ce9fe8d066
|
Provenance
The following attestation bundles were made for fast_pysqlparse-0.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:
Publisher:
python-publish.yml on Nohaltsail/fast-pysqlparse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_pysqlparse-0.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
9e9e2666233547efaf5a315cb92c6cdb6872520ff2d77eae3a5904cb930953a8 - Sigstore transparency entry: 1581519344
- Sigstore integration time:
-
Permalink:
Nohaltsail/fast-pysqlparse@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Branch / Tag:
refs/tags/107 - Owner: https://github.com/Nohaltsail
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@3187cbe8a5814b0da595af1e3d82d68d9745f075 -
Trigger Event:
release
-
Statement type: