.client
Creates a client that authenticates subsequent API requests with the supplied API key.
Example
from velodata import lib as velo
client = velo.client('api_key', retry=2)Parameters
key
- Type:
str
Velo API key.
retry
- Type:
int - Optional
- Default:
2
Number of retries for server errors.
Return type
velodata.lib.client
Returns an authenticated client instance.