mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 03:00:11 +00:00
21 lines
511 B
Python
21 lines
511 B
Python
"""OpenAPI core content models module"""
|
|
import fnmatch
|
|
|
|
from six import iteritems
|
|
|
|
from openapi_core.schema.content.exceptions import MimeTypeNotFound
|
|
|
|
|
|
class Content(dict):
|
|
|
|
def __getitem__(self, mimetype):
|
|
try:
|
|
return super(Content, self).__getitem__(mimetype)
|
|
except KeyError:
|
|
pass
|
|
|
|
for key, value in iteritems(self):
|
|
if fnmatch.fnmatch(mimetype, key):
|
|
return value
|
|
|
|
raise MimeTypeNotFound(mimetype, list(self.keys()))
|