lastfm-collage is a tool to generate image collages from last.fm user's top albums and artists, like this
I created this as part of a project to mess around with Django. The original idea to generate album art collages is from tapmusic
lastfm-collage can be installed via pip,
$ pip install git+https://github.com/connnnor/lastfm-collage#egg=lastfm_collagelastfm-collage requires an API account from Last.fm once you have an account, place your API details in the lastfm-creds.json file like
{
"api_key": "aaaaaaaaabbbbbbbbbcccccccccddddd",
"api_secret": "eeeeeeeeefffffffff00000000011111"
}Or set the LASTFM_API_KEY and LASTFM_API_SECRET variables in your shell like
$ export LASTFM_API_KEY="aaaaaaaaabbbbbbbbbcccccccccddddd"
$ export LASTFM_API_SECRET="eeeeeeeeefffffffff00000000011111"Thanks to pylast, for making accessing the last.fm API very simple!