Alexey
Alexey
I am using linux Fedora, I've faced the same problem. To make it work u should go to your `$GOPATH/src/github.com/nebulasio/go-nebulas` folder, and from there invoke dep. It should be in...
Please correct me if I am wrong, but as I see from the code - the `ThreadedWebsocketManager` is inherited from `ThreadedApiManager`, which is also inherited, from` threading.Thread`. So on creation...
> I would pay to have this fixed. I don't know what is your situation exactly, but the problem described by me above could be solved by replacing `self._loop: asyncio.AbstractEventLoop...
### Was able to fixed that issue by: replaced `self._handle_read_loop = self._loop.call_soon_threadsafe(asyncio.create_task, self._read_loop())` to `self._handle_read_loop = asyncio.create_task(self._read_loop())` in a file [binance/streams.py](https://github.com/sammchardy/python-binance/blob/master/binance/streams.py#L87), line 98 ### Full description - I did some...