from bitmex import bitmex
import simplejson as json
api_key = '' # your api key
api_secret = '' # your api secret
client = bitmex(test=True, api_key=api_key, api_secret=api_secret)
a = client.Instrument.Instrument_get(filter=json.dumps({'symbol': 'XBTJPY'})).result()
print(a)
I still get that error (it comes seperate to the response tuple)
Using this in Python 3
I still get that error (it comes seperate to the response tuple)