├── .gitignore ├── poetry.lock ├── pyproject.toml ├── readme.md └── spotivents ├── __init__.py ├── auth.py ├── client.py ├── clustercls.py ├── constants.py ├── controller.py ├── optopt.py ├── simstate.py ├── streamer.py ├── utils.py └── ws.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/.gitignore -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/readme.md -------------------------------------------------------------------------------- /spotivents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/spotivents/__init__.py -------------------------------------------------------------------------------- /spotivents/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/spotivents/auth.py -------------------------------------------------------------------------------- /spotivents/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/spotivents/client.py -------------------------------------------------------------------------------- /spotivents/clustercls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/spotivents/clustercls.py -------------------------------------------------------------------------------- /spotivents/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/spotivents/constants.py -------------------------------------------------------------------------------- /spotivents/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/spotivents/controller.py -------------------------------------------------------------------------------- /spotivents/optopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/spotivents/optopt.py -------------------------------------------------------------------------------- /spotivents/simstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/spotivents/simstate.py -------------------------------------------------------------------------------- /spotivents/streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/spotivents/streamer.py -------------------------------------------------------------------------------- /spotivents/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/spotivents/utils.py -------------------------------------------------------------------------------- /spotivents/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justfoolingaround/spotivents/HEAD/spotivents/ws.py --------------------------------------------------------------------------------