setlist-fm-client 0.4.0

Creator: bradpython12

Last updated:

0 purchases

TODO
Add to Cart

Description:

setlistfmclient 0.4.0

setlist-fm-client
setlist-fm-client is a python client for the setlist.fm REST API.
Installation
pip
pip install setlist-fm-client

poetry
poetry add setlist-fm-client

Help
See the documentation for more details.
Authentication
In order to authenticate to the setlist.fm REST API, you must apply for an API key
(link for logged-in users only) - if you're not registered user yet, then
register first (it's free).
Once you have your key, you can use it in the setlist-fm-client by setting the SETLIST_FM_API_KEY environment
variable or by passing api_key="xxx" as a kwarg to any function (see docs).
Simple Example
setlist-fm-client is extremely easy to use. By setting serialize=True, you get a pydantic model returned to you instead of
a httpx.Response object.
Below are examples of what the code looks like for both the sync and async apis.
sync
import setlist_fm_client

setlists = setlist_fm_client.get_artist_setlists(
"0bfba3d3-6a04-4779-bb0a-df07df5b0558", api_key="xxx", serialize=True
)
print(setlists)

async
import asyncio

import setlist_fm_client

async def main():
setlists = await setlist_fm_client.get_artist_setlists(
"0bfba3d3-6a04-4779-bb0a-df07df5b0558", api_key="xxx", serialize=True
)
print(setlists)

asyncio.run(main())

This will give you an ArtistSetListResponse object.
Buy me a coffee
If you find this project useful, consider buying me a coffee!

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.