David Findlay
David Findlay
`from bittrex_websocket.websocket_client import BittrexSocket from time import sleep def main(): class MySocket(BittrexSocket): def on_public(self, msg): name = msg['M'] if name not in ticker_updates_container: ticker_updates_container[name] = msg print('Just received market update...
I've just updated to 1.0.6.2 today from pip. I'm not currently passing any SSL params, so I've just copied the code from the first example here under quick start: https://github.com/slazarov/python-bittrex-websocket...
Just looking to try to do that. Looking at trying to install the extra in case it wasn't there: ` Requirement already satisfied: requests[security] in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages (2.19.1) Requirement already satisfied:...
Just set up a clean new install in a fresh venv, same issue: ``` (venv) Davids-MacBook-Pro:accounting david$ python market_monitor.py 2018-08-30 17:25:50 - bittrex_websocket.websocket_client - INFO - Establishing connection to Bittrex...
That worked. The one thing I had to do that wasn't in your instructions was pip install bittrex_websocket. After doing that, I got this: ``` (venv) Davids-MacBook-Pro:test david$ python ticker_updates.py...
I've not yet solved this, but I've noted something towards it. The virtualenv command seems to have set up a python 2.7 environment, and then doing pip install bittrex-websocket installed...