Last FM API (lastfmxpy)
- lastfmxpy (Last FM Api) - is a mono-repository that has a user-friendly interface for interacting with the largest music service last.fm. This library implements all the standard methods available on this page.
Table of contents
Project goals
Documentation
This documentation provides examples of how to use the synchronous and asynchronous classes and methods,
and shows all available methods and parameters
Installation
To install this library, you need to enter the following command
pip install -U lastfmxpy
Example of SYNCHRONOUS usage
In this example, we use the LastFMApi
class that we previously imported from the api
package,
and then use the post method in which we set the method we will use and the parameter
import json
from lastfmxpy import (
api,
methods,
params,
)
client = api.LastFMApi(
api_key="...",
shared_secret="..."
)
response: str = client.post(
method=methods.User.GET_INFO,
params=params.UserGetInfo(
user="pkeorley"
),
additional_params=dict(format="json")
)
data: str = json.dumps(
json.loads(response),
indent=4,
ensure_ascii=False
)
print(data)
Example of ASYNCHRONOUS usage
In this example, we use the AsyncLastFMApi
class, which we previously imported from the api
package in the same way as in the case of the previous class, and then use
the post method in which we set the method we will use and the parameter
import asyncio
import json
from lastfmxpy import (
api,
methods,
params,
)
client = api.AsyncLastFMApi(
api_key="...",
shared_secret="..."
)
async def main():
response: str = await client.post(
method=methods.User.GET_INFO,
params=params.UserGetInfo(
user="pkeorley"
),
additional_params=dict(format="json")
)
data: str = json.dumps(
json.loads(response),
indent=4,
ensure_ascii=False
)
return data
print(asyncio.run(main()))
All available methods:
from lastfmxpy.methods import (
Album,
Artist,
Auth,
Chart,
Geo,
Library,
Tag,
Track,
User
)
All available parameters:
from lastfmxpy.params import (
AlbumAddTags,
AlbumGetInfo,
AlbumGetTags,
AlbumGetTopTags,
AlbumRemoveTag,
AlbumSearch
)
from lastfmxpy.params import (
AlbumAddTags,
AlbumGetInfo,
AlbumGetTags,
AlbumGetTopTags,
AlbumRemoveTag,
AlbumSearch
)
from lastfmxpy.params import (
ArtistAddTags,
ArtistGetCorrection,
ArtistGetInfo,
ArtistGetSimilar,
ArtistGetTags,
ArtistGetTopAlbums,
ArtistGetTopTags,
ArtistGetTopTracks,
ArtistRemoveTag,
ArtistSearch
)
from lastfmxpy.params import (
AuthGetMobileSession,
AuthGetSession,
AuthGetToken
)
from lastfmxpy.params import (
ChartGetTopArtists,
ChartGetTopTags,
ChartGetTopTracks
)
from lastfmxpy.params import (
GeoGetTopArtists,
GeoGetTopTracks
)
from lastfmxpy.params import (
LibraryGetArtists
)
from lastfmxpy.params import (
TagGetInfo,
TagGetSimilar,
TagGetTopAlbums,
TagGetTopArtists,
TagGetTopTracks,
TagGetWeeklyChartList
)
from lastfmxpy.params import (
TrackAddTags,
TrackGetCorrection,
TrackGetInfo,
TrackGetSimilar,
TrackGetTags,
TrackGetTopTags,
TrackLove,
TrackRemoveTag,
TrackScrobble,
TrackSearch,
TrackUnlove,
TrackUpdateNowPlaying
)
from lastfmxpy.params import (
UserGetFriends,
UserGetInfo,
UserGetLovedTracks,
UserGetPersonalTags,
UserGetRecentTracks,
UserGetTopAlbums,
UserGetTopArtists,
UserGetTopTags,
UserGetTopTracks,
UserGetWeeklyAlbumChart,
UserGetWeeklyArtistChart,
UserGetWeeklyChartList,
UserGetWeeklyTrackChart
)
License
lastfmxpy
is distributed under the terms of the MIT license.