I'm writing a Flask app, and I want to avoid manually writing HTTP response header names, for obvious reasons.
Is there a list of standard HTTP header names in the stdlib (or in Flask), that I could import - so that I avoid writing stuff like this:
response.headers['Content-Type'] = ...
http, since it already has theHTTPStatuslist - but nope. It's weird.