Skip to content

Instantly share code, notes, and snippets.

@mjdargen
Last active April 21, 2022 15:14
Show Gist options
  • Save mjdargen/20e13e311f73ad99a9104252507886c3 to your computer and use it in GitHub Desktop.
Save mjdargen/20e13e311f73ad99a9104252507886c3 to your computer and use it in GitHub Desktop.
spotipy starter
import os
import spotipy
from spotipy.oauth2 import SpotifyClientCredentials
from dotenv import load_dotenv
load_dotenv()
artist = 'Taylor Swift'
# load credentials
credentials = SpotifyClientCredentials(
client_id=os.getenv('SPOTIFY_CLIENT_ID'),
client_secret=os.getenv('SPOTIFY_CLIENT_SECRET')
)
spotify = spotipy.Spotify(client_credentials_manager=credentials)
f = open(f'{artist}.txt', 'w')
# search for artist
results = spotify.search(q='artist:' + artist, type='artist')
artists = results['artists']['items']
artist_id = artists[0]['id']
artist_info = ['genres', 'followers', 'popularity', 'id']
f.write(f"{artists[0]['name']}\n")
for a in artist_info:
if a == 'followers':
f.write(f"{a.title()}: {artists[0][a]['total']}\n")
else:
f.write(f"{a.title()}: {artists[0][a]}\n")
f.write('\n')
# get albums - not appears_on or compilation
results = spotify.artist_albums(artist_id, album_type='album')
albums = results['items']
results = spotify.artist_albums(artist_id, album_type='single')
albums.extend(results['items'])
# retrieve all tracks
tracks = []
for album in albums:
album_id = album['id']
results = spotify.album_tracks(album_id)
tracks.extend(results['items'])
# for t in tracks:
# print(t['name'])
features = '''
acousticness - A confidence measure from 0.0 to 1.0 of whether the track is acoustic. 1.0 represents high confidence the track is acoustic.
danceability - Danceability describes how suitable a track is for dancing based on a combination of musical elements including tempo, rhythm stability, beat strength, and overall regularity. A value of 0.0 is least danceable and 1.0 is most danceable.
energy - Energy is a measure from 0.0 to 1.0 and represents a perceptual measure of intensity and activity. Typically, energetic tracks feel fast, loud, and noisy. For example, death metal has high energy, while a Bach prelude scores low on the scale. Perceptual features contributing to this attribute include dynamic range, perceived loudness, timbre, onset rate, and general entropy.
instrumentalness - Predicts whether a track contains no vocals. “Ooh” and “aah” sounds are treated as instrumental in this context. Rap or spoken word tracks are clearly “vocal”. The closer the instrumentalness value is to 1.0, the greater likelihood the track contains no vocal content. Values above 0.5 are intended to represent instrumental tracks, but confidence is higher as the value approaches 1.0.
key - The key the track is in.
liveness - Detects the presence of an audience in the recording. Higher liveness values represent an increased probability that the track was performed live. A value above 0.8 provides strong likelihood that the track is live.
loudness - The overall loudness of a track in decibels (dB). Loudness values are averaged across the entire track and are useful for comparing relative loudness of tracks. Loudness is the quality of a sound that is the primary psychological correlate of physical strength (amplitude). Values typical range between -60 and 0 db.
mode - Mode indicates the modality (major or minor) of a track, the type of scale from which its melodic content is derived. Major is represented by 1 and minor is 0.
speechiness - Speechiness detects the presence of spoken words in a track. The more exclusively speech-like the recording (e.g. talk show, audio book), the closer to 1.0 the attribute value. Values above 0.66 describe tracks that are probably made entirely of spoken words. Values between 0.33 and 0.66 describe tracks that may contain both music and speech, either in sections or layered, including such cases as rap music. Values below 0.33 most likely represent music and other non-speech-like tracks.
tempo - The overall estimated tempo of a track in beats per minute (BPM). In musical terminology, tempo is the speed or pace of a given piece and derives directly from the average beat duration.
time_signature - An estimated overall time signature of a track. The time signature (meter) is a notational convention to specify how many beats are in each bar (or measure).
valence - A measure from 0.0 to 1.0 describing the musical positiveness conveyed by a track. Tracks with high valence sound more positive (e.g. happy, cheerful, euphoric), while tracks with low valence sound more negative (e.g. sad, depressed, angry).
'''
f.write(f"{features}\n\n")
keys = {0: 'C', 1: 'C#', 2: 'D', 3: 'D#', 4: 'E', 5: 'F', 6: 'F#', 7: 'G',
8: 'G#', 9: 'A', 10: 'A#', 11: 'B'}
features = ['acousticness', 'danceability', 'energy', 'instrumentalness',
'key', 'liveness', 'loudness', 'mode', 'speechiness', 'tempo',
'time_signature', 'valence']
for t in tracks:
id = t['id']
# print(t['name'])
f.write(f"Track: {t['name']} \n")
track_features = spotify.audio_features(id)[0]
for feature in features:
# print(f"{f}: {feature[f]}")
if feature == 'key':
f.write(f"{feature}: {keys[track_features[feature]]}\n")
else:
f.write(f"{feature}: {track_features[feature]}\n")
# print()
f.write('\n')
f.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment