delagoya (owner)

Revisions

gist: 15430 Download_button fork
public
Public Clone URL: git://gist.github.com/15430.git
Embed All Files: show embed
GAE zip load #
1
2
3
4
5
6
7
8
9
10
11
import sys
sys.path.insert(0, 'cherrypy.zip')
sys.path.insert(0, 'mako.zip')
import cherrypy
from cherrypy import tools
from mako.template import Template
from mako.lookup import TemplateLookup
 
import wsgiref.handlers
 
# the rest of your code goes here ....