Skip to content

Instantly share code, notes, and snippets.

@victorhaggqvist
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save victorhaggqvist/a4103278d0a2f9b8372b to your computer and use it in GitHub Desktop.
Save victorhaggqvist/a4103278d0a2f9b8372b to your computer and use it in GitHub Desktop.
Bottle Google App Engine template
#!/usr/bin/env python
# coding=utf-8
import sys
sys.path.insert(0, 'lib')
from bottle import Bottle, debug
bottle = Bottle()
debug(True)
@bottle.get('/foo')
def foo():
return 'bar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment