How to use novadax - 6 common examples

To help you get started, we’ve selected a few novadax examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github novadaxsdk / Python / tests / test_common_api.py View on Github external
def setUpClass(self):
        self.api = NovaClient(ACCESS_KEY, SECRET_KEY, url=API_URL)
github novadaxsdk / Python / tests / test_account_api.py View on Github external
def setUpClass(self):
        self.api = NovaClient(ACCESS_KEY, SECRET_KEY, url=API_URL)
github novadaxsdk / Python / tests / test_order_api.py View on Github external
def setUpClass(self):
        self.api = NovaClient(ACCESS_KEY, SECRET_KEY, url=API_URL)
        self.symbols_config = {}
        for symbol_config in self.api.list_symbols()['data']:
            self.symbols_config[symbol_config['symbol']] = symbol_config
github novadaxsdk / Python / tests / test_account_sub_api.py View on Github external
def setUpClass(self):
        self.api = NovaClient(ACCESS_KEY, SECRET_KEY, url=API_URL)
github novadaxsdk / Python / tests / test_market_api.py View on Github external
def setUpClass(self):
        self.api = NovaClient(ACCESS_KEY, SECRET_KEY, url=API_URL)
github novadaxsdk / Python / novadax / request_client.py View on Github external
def __init__(self, access_key=None, secret_key=None, url='https://api.novadax.com'):
        self._http = HTTPClient(url, access_key, secret_key)

novadax

NovaDAX API SDK

Unknown
Latest version published 2 years ago

Package Health Score

27 / 100
Full package analysis

Similar packages