(
self,
*,
settings: Settings | None = None,
http_client: FingerprintHttpClient | None = None,
)
| 40 | tdc_url: str |
| 41 | |
| 42 | def to_payload(self) -> dict[str, Any]: |
| 43 | return asdict(self) |
| 44 | |
| 45 | |
| 46 | class TencentTdcService: |
| 47 | """Fetch dynamic TDC script and collect browser fingerprint payload.""" |
| 48 | |
| 49 | def __init__( |
| 50 | self, |
| 51 | *, |
| 52 | settings: Settings | None = None, |
| 53 | http_client: FingerprintHttpClient | None = None, |
| 54 | ) -> None: |
nothing calls this directly
no test coverage detected