-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
54 lines (43 loc) · 837 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from fastapi import FastAPI
import random
api = FastAPI(
title="Mon API pour les fev22cde"
)
@api.get(
"/",
tags=["inutile", "hello world"],
responses={
200: {
"description": "Tout va bien !!!!"
}
})
def get_index():
"""FOnction qui ne fait pas grand grand chose
"""
print("Hello world")
return {
"Hello": "World"
}
@api.post("/mon_post")
def fonction1():
return {
"prediction": random.randint(0, 3)
}
@api.get("/health")
def ma_fonction():
return {
"status": 1
}
@api.delete("/users")
def delete_user():
return {
"action": "user deleted",
"user_id": random.randint(0, 10000)
}
@api.get("/bye")
def get_bye():
"""Fonction pour dire au revoir
"""
return {
"bye": "bye"
}