List of encodings this client accepts. Encodings in a HTTP term are compression encodings such as gzip. For charsets have a look at :attr:`accept_charset`.
(self)
| 378 | |
| 379 | @cached_property |
| 380 | def accept_encodings(self) -> Accept: |
| 381 | """List of encodings this client accepts. Encodings in a HTTP term |
| 382 | are compression encodings such as gzip. For charsets have a look at |
| 383 | :attr:`accept_charset`. |
| 384 | """ |
| 385 | return parse_accept_header(self.headers.get("Accept-Encoding")) |
| 386 | |
| 387 | @cached_property |
| 388 | def accept_languages(self) -> LanguageAccept: |
nothing calls this directly
no test coverage detected