├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── example_config.yml ├── pyproject.toml ├── pytest.ini ├── readme.md ├── src └── spotify_to_tidal │ ├── __main__.py │ ├── auth.py │ ├── cache.py │ ├── sync.py │ ├── tidalapi_patch.py │ └── type │ ├── __init__.py │ ├── config.py │ └── spotify.py └── tests ├── conftest.py └── unit ├── __init__.py ├── test_auth.py └── test_cache.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/LICENSE -------------------------------------------------------------------------------- /example_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/example_config.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/pytest.ini -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/readme.md -------------------------------------------------------------------------------- /src/spotify_to_tidal/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/src/spotify_to_tidal/__main__.py -------------------------------------------------------------------------------- /src/spotify_to_tidal/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/src/spotify_to_tidal/auth.py -------------------------------------------------------------------------------- /src/spotify_to_tidal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/src/spotify_to_tidal/cache.py -------------------------------------------------------------------------------- /src/spotify_to_tidal/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/src/spotify_to_tidal/sync.py -------------------------------------------------------------------------------- /src/spotify_to_tidal/tidalapi_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/src/spotify_to_tidal/tidalapi_patch.py -------------------------------------------------------------------------------- /src/spotify_to_tidal/type/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/src/spotify_to_tidal/type/__init__.py -------------------------------------------------------------------------------- /src/spotify_to_tidal/type/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/src/spotify_to_tidal/type/config.py -------------------------------------------------------------------------------- /src/spotify_to_tidal/type/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/src/spotify_to_tidal/type/spotify.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/tests/unit/test_auth.py -------------------------------------------------------------------------------- /tests/unit/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify2tidal/spotify_to_tidal/HEAD/tests/unit/test_cache.py --------------------------------------------------------------------------------