(self, api_key, secret_key, passphrase)
| 8 | class CBProAuth(AuthBase): |
| 9 | # Provided by CBPro: https://docs.pro.coinbase.com/#signing-a-message |
| 10 | def __init__(self, api_key, secret_key, passphrase): |
| 11 | self.api_key = api_key |
| 12 | self.secret_key = secret_key |
| 13 | self.passphrase = passphrase |
| 14 | |
| 15 | def __call__(self, request): |
| 16 | timestamp = str(time.time()) |
nothing calls this directly
no outgoing calls
no test coverage detected