Most Streamed Songs (All Time)
Most Streamed Songs of All time on Spotify
@kaggle.amaanansari09_most_streamed_songs_all_time
Most Streamed Songs of All time on Spotify
@kaggle.amaanansari09_most_streamed_songs_all_time
100 most streamed songs on Spotify with their Features Extracted using the Spotify API.
I have the most streamed Songs 2021 also available at :- https://www.kaggle.com/datasets/amaanansari09/top-100-songs
CREATE TABLE features (
"id" VARCHAR,
"name" VARCHAR,
"duration" DOUBLE,
"energy" DOUBLE,
"key" BIGINT,
"loudness" DOUBLE,
"mode" BIGINT,
"speechiness" DOUBLE,
"acousticness" DOUBLE,
"instrumentalness" DOUBLE,
"liveness" DOUBLE,
"valence" DOUBLE,
"tempo" DOUBLE,
"danceability" DOUBLE
);CREATE TABLE streams (
"song" VARCHAR,
"artist" VARCHAR,
"streams_billions" DOUBLE -- Streams (Billions),
"release_date" VARCHAR
);Anyone who has the link will be able to view this.