A fully-fledged installable python package for extracting top 200 and viral 50 charts off of spotifycharts.com
Project description
fycharts
A fully-fledged installable python package for extracting top 200 and viral 50 charts off of spotifycharts.com
In a nutshell, the unofficial Spotify Charts API
CONTENTS
- Installation
- Sample
- Functions for data extraction and the parameters they accept
- Format for data returned
- Supported country codes
- Turbo-boosted recipe
- Utilities you may find useful
INSPIRATION
This was built to fill the gap left when Spotify deprecated their official Spotify charts API. It arose as a needed crawler for the Spotify data analysis and machine learning project done here
INSTALLATION
pip install fycharts
SAMPLE USAGE
Say you want to extract top 200 daily charts for all time, all regions
myCrawler.py
from fycharts.SpotifyCharts import SpotifyCharts
api = SpotifyCharts()
api.top200Daily(output_file = 'top_200_daily.csv')
Run your program.
python myCrawler.py
Watch the terminal for helpful information.
FUNCTIONS AND PARAMETERS
For all the charts provided by Spotify, four functions exist:
- top200Weekly
- top200Daily
- viral50Weekly
- viral50Daily
All four functions take the following parameters:
Compulsory
- output_file - CSV file to dump the data.
Optional
-
start - Start date of range of interest as string with the format YYYY-MM-DD
-
end - End date of range of interest as string with the format YYYY-MM-DD
-
region - Region of interest, as a country abbreviation code. 'global' is also valid
region can also be a list of regions e.g. ["global", "us", "fr"]
Refer to SUPPORTED COUNTRY CODES SO FAR below for accepted regions.
If not included, data is extracted for all dates, all regions
DATA RETURNED
The data extracted from spotifycharts.com is written to the output (usually a CSV file) with the following fields:
- position - The song's position during that week or day
- track name - Name of the song
- artist - Name of artist
- region - Region of the chart as a code
- date - Date or range of dates of chart
- spotify_id - Spotify track id
- streams - Number of streams for that week or day. Only applicable to top 200 charts
SUPPORTED COUNTRY CODES SO FAR
ad | ca | dk | gr | is | mx | ph | sv |
ar | ch | do | gt | it | my | pl | th |
at | cl | ec | hk | jp | ni | pt | tr |
au | co | ee | hn | lt | nl | py | tw |
be | cr | es | hu | lu | no | ro | us |
bg | cy | fi | id | lv | nz | se | uy |
bo | cz | fr | ie | mc | pa | sg | vn |
br | de | gb | il | mt | pe | sk | global |
A RECIPE ON STERIODS
Take advantage of multithreading, you may write your code as follows:
myCrawler.py
import threading
from fycharts.SpotifyCharts import SpotifyCharts
def main():
api = SpotifyCharts()
a_thread = threading.Thread(target = api.top200Daily, args = ("top_200_daily.csv",), kwargs = {"start": "2020-01-03", "end":"2020-01-12", "region": ["global", "us"]})
b_thread = threading.Thread(target = api.top200Weekly, args = ("top_200_weekly.csv",), kwargs = {"start": "2020-01-03", "end":"2020-01-12", "region": ["global", "us"]})
c_thread = threading.Thread(target = api.viral50Daily, args = ("viral_50_daily.csv",), kwargs = {"start": "2020-01-03", "end":"2020-01-12", "region": ["global", "us"]})
d_thread = threading.Thread(target = api.viral50Weekly, args = ("viral_50_weekly.csv",), kwargs = {"start": "2020-01-02", "end":"2020-01-12", "region": ["global", "us"]})
a_thread.start()
b_thread.start()
c_thread.start()
d_thread.start()
if __name__ == "__main__":
main()
TAKE NOTE: DO NOT SHARE THE OUTPUT DESTINATION ACROSS THE FUNCTIONS i.e. each function should be writing to its own set of outputs
UTILITY FUNCTIONS
This library exposes some functions that you may find of use:
a. validDates(start, end, desired)
This function prints a list of valid dates for the kind of data you are interested in.
Parameters
-
start - Start date of range of interest as string with the format YYYY-MM-DD
-
end - End date of range of interest as string with the format YYYY-MM-DD
-
desired - A string specifying the kind of data desired
Accepts: * top200Daily * top200Weekly * viral50Daily * viral50Weekly
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fycharts-2.0.0.tar.gz
.
File metadata
- Download URL: fycharts-2.0.0.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c728d382d3f5bc35df611f61ddc2e67ba091d998110b5e0015c833b408f1b92d |
|
MD5 | 8a5dc3a7e2f398dd234a37917a917b3c |
|
BLAKE2b-256 | 6f5f86d1cb1f203a7d6d14493b2b9f480f36859e6b39e9cf3218bac0f4237454 |
File details
Details for the file fycharts-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: fycharts-2.0.0-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 579e343fb75357b3885978aeb0b5c48bcb3d1e15bdb37ba8205a6e7dcae68669 |
|
MD5 | ac00d48e08dc079ff402f7d9e58b689b |
|
BLAKE2b-256 | 14f2e346eae71a0dbb52a598d94015196fdd635ebef6bfcd1ab23af3fd1e384e |