First of all thanks for the API and SDK.
The SongstatsClient class uses the wrong base_url:
base_url: str = "https://data.songstats.com"
The simple fix is to simply rename it to,
base_url: str = "https://api.songstats.com",
I have monkeypatched my local version of the sdk and can do a PR if you want, but this is a rather easy fix so maybe you prefer to do it yourself.
First of all thanks for the API and SDK.
The SongstatsClient class uses the wrong base_url:
base_url: str = "https://data.songstats.com"The simple fix is to simply rename it to,
base_url: str = "https://api.songstats.com",I have monkeypatched my local version of the sdk and can do a PR if you want, but this is a rather easy fix so maybe you prefer to do it yourself.