From dce6100348f92663f855b3c791031fd5a991844a Mon Sep 17 00:00:00 2001 From: Andi Albrecht Date: Mon, 26 Oct 2015 19:51:54 +0100 Subject: Remove old Appengine application. --- .../sqlformat/templates/python-client-example.html | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 extras/appengine/sqlformat/templates/python-client-example.html (limited to 'extras/appengine/sqlformat/templates/python-client-example.html') diff --git a/extras/appengine/sqlformat/templates/python-client-example.html b/extras/appengine/sqlformat/templates/python-client-example.html deleted file mode 100644 index 68bf820..0000000 --- a/extras/appengine/sqlformat/templates/python-client-example.html +++ /dev/null @@ -1,17 +0,0 @@ -
#!/usr/bin/env python
-
-import urllib
-import urllib2
-
-payload = (
-    ('data', 'select * from foo join bar on val1 = val2 where id = 123;'),
-    ('format', 'text'),
-    ('keyword_case', 'upper'),
-    ('reindent', True),
-    ('n_indents', 2),
-    )
-
-response = urllib2.urlopen('http://sqlformat.appspot.com/format/',
-                           urllib.urlencode(payload))
-print response.read()
-
-- cgit v1.2.1