werkzeug.dump_header¶
-
werkzeug.
dump_header
(iterable, allow_token=True)[source]¶ Dump an HTTP header again. This is the reversal of
parse_list_header()
,parse_set_header()
andparse_dict_header()
. This also quotes strings that include an equals sign unless you pass it as dict of key, value pairs.>>> dump_header({'foo': 'bar baz'}) 'foo="bar baz"' >>> dump_header(('foo', 'bar baz')) 'foo, "bar baz"'
Parameters: - iterable – the iterable or dict of values to quote.
- allow_token – if set to False tokens as values are disallowed.
See
quote_header_value()
for more details.