From 361122eb22d5681c58dac731009e4814b3dd5fa5 Mon Sep 17 00:00:00 2001 From: Andi Albrecht Date: Fri, 3 Apr 2009 21:26:42 +0200 Subject: Initial import. --- README | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 README (limited to 'README') diff --git a/README b/README new file mode 100644 index 0000000..10c8c1a --- /dev/null +++ b/README @@ -0,0 +1,45 @@ +python-sqlparse - Parse SQL statements +====================================== + +sqlparse currently support only one feature: You can split a series +of SQL statements into single statements. + +Parts of the code are based on pygments written by Georg Brandl and others. +pygments-Homepage: http://pygments.org/ + +Run Tests +--------- + + python test/run_tests.py + + +Create Documentation +-------------------- + +You need `Sphinx`_ installed on your system to build the documentation. + + cd docs/ + make html + + +Install +------- + +Run + + python setup.py install + +with root privileges to install python-sqlparse on your system. + + +Links +----- + +Source code: http://github.com/andialbrecht/python-sqlparse + + +python-sqlparse is licensed under the BSD license: +http://github.com/andialbrecht/python-sqlparse + + +.. _Sphinx: http://sphinx.pocoo.org/ -- cgit v1.2.1