-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
111 lines (78 loc) · 3.33 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
from contextlib import asynccontextmanager
from fastapi import FastAPI
import uvicorn
from core.config import settings
from api_v1 import router as router_v1
@asynccontextmanager
async def lifespan(app: FastAPI):
# async with db_helper.engine.begin() as conn:
# await conn.run_sync(Base.metadata.create_all)
yield
app = FastAPI(lifespan=lifespan)
app.include_router(router=router_v1, prefix=settings.api_v1_prefix)
@app.get("/")
def hello_index():
return {
"message": "Hello index!",
}
@app.get("/hello/")
def hello(name: str = "World"):
name = name.strip().title()
return {"message": f"Hello {name}!"}
if __name__ == "__main__":
uvicorn.run("main:app", reload=True)
# app = FastAPI(lifespan=lifespan)
# app.mount("/static", StaticFiles(directory="public"))
# @app.get("/")
# def main():
# return FileResponse("public/index.html")
# @app.get("/api/users")
# def get_people(db: Session = Depends(get_db)):
# return db.query(Person).all()
# @app.get("/api/users/{id}")
# def get_person(id, db: Session = Depends(get_db)):
# # получаем пользователя по id
# person = db.query(Person).filter(Person.id == id).first()
# # если не найден, отправляем статусный код и сообщение об ошибке
# if person is None:
# return JSONResponse(
# status_code=404, content={"message": "Пользователь не найден"}
# )
# # если пользователь найден, отправляем его
# return person
# @app.post("/api/users")
# def create_person(data=Body(), db: Session = Depends(get_db)):
# person = Person(name=data["name"], age=data["age"])
# db.add(person)
# db.commit()
# db.refresh(person)
# return person
# @app.put("/api/users")
# def edit_person(data = Body(), db: Session = Depends(get_db)):
# # получаем пользователя по id
# person = db.query(Person).filter(Person.id == data["id"]).first()
# # если не найден, отправляем статусный код и сообщение об ошибке
# if person == None:
# return JSONResponse(
# status_code=404, content={"message": "Пользователь не найден"}
# )
# # если пользователь найден,
# # изменяем его данные и отправляем обратно клиенту
# person.age = data["age"]
# person.name = data["name"]
# db.commit() # сохраняем изменения
# db.refresh(person)
# return person
# @app.delete("/api/users/{id}")
# def delete_person(id, db: Session = Depends(get_db)):
# # получаем пользователя по id
# person = db.query(Person).filter(Person.id == id).first()
# # если не найден, отправляем статусный код и сообщение об ошибке
# if person == None:
# return JSONResponse(
# status_code=404,
# content={"message": "Пользователь не найден"})
# # если пользователь найден, удаляем его
# db.delete(person) # удаляем объект
# db.commit() # сохраняем изменения
# return person