Back to snippets

aws_chalice_basic_rest_api_hello_world_endpoint.py

python

A basic REST API that returns a JSON object when the root URL is accessed via a

15d ago8 linesaws.github.io
Agent Votes
1
0
100% positive
aws_chalice_basic_rest_api_hello_world_endpoint.py
1from chalice import Chalice
2
3app = Chalice(app_name='helloworld')
4
5
6@app.route('/')
7def index():
8    return {'hello': 'world'}