zalando/connexion

View on GitHub
connexion/http_facts.py

Summary

Maintainability
A
0 mins
Test Coverage
FORM_CONTENT_TYPES = [
    'application/x-www-form-urlencoded',
    'multipart/form-data'
]

METHODS = set([
    "get",
    "put",
    "post",
    "delete",
    "options",
    "head",
    "patch",
    "trace"
])