:rtype: requests.structures.CaseInsensitiveDict
()
| 949 | |
| 950 | |
| 951 | def default_headers() -> CaseInsensitiveDict[str]: |
| 952 | """ |
| 953 | :rtype: requests.structures.CaseInsensitiveDict |
| 954 | """ |
| 955 | return CaseInsensitiveDict( |
| 956 | { |
| 957 | "User-Agent": default_user_agent(), |
| 958 | "Accept-Encoding": DEFAULT_ACCEPT_ENCODING, |
| 959 | "Accept": "*/*", |
| 960 | "Connection": "keep-alive", |
| 961 | } |
| 962 | ) |
| 963 | |
| 964 | |
| 965 | def parse_header_links(value: str) -> list[dict[str, str]]: |
no test coverage detected