Spotify Charts
A dataset of all daily hit charts curated by Spotify
@kaggle.dhruvildave_spotify_charts
A dataset of all daily hit charts curated by Spotify
@kaggle.dhruvildave_spotify_charts
This is a complete dataset of all the "Top 200" and "Viral 50" charts published globally by Spotify. Spotify publishes a new chart every 2-3 days. This is its entire collection since January 1, 2017.
The value of streams is NULL when the chart column is "viral50".
Image Credits: Photo by Omid Armin on Unsplash
CREATE TABLE charts (
"title" VARCHAR,
"rank" BIGINT,
"date" TIMESTAMP,
"artist" VARCHAR,
"url" VARCHAR,
"region" VARCHAR,
"chart" VARCHAR,
"trend" VARCHAR,
"streams" DOUBLE
);Anyone who has the link will be able to view this.