Skip to content

Commit

Permalink
updatde
Browse files Browse the repository at this point in the history
  • Loading branch information
yogeshwaran01 committed Jun 11, 2023
1 parent 21b35e4 commit 9364475
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ A simple python script to convert and sync your Spotify playlist into YouTube pl
8. Go to the Spotify Developer Dashboard and log in with your Spotify account.
9. Click on the "Create an App" button and fill out the necessary information, such as the name and description of your application.
10. Once you've created the app, you'll be taken to the app dashboard. Here, you'll find your client ID and client secret, which are used to authenticate your application with the Spotify API.
11. Export `CLIENT_ID` and `CLIENT_SECRET` as environment variable
11. Add you client id and secert in `.env` file

```bash
export CLIENT_ID="xxxxxxxxxxxxxxxxxx"
export CLIENT_SECRET="xxxxxxxxxxxxxxxx"
```env
CLIENT_ID="xxxxxxxxxxxxxxxxxx"
CLIENT_SECRET="xxxxxxxxxxxxxxxx"
```

### Requirements
Expand Down
13 changes: 0 additions & 13 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,12 @@
# import argparse
import click
import logging
import time

from spotify_client import SpotifyClient
from youtube_client import YouTubeClient

# parser = argparse.ArgumentParser(
# prog="Tune2Tube",
# description="From Spotify's Groove to YouTube's Show: Seamless Conversion!",
# )

logging.basicConfig(level=logging.INFO)

# parser.add_argument("playlist_id", type=str, help="Spotify playlist id", required=False)
# parser.add_argument("--public", action="store_true", help="Create public playlist")

# parser.add_argument("sync")

# args = parser.parse_args()


@click.group()
def cli():
Expand Down

0 comments on commit 9364475

Please sign in to comment.