-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
48 lines (34 loc) · 1.12 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from typing import Union
from fastapi import FastAPI, HTTPException
from models.todo import Todo
app = FastAPI()
todos = []
@app.get("/")
async def read_root():
return {"Hello": "World"}
@app.post("/todo/")
async def create_todo(todo: Todo):
todos.append(todo)
return todo
@app.get("/todos/")
async def get_todos():
return todos
@app.get("/todo/{todo_title}/")
async def get_todo(todo_title: str):
for todo in todos:
if todo.title == todo_title:
return todo
raise HTTPException(status_code=404)
@app.put("/todos/{todo_title}/")
async def update_todo(todo_title: str, new_todo: Todo):
for todo in todos:
if todo.title == todo_title:
todo.title = new_todo.title
todo.description = new_todo.description
return todo
raise HTTPException(status_code=404, detail="Todo not found")
@app.delete("/todos/{todo_title}/")
async def delete_todo(todo_title: str):
global todos
todos = [todo for todo in todos if todo.title != todo_title]
return {"message": "Todo deleted successfully"}