Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa
/ endpoints
Endpoints
8 in github.com/PacktPublishing/Building-Serverless-Python-Web-Services-with-Zappa
⨍
Functions
262
◇
Types & classes
67
↳
Endpoints
8
Route
hello
app.route('/hello')
Chapter02/hello.py:None
Route
index
app.route('/')
Chapter03/hello_world.py:None
Route
list
todo.route('/', methods=['GET', 'POST'])
Chapter03/app/todo/views.py:None
Route
login
auth.route('/login', methods=['GET', 'POST'])
Chapter03/app/auth/views.py:None
Route
logout
auth.route('/logout')
Chapter03/app/auth/views.py:None
Route
remove
todo.route('/<todo_id>', methods=['DELETE'])
Chapter03/app/todo/views.py:None
Route
signup
auth.route('/signup', methods=['GET', 'POST'])
Chapter03/app/auth/views.py:None
Route
update
todo.route('/<todo_id>', methods=['PATCH'])
Chapter03/app/todo/views.py:None