Skip to content

Instantly share code, notes, and snippets.

@philippbosch
Last active July 19, 2016 08:54
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 philippbosch/de8814d92915d848adf1b148964c1bc8 to your computer and use it in GitHub Desktop.
Save philippbosch/de8814d92915d848adf1b148964c1bc8 to your computer and use it in GitHub Desktop.
Chalice Hello World
from chalice import Chalice
app = Chalice(app_name='mp3duration')
@app.route('/')
def index():
return {'hello': 'world'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment