├── .env.sample ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature_request.md └── workflows │ └── build.yaml ├── .gitignore ├── .python-version ├── LICENSE.md ├── README.md ├── env.bat ├── media ├── app_ui.png ├── spotify_create_app.png ├── spotify_credentials.png ├── spotify_settings.png ├── spotify_ui.png ├── spotify_username.png └── youtube_ui.png ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── src └── ytm2spt │ ├── __init__.py │ ├── app_logger.py │ ├── cli.py │ ├── gui.py │ ├── spotify.py │ ├── transfer.py │ ├── utils.py │ └── youtube.py ├── uv.lock ├── windows-installer.iss ├── ytm2spt.py └── ytmusicapi.nuitka-package.config.yaml /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/README.md -------------------------------------------------------------------------------- /env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/env.bat -------------------------------------------------------------------------------- /media/app_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/media/app_ui.png -------------------------------------------------------------------------------- /media/spotify_create_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/media/spotify_create_app.png -------------------------------------------------------------------------------- /media/spotify_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/media/spotify_credentials.png -------------------------------------------------------------------------------- /media/spotify_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/media/spotify_settings.png -------------------------------------------------------------------------------- /media/spotify_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/media/spotify_ui.png -------------------------------------------------------------------------------- /media/spotify_username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/media/spotify_username.png -------------------------------------------------------------------------------- /media/youtube_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/media/youtube_ui.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/ytm2spt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/src/ytm2spt/__init__.py -------------------------------------------------------------------------------- /src/ytm2spt/app_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/src/ytm2spt/app_logger.py -------------------------------------------------------------------------------- /src/ytm2spt/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/src/ytm2spt/cli.py -------------------------------------------------------------------------------- /src/ytm2spt/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/src/ytm2spt/gui.py -------------------------------------------------------------------------------- /src/ytm2spt/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/src/ytm2spt/spotify.py -------------------------------------------------------------------------------- /src/ytm2spt/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/src/ytm2spt/transfer.py -------------------------------------------------------------------------------- /src/ytm2spt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/src/ytm2spt/utils.py -------------------------------------------------------------------------------- /src/ytm2spt/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/src/ytm2spt/youtube.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/uv.lock -------------------------------------------------------------------------------- /windows-installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/windows-installer.iss -------------------------------------------------------------------------------- /ytm2spt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/ytm2spt.py -------------------------------------------------------------------------------- /ytmusicapi.nuitka-package.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekmj303/ytm2spt/HEAD/ytmusicapi.nuitka-package.config.yaml --------------------------------------------------------------------------------