sqlparse: A Powerful Non-Validating SQL Parser for Python
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
sqlparse is a robust, non-validating SQL parser module for Python, designed to tokenize SQL text and group its components into a structured tree. It serves as a foundational tool for building formatters, linters, and query analysis applications. Developers can leverage its capabilities to split SQL scripts, format statements, and deeply inspect their token trees.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
sqlparse is a non-validating SQL parser for Python, offering powerful capabilities to process SQL text. It excels at splitting scripts into individual statements, formatting them according to various styles, and allowing users to traverse their intricate token trees.
This library tokenizes SQL text, organizing the recognized parts into a hierarchical structure of statements, clauses, identifiers, and expressions. A key advantage of sqlparse is its flexibility: it accepts any input without validation and makes no assumptions about specific SQL dialects. This makes it highly adaptable for handling vendor extensions and templated SQL, serving as an essential building block for formatters, linters, editors, and advanced query analysis tools.
Installation
Getting started with sqlparse is straightforward. You can install it using pip:
pip install sqlparse
Examples
sqlparse provides three primary module-level functions to cover most common needs: split(), format(), and parse().
Split a script into statements
Easily break down a SQL script containing multiple statements into a list of individual statements:
import sqlparse
sqlparse.split("select * from foo; select * from bar;")
# ['select * from foo;', 'select * from bar;']
Format a statement
Enhance the readability of your SQL queries with sqlparse's formatting capabilities. You can specify options like reindentation and keyword casing:
print(sqlparse.format("select id,name from users where active=1",
reindent=True, keyword_case="upper"))
This will produce:
SELECT id,
name
FROM users
WHERE active=1
The format() function supports various options, including reindent, keyword_case, strip_comments, and indent_width, similar to its command-line counterpart.
Parse and inspect a statement
For deeper analysis, sqlparse allows you to parse a statement and inspect its token tree. This is invaluable for understanding the structure of complex queries:
statement = sqlparse.parse("select id, name from users where active = 1")[0]
print(statement.get_type())
for token in statement.tokens:
if not token.is_whitespace:
print(f"{token.ttype or type(token).__name__!s:20} {token!s}")
Output will resemble:
SELECT
Token.Keyword.DML select
IdentifierList id, name
Token.Keyword from
Identifier users
Where where active = 1
Tokens with a ttype are leaf nodes, while others represent groups that can be further explored. This hierarchical representation is how nested constructs, such as subqueries and CASE expressions, are managed. For more details on traversing the API, refer to the Analyzing SQL statements documentation.
Why Use sqlparse?
sqlparse stands out as an indispensable tool for anyone working with SQL in Python due to several key features:
- Flexibility: Its non-validating nature and dialect-agnostic approach mean it can parse virtually any SQL, including vendor-specific extensions and templated queries.
- Foundation for Tools: It provides the core parsing logic needed to build sophisticated SQL formatters, linters, editors, and advanced query analysis applications.
- Simple API: Common tasks like splitting, formatting, and parsing SQL are made easy with intuitive module-level functions.
- Command-Line Utility: The
sqlformatcommand-line tool offers quick formatting directly from your terminal, supporting in-place file modifications. - Pre-commit Integration: Seamlessly integrate
sqlparseinto your development workflow using pre-commit hooks to ensure consistent SQL formatting across your projects.
Links
Explore sqlparse further with these official resources:
- Documentation: https://sqlparse.readthedocs.io/
- Release notes: https://sqlparse.readthedocs.io/en/latest/changes.html
- Issues: https://github.com/andialbrecht/sqlparse/issues
- Discussions: https://github.com/andialbrecht/sqlparse/discussions
- Online demo: https://sqlformat.org/
Related repositories
Similar repositories that may be relevant next.

PLY: A Legacy Python Lex-Yacc Parser Generator (Project Abandoned)
July 30, 2026
PLY (Python Lex-Yacc) is a zero-dependency Python implementation of the traditional lex and yacc parsing tools, designed for building compilers, ASTs, and protocol decoders. Created by David Beazley, it offers a robust LALR(1) parsing algorithm compatible with modern Python versions. However, it's important to note that the project has been officially abandoned by its author, with no further maintenance expected.

python-phonenumbers: Google's libphonenumber Port for Python
July 30, 2026
`python-phonenumbers` is a robust Python port of Google's highly acclaimed `libphonenumber` library. It offers comprehensive functionality for parsing, validating, and formatting international phone numbers, making it an indispensable tool for global applications. This library ensures accurate and standardized phone number handling across diverse regions.

Boto3: The AWS SDK for Python for Seamless Cloud Interaction
July 29, 2026
Boto3 is the official Amazon Web Services (AWS) SDK for Python, enabling developers to easily interact with a wide range of AWS services like S3 and EC2. It provides a powerful and intuitive interface for managing cloud resources directly from Python applications. With robust documentation and active community support, Boto3 is an essential tool for Python developers working with AWS.
google-api-python-client: The Official Python Library for Google APIs
July 29, 2026
The `google-api-python-client` is the official Python client library for interacting with Google's discovery-based APIs. It provides a robust way for Python developers to integrate their applications with various Google services. While in maintenance mode, it remains a reliable choice, especially with its improved v2.0 caching mechanism.
Source repository
Open the original repository on GitHub.