From 1733d6da0f4cda8d8bc25f2b043ce51c17044c42 Mon Sep 17 00:00:00 2001 From: Jan Wadolowski Date: Wed, 22 May 2024 02:35:47 +0200 Subject: [PATCH 1/2] docs: fix README with correct file name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3dd4dfa..aeeca86 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Inspired by [SpotifyGeneratePlaylist](https://github.com/TheComeUpCode/SpotifyGe ## Usage ### Spotify to Youtube - Generate Spotify OAuth Token and paste into a file called `secrets.py` -- Enable Oauth For Youtube and download the `client_secrets.json` +- Enable Oauth For Youtube and download the `client_secret.json` - Get a Spotify Playlist's URI (*Share* > *Copy Spotify URI*) - Run `python convert_playlist.py spotify:playlist:` - Click on displayed link to get authorization code From 60df5fdb931d28ccf0a358b179c5b7661e2659c8 Mon Sep 17 00:00:00 2001 From: Jan Wadolowski Date: Wed, 22 May 2024 02:36:53 +0200 Subject: [PATCH 2/2] style: remove unused import --- convert_playlist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert_playlist.py b/convert_playlist.py index 8e8881d..a5b7b5d 100644 --- a/convert_playlist.py +++ b/convert_playlist.py @@ -15,7 +15,7 @@ import googleapiclient.discovery import googleapiclient.errors -from secrets import spotify_token, spotify_user_id +from secrets import spotify_token class ConvertPlaylist():