Skip to content

Instantly share code, notes, and snippets.

@jimrybarski
Created September 10, 2013 17:59
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 jimrybarski/6513103 to your computer and use it in GitHub Desktop.
Save jimrybarski/6513103 to your computer and use it in GitHub Desktop.
The main Bottle file
from bottle import route, default_app
app = application = default_app()
app.mount("/api", app)
@route('/')
def index():
return "Glorious success!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment