It appears Django has request.META: a dictionary of the request's headers in CAPITAL_UNDERSCORE format - like: "X_FORWARDED_FOR".
Is there a similar construct for Flask?
(I am aware of flask's request.headers (which contains headers in "x-forwarded-for" format))