Method
__init__
(
self,
api_key: Optional[str] = None,
api_secret: Optional[str] = None,
requests_params: Optional[Dict[str, str]] = None,
tld: str = "com",
testnet: bool = False,
)
Source from the content-addressed store, hash-verified
| 438 | |
| 439 | class ThreadedDepthCacheManager(ThreadedApiManager): |
| 440 | def __init__( |
| 441 | self, |
| 442 | api_key: Optional[str] = None, |
| 443 | api_secret: Optional[str] = None, |
| 444 | requests_params: Optional[Dict[str, str]] = None, |
| 445 | tld: str = "com", |
| 446 | testnet: bool = False, |
| 447 | ): |
| 448 | super().__init__(api_key, api_secret, requests_params, tld, testnet) |
| 449 | |
| 450 | def _start_depth_cache( |
| 451 | self, |
Callers
nothing calls this directly
Tested by
no test coverage detected