This is a simple Telegram bot that uses the Last.fm API to get information about the music you have listened to.
/monthartists - prints out the top 10 artists you have listened to during the last 30 days and the number of scrobbles
/monthtracks - prints out the top 10 tracks you have listened to during the last 30 days and the number of scrobbles
/weekartists - prints out the top 10 artists you have listened to during the last 7 days and the number of scrobbles
/weektracks - prints out the top 10 tracks you have listened to during the last 7 days and the number of scrobbles
/nowplaying - prints out the track you are currently listening to
- Clone the repository
git clone https://github.com/heksaani/LASTFMBOT.git- Create a
.envfile in the root directory with the following content:
LASTFM_API_KEY=YOUR_LASTFM_API_KEY
TELEGRAM_BOT_TOKEN=YOUR_TELEGRAM_BOT_TOKEN
LASTFM_USERNAME=YOUR_LASTFM_USERNAMEInstructions on how to obtain the API key and the bot token :
- Using the Dockerfile
docker build -t lastfmbot .
docker run -d --name lastfmbot lastfmbot