-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
32 lines (24 loc) · 804 Bytes
/
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
import logging
from fastapi import FastAPI, Request, BackgroundTasks
from Controller import handler
app = FastAPI()
logging.basicConfig(filename="xqueue_fastapi.log",
filemode='a',
format='%(asctime)s,%(msecs)d %(name)s %(levelname)s %(message)s',
datefmt='%H:%M:%S',
level=logging.DEBUG)
logging.info("Running xqueue_fastapi")
@app.get("/")
def read_root():
return {"status": 1}
@app.post("/")
async def home(request: Request):
body = await request.body()
print(body.decode('utf-8'))
return {"status": 1}
@app.post("/submit")
async def submit(request: Request, bg: BackgroundTasks):
# body = await request.body()
# print(eval(body))
bg.add_task(handler.process)
return {"status": 1}