Files
httpbin/httpbin/structures.py
T
2016-01-08 22:52:46 +08:00

28 lines
681 B
Python

# -*- coding: utf-8 -*-
"""
httpbin.structures
~~~~~~~~~~~~~~~~~~~
Data structures that power httpbin.
"""
class CaseInsensitiveDict(dict):
"""Case-insensitive Dictionary for headers.
For example, ``headers['content-encoding']`` will return the
value of a ``'Content-Encoding'`` response header.
"""
def _lower_keys(self):
return [k.lower() for k in self.keys()]
def __contains__(self, key):
return key.lower() in self._lower_keys()
def __getitem__(self, key):
# We allow fall-through here, so values default to None
if key in self:
return list(self.items())[self._lower_keys().index(key.lower())][1]