blob: 4988f2f37cf7ee4a7be8a3147218daf6fe8481ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{% extends "master.html" %}
{% block main %}
<div id="response">
<h1>Source Code</h1>
<h2>Python Module</h2>
<p>
The sources for the SQL parser and formatter module are currently
hosted on Gitorious.
To clone the repository run:
<p>
<code class="pre">git clone git://github.com/andialbrecht/python-sqlparse.git</code>
</p>
<p>
<a href="http://python-sqlparse.googlecode.com">Visit the project page</a>
|
<a href="http://gitorious.org/projects/python-sqlparse/repos/mainline/trees/master">Browse the sources online</a>
</p>
<p>
Some relevant parts of the Python module contain code from the
<a href="http://pygments.org/">pygments</a> syntax highlighter.
The underlying Python module uses a non-validating SQL parser.
This approach makes it possible to parse even syntactically incorrect
SQL statements.
</p>
<p>
Currently the parser module is used by
<a href="http://crunchyfrog.googlecode.com/">CrunchyFrog</a> - a
database front-end for Gnome.
</p>
<p>
The <code>sqlparse</code> module is released under the terms of the
<a href="http://www.opensource.org/licenses/bsd-license.php">New BSD License</a>.
</p>
<h2>App Engine Application</h2>
<p>
The source code for this App Engine application is available in the
<code>examples</code> directory of the Python module
(but it's really nothing special ;-).
</p>
<h2>Contributing</h2>
<p>
Please file bug reports and feature requests on the project site at
<a href="http://code.google.com/p/python-sqlparse/issues/entry">http://code.google.com/p/python-sqlparse/issues/entry</a>
or if you have code to contribute upload it to
<a href="http://codereview.appspot.com">http://codereview.appspot.com</a>
and add albrecht.andi@googlemail.com as reviewer.
</p>
</div>
{% endblock %}
|