├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.rst ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.rst ├── docs ├── Makefile ├── make.bat └── source │ ├── _templates │ ├── hacks.html │ ├── sidebarintro.html │ └── sidebarlogo.html │ ├── conf.py │ └── index.rst ├── news └── .gitignore ├── pyproject.toml ├── requirements.txt ├── setup.py ├── src └── spotify_local │ ├── __init__.py │ ├── config.py │ ├── core.py │ └── utils.py └── tests └── test_spotify_local.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_templates/hacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/docs/source/_templates/hacks.html -------------------------------------------------------------------------------- /docs/source/_templates/sidebarintro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/docs/source/_templates/sidebarintro.html -------------------------------------------------------------------------------- /docs/source/_templates/sidebarlogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/docs/source/_templates/sidebarlogo.html -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /news/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/setup.py -------------------------------------------------------------------------------- /src/spotify_local/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/src/spotify_local/__init__.py -------------------------------------------------------------------------------- /src/spotify_local/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/src/spotify_local/config.py -------------------------------------------------------------------------------- /src/spotify_local/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/src/spotify_local/core.py -------------------------------------------------------------------------------- /src/spotify_local/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/src/spotify_local/utils.py -------------------------------------------------------------------------------- /tests/test_spotify_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erinxocon/spotify-local/HEAD/tests/test_spotify_local.py --------------------------------------------------------------------------------