(
self,
http_client: FingerprintHttpClient | None = None,
settings: Settings | None = None,
)
| 47 | error_message: str |
| 48 | sess: str |
| 49 | raw: dict[str, Any] |
| 50 | |
| 51 | |
| 52 | class TencentCaptchaClient: |
| 53 | """Fetch Tencent captcha challenge metadata and image bytes.""" |
| 54 | |
| 55 | def __init__( |
| 56 | self, |
| 57 | http_client: FingerprintHttpClient | None = None, |
| 58 | settings: Settings | None = None, |
nothing calls this directly
no test coverage detected