A very basic set of API functions to be used with Bittrex API v3. Only covers the bare minimum required to setup a simple bot or controls. No tests and haven't tested if install grabs dependencies after splitting off of main bot project. See EOF for very short dependency list.
btxConn = BittrexConnection(apiKey, apiSecret, apiBaseURL='https://api.bittrex.com/v3')
Here are available methods including any optional args defaults.
btxConn.get_current_fee_rate()
get_any(uriEnding, content='')
btxConn.place_order(
marketSymbol,
direction,
orderLimit='',
quantity='',
orderType='LIMIT',
ceiling='',
timeInForce='GOOD_TIL_CANCELLED',
clientOrderId='',
useAwards='FALSE',
content = ""
)
btxConn.delete_order(uuid)