make_accept_header¶
- lsst.verify.squash.make_accept_header(version=None)¶
Make the
Accept
HTTP header for versioned SQUASH API requests.- Parameters:
- version
str
, optional Semantic API version, such as
'1.0'
. By default, the API version this client is designed for is used (get_default_api_version
).
- version
- Returns:
- accept_header
str
The
Accept
header value.
- accept_header
Examples
>>> make_accept_header() 'application/json; version=1.0'