OpenAPI¶
get_argument(argument_type, argument_name)
¶
Make argument from given type and name.
Source code in apiflask/openapi.py
145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
get_auth_name(auth, auth_names)
¶
Get auth name from auth object.
Source code in apiflask/openapi.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
|
get_operation_tags(blueprint, blueprint_name)
¶
Get operation tag from blueprint object.
Source code in apiflask/openapi.py
47 48 49 50 51 52 53 54 55 56 57 |
|
get_path_description(func)
¶
Get path description from the docstring of the view function.
Source code in apiflask/openapi.py
136 137 138 139 140 141 142 |
|
get_path_summary(func, fallback=None)
¶
Get path summary from the name or docstring of the view function.
Source code in apiflask/openapi.py
123 124 125 126 127 128 129 130 131 132 133 |
|
get_security_and_security_schemes(auth_names, auth_schemes)
¶
Make security and security schemes from given auth names and schemes.
Source code in apiflask/openapi.py
109 110 111 112 113 114 115 116 117 118 119 120 |
|
get_security_scheme(auth)
¶
Get security scheme from auth object.
Source code in apiflask/openapi.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
|
get_tag(blueprint, blueprint_name)
¶
Get tag from blueprint object.
Source code in apiflask/openapi.py
34 35 36 37 38 39 40 41 42 43 44 |
|