README.rst 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. python-sqlparse - Parse SQL statements
  2. ======================================
  3. sqlparse is a non-validating SQL parser module for Python.
  4. |buildstatus|_
  5. |coverage|_
  6. Install
  7. -------
  8. Run::
  9. python setup.py install
  10. to install python-sqlparse on your system.
  11. python-sqlparse is compatible with Python 2.7 and Python 3 (>= 3.3).
  12. Run Tests
  13. ---------
  14. To run the test suite run::
  15. tox
  16. Note, you'll need tox installed, of course.
  17. Links
  18. -----
  19. Project Page
  20. https://github.com/andialbrecht/sqlparse
  21. Documentation
  22. https://sqlparse.readthedocs.io/en/latest/
  23. Discussions
  24. http://groups.google.com/group/sqlparse
  25. Issues/Bugs
  26. https://github.com/andialbrecht/sqlparse/issues
  27. Online Demo
  28. http://sqlformat.org
  29. python-sqlparse is licensed under the BSD license.
  30. Parts of the code are based on pygments written by Georg Brandl and others.
  31. pygments-Homepage: http://pygments.org/
  32. .. |buildstatus| image:: https://secure.travis-ci.org/andialbrecht/sqlparse.png?branch=master
  33. .. _buildstatus: http://travis-ci.org/#!/andialbrecht/sqlparse
  34. .. |coverage| image:: https://coveralls.io/repos/andialbrecht/sqlparse/badge.svg?branch=master&service=github
  35. .. _coverage: https://coveralls.io/github/andialbrecht/sqlparse?branch=master