HTTP 请求配置
| 22 | |
| 23 | @dataclass |
| 24 | class RequestConfig: |
| 25 | """HTTP 请求配置""" |
| 26 | timeout: int = 30 |
| 27 | max_retries: int = 3 |
| 28 | retry_delay: float = 1.0 |
| 29 | impersonate: str = "chrome" |
| 30 | verify_ssl: bool = True |
| 31 | follow_redirects: bool = True |
| 32 | |
| 33 | |
| 34 | class HTTPClientError(Exception): |