A non-validating SQL parser module for Python (LADI project)
Go to file
Andi Albrecht dfb2899805 Bump version. 2016-10-22 23:31:50 +02:00
docs Correct license link (fixes #288). 2016-09-14 14:56:34 +02:00
examples Correct license link (fixes #288). 2016-09-14 14:56:34 +02:00
sqlparse Bump version. 2016-10-22 23:31:50 +02:00
tests Handle operator grouping after identifying typecasts (fixes #297). 2016-10-01 14:07:52 +02:00
.editorconfig Add editorconfig, update gitignore, filename, authors 2016-05-10 18:31:39 -07:00
.gitignore Add build dir to gitignore. 2016-10-02 13:58:02 +02:00
.travis.yml Drop coveralls it spams issues with comments (fixes #289). 2016-09-14 14:23:22 +02:00
AUTHORS Merge pull request #260 from vmuriart/long_live_indexes 2016-06-16 02:33:28 -07:00
CHANGELOG Bump version. 2016-10-22 23:31:50 +02:00
LICENSE Add or Update copyright year to files 2016-06-04 11:08:20 -07:00
MANIFEST.in Fix CHANGELOG include (fixes #302). 2016-10-19 17:20:11 +02:00
Makefile Upload wheels too. 2016-10-02 13:57:36 +02:00
README.rst Convert readthedocs link for their .org -> .io migration for hosted projects 2016-05-29 23:21:00 +01:00
TODO Remove useless items from TODO. 2015-10-26 20:37:06 +01:00
setup.cfg Add test_cli.py 2016-06-15 20:42:36 -07:00
setup.py Correct license link (fixes #288). 2016-09-14 14:56:34 +02:00
tox.ini Pipe command line args to py.test 2016-08-13 17:31:35 +02:00

README.rst

python-sqlparse - Parse SQL statements
======================================

sqlparse is a non-validating SQL parser module for Python.

|buildstatus|_
|coverage|_


Install
-------

Run::

  python setup.py install

to install python-sqlparse on your system.

python-sqlparse is compatible with Python 2.7 and Python 3 (>= 3.3).


Run Tests
---------

To run the test suite run::

  tox

Note, you'll need tox installed, of course.


Links
-----

Project Page
  https://github.com/andialbrecht/sqlparse

Documentation
  https://sqlparse.readthedocs.io/en/latest/

Discussions
  http://groups.google.com/group/sqlparse

Issues/Bugs
  https://github.com/andialbrecht/sqlparse/issues

Online Demo
  http://sqlformat.org


python-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://secure.travis-ci.org/andialbrecht/sqlparse.png?branch=master
.. _buildstatus: http://travis-ci.org/#!/andialbrecht/sqlparse
.. |coverage| image:: https://coveralls.io/repos/andialbrecht/sqlparse/badge.svg?branch=master&service=github
.. _coverage: https://coveralls.io/github/andialbrecht/sqlparse?branch=master