rescrobbled 0.5.1

MPRIS music scrobbler daemon
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

import sys

# Filter scripts receive the track artist, title and album
# on separate lines of their standard input...

artist, title, album = (l.rstrip() for l in sys.stdin.readlines())

# ...and should provide them on the corresponding lines of the
# standard output

print(artist, title, album, end='\n')