Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
.. code-block:: sh
$ pip install bitmex-websocket
BITMEX_API_KEY
and BITMEX_API_SECRET
. It can
be done as follows:.. code-block:: sh
$ cp .env.example .env
# edit .env to reflect your API key and secret
$ source .env
2. Then in your project you can consume Instrument
as follows:
.. code-block:: python
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(msg))
XBTUSD.run_forever()
You may change the BASE_URL
by setting the BITMEX_BASE_URL
environment variable to:
https://testnet.bitmex.com/api/v1/
.
Run example scripts:
.. code-block:: sh
$ ./examples/example.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.
FAQs
Bitmex websocket API
We found that bitmex-websocket demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.