Metadata-Version: 2.1
Name: youtubeSpotifyConverter
Version: 0.1.2
Summary: Convert between Spotify, YouTube and YouTube Music URLs
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE

# youtubeSpotifyConverter

A library that allows you to convert between Spotify, YouTube and YouTube Music URLs (only works on songs at the moment). 

Includes methods for basic calls to the YouTube and Spotify APIs.



## Installation

```

pip install youtubeSpotifyConverter

```



## Get started

How to convert a YouTube URL into a Spotify and YouTube Music URL

```Python

from youtubeSpotifyConverter import youtubeSpotifyConverter



# Instantiate a youtubeSpotifyConverter object

converter = youtubeSpotifyConverter([YOUTUBE_API_KEY], [SPOTIFY_CLIENT_ID], [SPOTIFY_CLIENT_SECRET])



# Call the C_fromLink method

links = converter.C_fromLink("Youtube/Youtube Music or Spotify URL")



# Call the C_fromTitle method

links = converter.C_fromTitle("Song Title")

```
