-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python3 support #64
Comments
By all means create a pull request please :-)
… On 16 Dec 2020, at 16:54, e-skulk ***@***.***> wrote:
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
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub <#64>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ADGFXFRC7A7K22I26B7DCMDSVDJ3FANCNFSM4U6GJAZA>.
|
Thanks to e-skulk, I did a PR. |
Works great with 3.9, thanks @coveritytest! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
The text was updated successfully, but these errors were encountered: