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
First thing first, thank you for the hard work you're putting into this project :D
As per title, it'd be nice to have the command set on par with mpc
mpc
List can be found here https://helpmanual.io/help/mpc/ or via mpc help
mpc help
In particular, would be nice to have at least cdprev and toggle, as it would simplify some coding
cdprev
toggle
as an example, I have managed to implement the former as
if float(client.status()['elapsed']) < 5: client.previous() else: client.play(client.status()['song'])
also, little improvement would be to have the value of the fields returned as the proper type
The text was updated successfully, but these errors were encountered:
Are those also in the mpd protocol?
I prefer to not make library more complex than necessary.
First thing first, thank you for the hard work you're putting into this project :D
As per title, it'd be nice to have the command set on par with
mpc
List can be found here https://helpmanual.io/help/mpc/ or via
mpc help
In particular, would be nice to have at least
cdprev
andtoggle
, as it would simplify some codingas an example, I have managed to implement the former as
also, little improvement would be to have the value of the fields returned as the proper type
The text was updated successfully, but these errors were encountered: