Title
Example fetch_public_data.py fails to start: ModuleNotFoundError: No module named 'websockets' in binance
Describe the bug
When running the simplest example from the README, the program fails due to a missing dependency in the Binance connector — websockets is not found.
Environment
To Reproduce
python example/fetch_public_data.py
Actual behavior
ModuleNotFoundError: No module named 'websockets'
Error occurs inside the binance connector module.
Expected behavior
Example should start without missing dependency errors, fetch some public data, and print/stream results.
Additional context
It seems websockets is not listed in the project's install_requires or extras_require for Binance usage. Possibly needs to be added to dependencies or documented as a requirement for users running this example.
Title
Example
fetch_public_data.pyfails to start:ModuleNotFoundError: No module named 'websockets'inbinanceDescribe the bug
When running the simplest example from the README, the program fails due to a missing dependency in the Binance connector —
websocketsis not found.Environment
OS: Ubuntu (latest)
Python version:
Installation method:
(installed with all optional dependencies listed in README)
To Reproduce
Actual behavior
Error occurs inside the
binanceconnector module.Expected behavior
Example should start without missing dependency errors, fetch some public data, and print/stream results.
Additional context
It seems
websocketsis not listed in the project'sinstall_requiresorextras_requirefor Binance usage. Possibly needs to be added to dependencies or documented as a requirement for users running this example.