Request 超时配置。
| 14 | |
| 15 | @dataclass |
| 16 | class Timeout: |
| 17 | """Request 超时配置。""" |
| 18 | |
| 19 | total: float | None | UnsetType = UNSET |
| 20 | connect: float | None | UnsetType = UNSET |
| 21 | read: float | None | UnsetType = UNSET |
| 22 | close: float | None | UnsetType = UNSET |
| 23 | |
| 24 | |
| 25 | DEFAULT_TIMEOUT = Timeout(total=None, connect=5.0, read=30.0, close=10.0) |
no outgoing calls