A non-validating SQL parser module for Python (LADI project)
Go to file
Andi Albrecht 9919d14755 Bump version to 0.2.0. 2016-07-20 09:20:19 +02:00
docs Apply new-style str format 2016-06-11 04:34:12 -07:00
examples Rename token_idx_ funcs to simply token_ funcs 2016-06-15 13:29:13 -07:00
sqlparse Bump version to 0.2.0. 2016-07-20 09:20:19 +02:00
tests Returning clause ends where clause 2016-06-25 10:08:52 -04:00
.editorconfig Add editorconfig, update gitignore, filename, authors 2016-05-10 18:31:39 -07:00
.gitignore Add editorconfig, update gitignore, filename, authors 2016-05-10 18:31:39 -07:00
.travis.yml Stop Travis-CI from spamming with build emails 2016-06-09 20:40:50 -07:00
AUTHORS Merge pull request #260 from vmuriart/long_live_indexes 2016-06-16 02:33:28 -07:00
CHANGELOG Bump version to 0.2.0. 2016-07-20 09:20:19 +02:00
LICENSE Add or Update copyright year to files 2016-06-04 11:08:20 -07:00
MANIFEST.in Remove agogo excludes from MANIFEST.in 2013-03-27 05:41:38 +01:00
Makefile Add Makefile target for uploading a new release. 2015-10-24 08:05:33 +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 Fix entry_point name; sqlformat vs sqlparse 2016-06-15 18:26:51 -07:00
tox.ini Fix entry_point name; sqlformat vs sqlparse 2016-06-15 18:26:51 -07: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