The SDK is compiled by Python 3.6 and above
To install by source code, run below command
pip3 install novadax
In your python project, you can follow below steps:
- Create the client instance.
- Call the interfaces provided by client.
from novadax import RequestClient as NovaClient
nova_client = NovaClient('your access key(optional)', 'your secret key(optional)')
result = nova_client.get_timestamp()
print(result)
Please see our API documentation website.