Skip to content

Instantly share code, notes, and snippets.

@timnovinger
Forked from jonpierce/scrobble.py
Created August 31, 2011 18:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timnovinger/1184258 to your computer and use it in GitHub Desktop.
Save timnovinger/1184258 to your computer and use it in GitHub Desktop.
Last.fm scrobbling for Pianobar, the command-line Pandora client.
#!/usr/bin/env python
"""
Last.fm scrobbling for Pianobar, the command-line Pandora client. Requires Pianobar, Python, pyLast and Last.fm API credentials.
https://github.com/PromyLOPh/pianobar/
http://code.google.com/p/pylast/
http://www.last.fm/api/account
Installation:
1) Copy this script and pylast.py to the Pianobar config directory, ~/.config/pianobar/, and make sure this script is executable
2) Supply your own Last.fm credentials below
3) Update Pianobar's config file to use this script as its event_command
"""
import sys
import time
API_KEY = "################################"
API_SECRET = "################################"
USERNAME = "########"
PASSWORD = "########"
THRESHOLD = 50 # the percentage of the song that must have been played to scrobble
def main():
event = sys.argv[1]
lines = sys.stdin.readlines()
fields = dict([line.strip().split("=", 1) for line in lines])
# fields: title, artist, album, songDuration, songPlayed, rating, stationName, pRet, pRetStr, wRet, wRetStr
artist = fields["artist"]
title = fields["title"]
song_duration = int(fields["songDuration"])
song_played = int(fields["songPlayed"])
# events: songstart, songfinish, ???
if event == "songfinish" and 100.0 * song_played / song_duration > THRESHOLD:
song_started = int(time.time() - song_played / 1000.0)
import pylast
network = pylast.LastFMNetwork(api_key = API_KEY, api_secret = API_SECRET, username = USERNAME, password_hash = pylast.md5(PASSWORD))
network.scrobble(artist = artist, title = title, timestamp = song_started)
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment