werkzeug.create_environ¶
-
werkzeug.create_environ(*args, **kwargs)[source]¶ Create a new WSGI environ dict based on the values passed. The first parameter should be the path of the request which defaults to ‘/’. The second one can either be an absolute path (in that case the host is localhost:80) or a full path to the request with scheme, netloc port and the path to the script.
This accepts the same arguments as the
EnvironBuilderconstructor.Changed in version 0.5: This function is now a thin wrapper over
EnvironBuilderwhich was added in 0.5. The headers, environ_base, environ_overrides and charset parameters were added.