$ pip install bitmex-websocket
- First you should set your BITMEX_API_KEY and BITMEX_API_SECRET. It can be done as follows:
$ cp .env.example .env
# edit .env to reflect your API key and secret
$ source .env
- Then in your project you can consume Instrument as follows:
import websocket
from bitmex_websocket import Instrument
from bitmex_websocket.constants import InstrumentChannels
websocket.enableTrace(True)
channels = [
InstrumentChannels.quote,
InstrumentChannels.trade,
InstrumentChannels.orderBookL2
]
XBTUSD = Instrument(symbol='XBTUSD',
channels=channels)
XBTUSD.on('action', lambda msg: print(message))
XBTUSD.run_forever()
Run example scripts:
$ RUN_ENV=development python -m ./examples/example-2.py
Testing is set up using pytest <http://pytest.org> and coverage is handled with the pytest-cov plugin.
Run your tests with pytest in the root directory.
Coverage is ran by default and is set in the pytest.ini file. To see an html output of coverage open htmlcov/index.html after running the tests.