docker setup
This commit is contained in:
@ -0,0 +1 @@
|
||||
pip
|
@ -0,0 +1,25 @@
|
||||
Copyright (c) 2016, Andi Albrecht <albrecht.andi@gmail.com>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
* Neither the name of the authors nor the names of its contributors may be
|
||||
used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,117 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: sqlparse
|
||||
Version: 0.4.4
|
||||
Summary: A non-validating SQL parser.
|
||||
Author-email: Andi Albrecht <albrecht.andi@gmail.com>
|
||||
Requires-Python: >=3.5
|
||||
Description-Content-Type: text/x-rst
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3 :: Only
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
Classifier: Programming Language :: Python :: 3.9
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
||||
Classifier: Topic :: Database
|
||||
Classifier: Topic :: Software Development
|
||||
Requires-Dist: flake8 ; extra == "dev"
|
||||
Requires-Dist: build ; extra == "dev"
|
||||
Requires-Dist: sphinx ; extra == "doc"
|
||||
Requires-Dist: pytest ; extra == "test"
|
||||
Requires-Dist: pytest-cov ; extra == "test"
|
||||
Project-URL: Documentation, https://sqlparse.readthedocs.io/
|
||||
Project-URL: Home, https://github.com/andialbrecht/sqlparse
|
||||
Project-URL: Release Notes, https://sqlparse.readthedocs.io/en/latest/changes/
|
||||
Project-URL: Source, https://github.com/andialbrecht/sqlparse
|
||||
Project-URL: Tracker, https://github.com/andialbrecht/sqlparse/issues
|
||||
Provides-Extra: dev
|
||||
Provides-Extra: doc
|
||||
Provides-Extra: test
|
||||
|
||||
python-sqlparse - Parse SQL statements
|
||||
======================================
|
||||
|
||||
|buildstatus|_
|
||||
|coverage|_
|
||||
|docs|_
|
||||
|packageversion|_
|
||||
|
||||
.. docincludebegin
|
||||
|
||||
sqlparse is a non-validating SQL parser for Python.
|
||||
It provides support for parsing, splitting and formatting SQL statements.
|
||||
|
||||
The module is compatible with Python 3.5+ and released under the terms of the
|
||||
`New BSD license <https://opensource.org/licenses/BSD-3-Clause>`_.
|
||||
|
||||
Visit the project page at https://github.com/andialbrecht/sqlparse for
|
||||
further information about this project.
|
||||
|
||||
|
||||
Quick Start
|
||||
-----------
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ pip install sqlparse
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
>>> import sqlparse
|
||||
|
||||
>>> # Split a string containing two SQL statements:
|
||||
>>> raw = 'select * from foo; select * from bar;'
|
||||
>>> statements = sqlparse.split(raw)
|
||||
>>> statements
|
||||
['select * from foo;', 'select * from bar;']
|
||||
|
||||
>>> # Format the first statement and print it out:
|
||||
>>> first = statements[0]
|
||||
>>> print(sqlparse.format(first, reindent=True, keyword_case='upper'))
|
||||
SELECT *
|
||||
FROM foo;
|
||||
|
||||
>>> # Parsing a SQL statement:
|
||||
>>> parsed = sqlparse.parse('select * from foo')[0]
|
||||
>>> parsed.tokens
|
||||
[<DML 'select' at 0x7f22c5e15368>, <Whitespace ' ' at 0x7f22c5e153b0>, <Wildcard '*' … ]
|
||||
>>>
|
||||
|
||||
Links
|
||||
-----
|
||||
|
||||
Project page
|
||||
https://github.com/andialbrecht/sqlparse
|
||||
|
||||
Bug tracker
|
||||
https://github.com/andialbrecht/sqlparse/issues
|
||||
|
||||
Documentation
|
||||
https://sqlparse.readthedocs.io/
|
||||
|
||||
Online Demo
|
||||
https://sqlformat.org/
|
||||
|
||||
|
||||
sqlparse is licensed under the BSD license.
|
||||
|
||||
Parts of the code are based on pygments written by Georg Brandl and others.
|
||||
pygments-Homepage: http://pygments.org/
|
||||
|
||||
.. |buildstatus| image:: https://github.com/andialbrecht/sqlparse/actions/workflows/python-app.yml/badge.svg
|
||||
.. _buildstatus: https://github.com/andialbrecht/sqlparse/actions/workflows/python-app.yml
|
||||
.. |coverage| image:: https://codecov.io/gh/andialbrecht/sqlparse/branch/master/graph/badge.svg
|
||||
.. _coverage: https://codecov.io/gh/andialbrecht/sqlparse
|
||||
.. |docs| image:: https://readthedocs.org/projects/sqlparse/badge/?version=latest
|
||||
.. _docs: https://sqlparse.readthedocs.io/en/latest/?badge=latest
|
||||
.. |packageversion| image:: https://img.shields.io/pypi/v/sqlparse?color=%2334D058&label=pypi%20package
|
||||
.. _packageversion: https://pypi.org/project/sqlparse
|
||||
|
@ -0,0 +1,50 @@
|
||||
../../../bin/sqlformat,sha256=DZvEAURK5wcHBNBRlbjQZW3ELGenrKWwexELaurnlvc,262
|
||||
sqlparse-0.4.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
sqlparse-0.4.4.dist-info/LICENSE,sha256=wZOCNbgNOekxOOrontw69n4Y7LxA0mZSn6V7Lc5CYxA,1537
|
||||
sqlparse-0.4.4.dist-info/METADATA,sha256=3ddYXNmq5A2vauTq6QBwIcXiGFfFdHt19lZ0AhMgIHw,3975
|
||||
sqlparse-0.4.4.dist-info/RECORD,,
|
||||
sqlparse-0.4.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
sqlparse-0.4.4.dist-info/WHEEL,sha256=rSgq_JpHF9fHR1lx53qwg_1-2LypZE_qmcuXbVUq948,81
|
||||
sqlparse-0.4.4.dist-info/entry_points.txt,sha256=52MfRiHGE-AZj8HdMu4Z5erM9wEgUbFfzzYETOicUA0,52
|
||||
sqlparse/__init__.py,sha256=DIbMPyqkC8hKdtNU6aX_FG5ScYNzX4F2Z-NggFN5jBk,2180
|
||||
sqlparse/__main__.py,sha256=1jhVFLHlZs4NUJoAuHvQQKWgykPVTdgeE8V4XB5WQzw,610
|
||||
sqlparse/__pycache__/__init__.cpython-311.pyc,,
|
||||
sqlparse/__pycache__/__main__.cpython-311.pyc,,
|
||||
sqlparse/__pycache__/cli.cpython-311.pyc,,
|
||||
sqlparse/__pycache__/exceptions.cpython-311.pyc,,
|
||||
sqlparse/__pycache__/formatter.cpython-311.pyc,,
|
||||
sqlparse/__pycache__/keywords.cpython-311.pyc,,
|
||||
sqlparse/__pycache__/lexer.cpython-311.pyc,,
|
||||
sqlparse/__pycache__/sql.cpython-311.pyc,,
|
||||
sqlparse/__pycache__/tokens.cpython-311.pyc,,
|
||||
sqlparse/__pycache__/utils.cpython-311.pyc,,
|
||||
sqlparse/cli.py,sha256=83gHgW0mTQXJbv-ItpAEZaq7-2lvWij0mg2cVmG67KA,5712
|
||||
sqlparse/engine/__init__.py,sha256=i9kh0USMjk1bwKPFTn6K0PKC55HOqvnkoxHi1t7YccE,447
|
||||
sqlparse/engine/__pycache__/__init__.cpython-311.pyc,,
|
||||
sqlparse/engine/__pycache__/filter_stack.cpython-311.pyc,,
|
||||
sqlparse/engine/__pycache__/grouping.cpython-311.pyc,,
|
||||
sqlparse/engine/__pycache__/statement_splitter.cpython-311.pyc,,
|
||||
sqlparse/engine/filter_stack.py,sha256=cId9vnz0Kpthg3ljdnX2Id6-vz0zpKHoMV_FqEYEsYU,1193
|
||||
sqlparse/engine/grouping.py,sha256=3FCwNix0loFk2NYXHUM2Puqr-0aEDLLquV5Tydglhg0,13826
|
||||
sqlparse/engine/statement_splitter.py,sha256=-injFkTCUKQth2I3K1PguFkEkPCiAlxkzZV64_CMl0A,3758
|
||||
sqlparse/exceptions.py,sha256=QyZ9TKTvzgcmuQ1cJkxAj9SoAw4M02-Bf0CSUNWNDKM,342
|
||||
sqlparse/filters/__init__.py,sha256=PcS7CklN-qpmfYhId4oGTyUb7au1A0aD-21RP_bsfQY,1242
|
||||
sqlparse/filters/__pycache__/__init__.cpython-311.pyc,,
|
||||
sqlparse/filters/__pycache__/aligned_indent.cpython-311.pyc,,
|
||||
sqlparse/filters/__pycache__/others.cpython-311.pyc,,
|
||||
sqlparse/filters/__pycache__/output.cpython-311.pyc,,
|
||||
sqlparse/filters/__pycache__/reindent.cpython-311.pyc,,
|
||||
sqlparse/filters/__pycache__/right_margin.cpython-311.pyc,,
|
||||
sqlparse/filters/__pycache__/tokens.cpython-311.pyc,,
|
||||
sqlparse/filters/aligned_indent.py,sha256=kvN5TVMxovyX6cDnmxF-t-KUz2RnzbQ1fIQzdIxYY2g,5110
|
||||
sqlparse/filters/others.py,sha256=No8RhdUT8td6I0r9uxM6GuI_alDsE9FhFftcZpq856c,5180
|
||||
sqlparse/filters/output.py,sha256=OMSalSPvq3s3-r268Tjv-AmtjTNCfhLayWtQFO5oyVE,4001
|
||||
sqlparse/filters/reindent.py,sha256=y090sT7Mc44Bw9InKqJ1u_BzUTc81W0L1N-BVLVpq8o,9549
|
||||
sqlparse/filters/right_margin.py,sha256=Hil692JB3ZkiMPpPPZcMUiRUjDpmhFiuARUu5_imym8,1543
|
||||
sqlparse/filters/tokens.py,sha256=CZwDwMzzOdq0qvTRIIic7w59g54QhwFgM2Op9932Zvk,1553
|
||||
sqlparse/formatter.py,sha256=iWDPQhD4JqbiA4jZpK2QBZzEqVACw3bRwdLgPIma4lE,7566
|
||||
sqlparse/keywords.py,sha256=6ODDvyPvRpt9QztyN396R925WdvovikFLhs2DqRn1Qo,29445
|
||||
sqlparse/lexer.py,sha256=Gqebv66Wu8GQlQYF_NkLoIZYDufhibBjYJHzRNEyffg,5786
|
||||
sqlparse/sql.py,sha256=UTEij071iIjtuYntsxqWgbKGCYW3AFMB2yJBuBoPjkw,20401
|
||||
sqlparse/tokens.py,sha256=NMUdBh3XPKk-D-uYn_tqKqdsD_uXVZWzkoHIy0vEEpA,1661
|
||||
sqlparse/utils.py,sha256=VO2icS0t4vqg9mpZJUUrmP0RqfIrC-QRWoRgoEey9r8,3446
|
@ -0,0 +1,4 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: flit 3.8.0
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
@ -0,0 +1,3 @@
|
||||
[console_scripts]
|
||||
sqlformat=sqlparse.__main__:main
|
||||
|
Reference in New Issue
Block a user