├── .deepsource.toml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── dev ├── publish.cmd └── publish.sh ├── docs ├── api.md ├── conf.py ├── index.md └── supported.md ├── examples ├── player │ └── main.py └── server │ └── main.py ├── img └── jetbrains.png ├── librespot ├── __init__.py ├── audio │ ├── __init__.py │ ├── decoders.py │ ├── decrypt.py │ ├── format.py │ └── storage.py ├── cache.py ├── core.py ├── crypto.py ├── dealer.py ├── mercury.py ├── metadata.py ├── oauth.py ├── proto │ ├── Authentication_pb2.py │ ├── CanvazMeta_pb2.py │ ├── Canvaz_pb2.py │ ├── ClientToken_pb2.py │ ├── Connect_pb2.py │ ├── Connectivity_pb2.py │ ├── ContextPage_pb2.py │ ├── ContextPlayerOptions_pb2.py │ ├── ContextTrack_pb2.py │ ├── Context_pb2.py │ ├── EntityExtensionData_pb2.py │ ├── ExplicitContentPubsub_pb2.py │ ├── ExtendedMetadata_pb2.py │ ├── ExtensionKind_pb2.py │ ├── Keyexchange_pb2.py │ ├── Mercury_pb2.py │ ├── Metadata_pb2.py │ ├── PlayOrigin_pb2.py │ ├── Playback_pb2.py │ ├── Player_pb2.py │ ├── Playlist4External_pb2.py │ ├── PlaylistAnnotate3_pb2.py │ ├── Pubsub_pb2.py │ ├── Queue_pb2.py │ ├── Restrictions_pb2.py │ ├── Session_pb2.py │ ├── StorageResolve_pb2.py │ ├── TransferState_pb2.py │ ├── __init__.py │ └── spotify │ │ ├── __init__.py │ │ └── login5 │ │ ├── __init__.py │ │ └── v3 │ │ ├── ClientInfo_pb2.py │ │ ├── Login5_pb2.py │ │ ├── UserInfo_pb2.py │ │ ├── __init__.py │ │ ├── challenges │ │ ├── Code_pb2.py │ │ ├── Hashcash_pb2.py │ │ └── __init__.py │ │ ├── credentials │ │ ├── Credentials_pb2.py │ │ └── __init__.py │ │ └── identifiers │ │ ├── Identifiers_pb2.py │ │ └── __init__.py ├── structure.py ├── util.py └── zeroconf.py ├── librespot_player └── __init__.py ├── proto ├── authentication.proto ├── canvaz-meta.proto ├── canvaz.proto ├── client_token.proto ├── connect.proto ├── connectivity.proto ├── context.proto ├── context_page.proto ├── context_player_options.proto ├── context_track.proto ├── entity_extension_data.proto ├── explicit_content_pubsub.proto ├── extended_metadata.proto ├── extension_kind.proto ├── keyexchange.proto ├── mercury.proto ├── metadata.proto ├── play_origin.proto ├── playback.proto ├── player.proto ├── playlist4_external.proto ├── playlist_annotate3.proto ├── pubsub.proto ├── queue.proto ├── restrictions.proto ├── session.proto ├── spotify │ └── login5 │ │ └── v3 │ │ ├── challenges │ │ ├── code.proto │ │ └── hashcash.proto │ │ ├── client_info.proto │ │ ├── credentials │ │ └── credentials.proto │ │ ├── identifiers │ │ └── identifiers.proto │ │ ├── login5.proto │ │ └── user_info.proto ├── storage-resolve.proto └── transfer_state.proto ├── requirements.txt ├── setup.py └── sider.yml /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dev/publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/dev/publish.cmd -------------------------------------------------------------------------------- /dev/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/dev/publish.sh -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- 1 | # API Reference -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/supported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/docs/supported.md -------------------------------------------------------------------------------- /examples/player/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/examples/player/main.py -------------------------------------------------------------------------------- /examples/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/examples/server/main.py -------------------------------------------------------------------------------- /img/jetbrains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/img/jetbrains.png -------------------------------------------------------------------------------- /librespot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/__init__.py -------------------------------------------------------------------------------- /librespot/audio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/audio/__init__.py -------------------------------------------------------------------------------- /librespot/audio/decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/audio/decoders.py -------------------------------------------------------------------------------- /librespot/audio/decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/audio/decrypt.py -------------------------------------------------------------------------------- /librespot/audio/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/audio/format.py -------------------------------------------------------------------------------- /librespot/audio/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/audio/storage.py -------------------------------------------------------------------------------- /librespot/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/cache.py -------------------------------------------------------------------------------- /librespot/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/core.py -------------------------------------------------------------------------------- /librespot/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/crypto.py -------------------------------------------------------------------------------- /librespot/dealer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/dealer.py -------------------------------------------------------------------------------- /librespot/mercury.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/mercury.py -------------------------------------------------------------------------------- /librespot/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/metadata.py -------------------------------------------------------------------------------- /librespot/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/oauth.py -------------------------------------------------------------------------------- /librespot/proto/Authentication_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Authentication_pb2.py -------------------------------------------------------------------------------- /librespot/proto/CanvazMeta_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/CanvazMeta_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Canvaz_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Canvaz_pb2.py -------------------------------------------------------------------------------- /librespot/proto/ClientToken_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/ClientToken_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Connect_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Connect_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Connectivity_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Connectivity_pb2.py -------------------------------------------------------------------------------- /librespot/proto/ContextPage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/ContextPage_pb2.py -------------------------------------------------------------------------------- /librespot/proto/ContextPlayerOptions_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/ContextPlayerOptions_pb2.py -------------------------------------------------------------------------------- /librespot/proto/ContextTrack_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/ContextTrack_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Context_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Context_pb2.py -------------------------------------------------------------------------------- /librespot/proto/EntityExtensionData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/EntityExtensionData_pb2.py -------------------------------------------------------------------------------- /librespot/proto/ExplicitContentPubsub_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/ExplicitContentPubsub_pb2.py -------------------------------------------------------------------------------- /librespot/proto/ExtendedMetadata_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/ExtendedMetadata_pb2.py -------------------------------------------------------------------------------- /librespot/proto/ExtensionKind_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/ExtensionKind_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Keyexchange_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Keyexchange_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Mercury_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Mercury_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Metadata_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Metadata_pb2.py -------------------------------------------------------------------------------- /librespot/proto/PlayOrigin_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/PlayOrigin_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Playback_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Playback_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Player_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Player_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Playlist4External_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Playlist4External_pb2.py -------------------------------------------------------------------------------- /librespot/proto/PlaylistAnnotate3_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/PlaylistAnnotate3_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Pubsub_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Pubsub_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Queue_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Queue_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Restrictions_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Restrictions_pb2.py -------------------------------------------------------------------------------- /librespot/proto/Session_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/Session_pb2.py -------------------------------------------------------------------------------- /librespot/proto/StorageResolve_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/StorageResolve_pb2.py -------------------------------------------------------------------------------- /librespot/proto/TransferState_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/TransferState_pb2.py -------------------------------------------------------------------------------- /librespot/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librespot/proto/spotify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/v3/ClientInfo_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/spotify/login5/v3/ClientInfo_pb2.py -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/v3/Login5_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/spotify/login5/v3/Login5_pb2.py -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/v3/UserInfo_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/spotify/login5/v3/UserInfo_pb2.py -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/v3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/v3/challenges/Code_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/spotify/login5/v3/challenges/Code_pb2.py -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/v3/challenges/Hashcash_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/spotify/login5/v3/challenges/Hashcash_pb2.py -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/v3/challenges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/v3/credentials/Credentials_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/spotify/login5/v3/credentials/Credentials_pb2.py -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/v3/credentials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/v3/identifiers/Identifiers_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/proto/spotify/login5/v3/identifiers/Identifiers_pb2.py -------------------------------------------------------------------------------- /librespot/proto/spotify/login5/v3/identifiers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librespot/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/structure.py -------------------------------------------------------------------------------- /librespot/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/util.py -------------------------------------------------------------------------------- /librespot/zeroconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot/zeroconf.py -------------------------------------------------------------------------------- /librespot_player/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/librespot_player/__init__.py -------------------------------------------------------------------------------- /proto/authentication.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/authentication.proto -------------------------------------------------------------------------------- /proto/canvaz-meta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/canvaz-meta.proto -------------------------------------------------------------------------------- /proto/canvaz.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/canvaz.proto -------------------------------------------------------------------------------- /proto/client_token.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/client_token.proto -------------------------------------------------------------------------------- /proto/connect.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/connect.proto -------------------------------------------------------------------------------- /proto/connectivity.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/connectivity.proto -------------------------------------------------------------------------------- /proto/context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/context.proto -------------------------------------------------------------------------------- /proto/context_page.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/context_page.proto -------------------------------------------------------------------------------- /proto/context_player_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/context_player_options.proto -------------------------------------------------------------------------------- /proto/context_track.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/context_track.proto -------------------------------------------------------------------------------- /proto/entity_extension_data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/entity_extension_data.proto -------------------------------------------------------------------------------- /proto/explicit_content_pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/explicit_content_pubsub.proto -------------------------------------------------------------------------------- /proto/extended_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/extended_metadata.proto -------------------------------------------------------------------------------- /proto/extension_kind.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/extension_kind.proto -------------------------------------------------------------------------------- /proto/keyexchange.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/keyexchange.proto -------------------------------------------------------------------------------- /proto/mercury.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/mercury.proto -------------------------------------------------------------------------------- /proto/metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/metadata.proto -------------------------------------------------------------------------------- /proto/play_origin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/play_origin.proto -------------------------------------------------------------------------------- /proto/playback.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/playback.proto -------------------------------------------------------------------------------- /proto/player.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/player.proto -------------------------------------------------------------------------------- /proto/playlist4_external.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/playlist4_external.proto -------------------------------------------------------------------------------- /proto/playlist_annotate3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/playlist_annotate3.proto -------------------------------------------------------------------------------- /proto/pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/pubsub.proto -------------------------------------------------------------------------------- /proto/queue.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/queue.proto -------------------------------------------------------------------------------- /proto/restrictions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/restrictions.proto -------------------------------------------------------------------------------- /proto/session.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/session.proto -------------------------------------------------------------------------------- /proto/spotify/login5/v3/challenges/code.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/spotify/login5/v3/challenges/code.proto -------------------------------------------------------------------------------- /proto/spotify/login5/v3/challenges/hashcash.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/spotify/login5/v3/challenges/hashcash.proto -------------------------------------------------------------------------------- /proto/spotify/login5/v3/client_info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/spotify/login5/v3/client_info.proto -------------------------------------------------------------------------------- /proto/spotify/login5/v3/credentials/credentials.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/spotify/login5/v3/credentials/credentials.proto -------------------------------------------------------------------------------- /proto/spotify/login5/v3/identifiers/identifiers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/spotify/login5/v3/identifiers/identifiers.proto -------------------------------------------------------------------------------- /proto/spotify/login5/v3/login5.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/spotify/login5/v3/login5.proto -------------------------------------------------------------------------------- /proto/spotify/login5/v3/user_info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/spotify/login5/v3/user_info.proto -------------------------------------------------------------------------------- /proto/storage-resolve.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/storage-resolve.proto -------------------------------------------------------------------------------- /proto/transfer_state.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/proto/transfer_state.proto -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/setup.py -------------------------------------------------------------------------------- /sider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokarare1212/librespot-python/HEAD/sider.yml --------------------------------------------------------------------------------