-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathapp.py
27 lines (21 loc) · 820 Bytes
/
app.py
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
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
from pygments import highlight
from pygments.lexers import get_lexer_by_name
from pygments.formatters import HtmlFormatter
class App(webapp.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write(open('README', 'r').read())
def post(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write(pygmentize(self.request.get("lang"), self.request.get("code")))
application = webapp.WSGIApplication([('/', App)])
def pygmentize(lang, code):
lexer = get_lexer_by_name(lang)
formatter = HtmlFormatter()
return highlight(code, lexer, formatter)
def main():
run_wsgi_app(application)
if __name__ == "__main__":
main()