I like libpytunes for exporting playlist files from music app. If you want to make this script useable for python 3, I had to modify Library.py as follows:
add function into Library class:
with open(f, 'rb') as fp:
plst = plistlib.load(fp)
return plst
replace line 28 with:
self.il = Library.plistLoad(itunesxml) # Much better support of xml special characters
I like libpytunes for exporting playlist files from music app. If you want to make this script useable for python 3, I had to modify Library.py as follows:
add function into Library class:
replace line 28 with: