Photo by John Tekeridis: https://www.pexels.com/photo/person-using-smartphone-340103/

Spotify to MP3 using Python

Francis Salazar

March 10, 2023

In today's digital age, music has become more accessible than ever before. Streaming services like Spotify have made it easy to listen to millions of songs from anywhere in the world. However, the downside of this convenience is that you need a stable internet connection to stream your favorite songs. Additionally, if you want to share your favorite tracks with friends or listen to them offline, you need to download them or pay a monthly subscription. And since I'm a cheapskate, I choose the hard way.

I had this idea while traveling to my school, and I have no mobile data available, so I can't stream my favorite music while on the road using Spotify. And since I'm lazy about downloading and searching my songs on YouTube and downloading them on a YouTube to MP3 website, I just created this Python script. Instead of taking around fifteen minutes to download all the songs on my playlist, I choose to develop this program and, it took me around two hours of reading the documentation of the API that I used, thirty minutes to code, and one and a half hours of debugging.

The three major APIs that I used in this project are the following: spotipy, pytube, and youtubesearchpython. Basically, the flow of the script is just to fetch the data from Spotify by asking the user for their playlist and pasting the link to the prompt. Afterward, the script will automatically search for the songs on YouTube. The data from the searched songs will be filtered and the script will only take the link of the song and pass it to the pytube to download it. The script also automatically creates a folder based on the name of the playlist and will redirect the download to the default Music Folder.

Screenshot of the Script when asking the user to enter the link of the playlist
Figure 1. Screenshot of the script running from the Terminal.

Below is the code for this project.

Figure 2. Code Snippet of the Spotify to MP3 downloader using Python.