We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am getting several errors. First one:
bash-3.2$ python2 gmusicimport.py -u "[email protected]" -v --dry-run playlists.json Logging in as "[email protected]" to Google Play Music Password: Traceback (most recent call last): File "gmusicimport.py", line 38, in <module> if not client.login(args.username, pw): TypeError: login() takes exactly 4 arguments (3 given)
After some debugging I edited line 38 to: if not client.login(args.username, pw, Mobileclient.FROM_MAC_ADDRESS):
if not client.login(args.username, pw, Mobileclient.FROM_MAC_ADDRESS):
This got me a step further!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am getting several errors. First one:
After some debugging I edited line 38 to:
if not client.login(args.username, pw, Mobileclient.FROM_MAC_ADDRESS):
This got me a step further!
The text was updated successfully, but these errors were encountered: