-
Notifications
You must be signed in to change notification settings - Fork 58
/
example.py
133 lines (94 loc) · 3.2 KB
/
example.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
from typing import Optional
from flask import Flask
from flask_pydantic import validate
from pydantic import BaseModel
app = Flask("flask_pydantic_app")
class RequestBodyModel(BaseModel):
name: str
nickname: Optional[str] = None
class QueryModel(BaseModel):
age: int
class FormModel(BaseModel):
name: str
nickname: Optional[str] = None
@app.route("/", methods=["GET"])
@validate()
def get(query: QueryModel):
age = query.age
return ResponseModel(age=age, id=0, name="abc", nickname="123")
"""
curl --location --request GET 'http://127.0.0.1:5000/'
curl --location --request GET 'http://127.0.0.1:5000/?ageeee=5'
curl --location --request GET 'http://127.0.0.1:5000/?age=abc'
curl --location --request GET 'http://127.0.0.1:5000/?age=5'
"""
class ResponseModel(BaseModel):
id: int
age: int
name: str
nickname: Optional[str] = None
@app.route("/character/<character_id>/", methods=["GET"])
@validate()
def get_character(character_id: int):
characters = [
ResponseModel(id=1, age=95, name="Geralt", nickname="White Wolf"),
ResponseModel(id=2, age=45, name="Triss Merigold", nickname="sorceress"),
ResponseModel(id=3, age=42, name="Julian Alfred Pankratz", nickname="Jaskier"),
ResponseModel(id=4, age=101, name="Yennefer", nickname="Yenn"),
]
try:
return characters[character_id]
except IndexError:
return {"error": "Not found"}, 400
"""
curl http://127.0.0.1:5000/character/2/ \
--header 'Content-Type: application/json'
"""
@app.route("/", methods=["POST"])
@validate()
def post(body: RequestBodyModel):
name = body.name
nickname = body.nickname
return ResponseModel(name=name, nickname=nickname, id=0, age=1000)
"""
curl --location --request POST 'http://127.0.0.1:5000/'
curl --location --request POST 'http://127.0.0.1:5000/' \
--header 'Content-Type: application/json' \
--data-raw '{'
curl --location --request POST 'http://127.0.0.1:5000/' \
--header 'Content-Type: application/json' \
--data-raw '{"nameee":123}'
curl --location --request POST 'http://127.0.0.1:5000/' \
--header 'Content-Type: application/json' \
--data-raw '{"name":123}'
"""
@app.route("/form", methods=["POST"])
@validate()
def form_post(form: FormModel):
name = form.name
nickname = form.nickname
return ResponseModel(name=name, nickname=nickname, id=0, age=1000)
"""
curl --location --request POST 'http://127.0.0.1:5000/form'
curl --location --request POST 'http://127.0.0.1:5000/form' \
-F name=123\
curl --location --request POST 'http://127.0.0.1:5000/form' \
-F name=some-name
"""
@app.route("/both", methods=["POST"])
@validate()
def get_and_post(body: RequestBodyModel, query: QueryModel):
name = body.name # From request body
nickname = body.nickname # From request body
age = query.age # from query parameters
return ResponseModel(age=age, name=name, nickname=nickname, id=0)
"""
curl --location --request POST 'http://127.0.0.1:5000/both' \
--header 'Content-Type: application/json' \
--data-raw '{"name":123}'
curl --location --request POST 'http://127.0.0.1:5000/both?age=40' \
--header 'Content-Type: application/json' \
--data-raw '{"name":123}'
"""
if __name__ == "__main__":
app.run()