class
Analyzer::Python::Sanic
- Analyzer::Python::Sanic
- Analyzer::Python::Python
- Analyzer
- Reference
- Object
Defined in:
analyzer/analyzers/python/sanic.crConstant Summary
-
REQUEST_PARAM_FIELDS =
{"args" => {["GET"], "query"}, "form" => {["POST", "PUT", "PATCH", "DELETE"], "form"}, "files" => {["POST", "PUT", "PATCH", "DELETE"], "form"}, "json" => {["POST", "PUT", "PATCH", "DELETE"], "json"}, "cookies" => {nil, "cookie"}, "headers" => {nil, "header"}}
-
Reference: https://sanic.readthedocs.io/en/stable/sanic/request.html
-
REQUEST_PARAM_TYPES =
{"query" => nil, "form" => ["POST", "PUT", "PATCH", "DELETE"], "json" => ["POST", "PUT", "PATCH", "DELETE"], "cookie" => nil, "header" => nil}