├── .Dockerignore ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── dev-requirements.txt ├── setup.py ├── spotifyconnect ├── __init__.py ├── _spotifyconnect_build.py ├── _zeroconfserver.py ├── audio.py ├── config.py ├── connection.py ├── error.py ├── eventloop.py ├── metadata.py ├── player.py ├── session.py ├── sink.py ├── spotify.armv6l.h ├── spotify.armv7l.h ├── spotify.processed.armv6l.h ├── spotify.processed.armv7l.h ├── utils.py └── zeroconf.py ├── tasks.py ├── tests ├── __init__.py ├── test_audio.py ├── test_build.py ├── test_config.py ├── test_connection.py ├── test_error.py ├── test_eventloop.py ├── test_metadata.py ├── test_player.py ├── test_session.py ├── test_sink.py ├── test_utils.py ├── test_zeroconf.py └── test_zeroconfserver.py └── tox.ini /.Dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .tox 3 | build 4 | daemons 5 | dist 6 | *.egg-info 7 | Dockerfile* 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/setup.py -------------------------------------------------------------------------------- /spotifyconnect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/__init__.py -------------------------------------------------------------------------------- /spotifyconnect/_spotifyconnect_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/_spotifyconnect_build.py -------------------------------------------------------------------------------- /spotifyconnect/_zeroconfserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/_zeroconfserver.py -------------------------------------------------------------------------------- /spotifyconnect/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/audio.py -------------------------------------------------------------------------------- /spotifyconnect/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/config.py -------------------------------------------------------------------------------- /spotifyconnect/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/connection.py -------------------------------------------------------------------------------- /spotifyconnect/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/error.py -------------------------------------------------------------------------------- /spotifyconnect/eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/eventloop.py -------------------------------------------------------------------------------- /spotifyconnect/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/metadata.py -------------------------------------------------------------------------------- /spotifyconnect/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/player.py -------------------------------------------------------------------------------- /spotifyconnect/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/session.py -------------------------------------------------------------------------------- /spotifyconnect/sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/sink.py -------------------------------------------------------------------------------- /spotifyconnect/spotify.armv6l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/spotify.armv6l.h -------------------------------------------------------------------------------- /spotifyconnect/spotify.armv7l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/spotify.armv7l.h -------------------------------------------------------------------------------- /spotifyconnect/spotify.processed.armv6l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/spotify.processed.armv6l.h -------------------------------------------------------------------------------- /spotifyconnect/spotify.processed.armv7l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/spotify.processed.armv7l.h -------------------------------------------------------------------------------- /spotifyconnect/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/utils.py -------------------------------------------------------------------------------- /spotifyconnect/zeroconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/spotifyconnect/zeroconf.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_audio.py -------------------------------------------------------------------------------- /tests/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_build.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_connection.py -------------------------------------------------------------------------------- /tests/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_error.py -------------------------------------------------------------------------------- /tests/test_eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_eventloop.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_player.py -------------------------------------------------------------------------------- /tests/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_session.py -------------------------------------------------------------------------------- /tests/test_sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_sink.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_zeroconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_zeroconf.py -------------------------------------------------------------------------------- /tests/test_zeroconfserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tests/test_zeroconfserver.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chukysoria/pyspotify-connect/HEAD/tox.ini --------------------------------------------------------------------------------