discord.ext.commands.errors.CommandInvokeError: Command raised an exception: KeyError: 'dislike_count'

this happens because Google has removed the disliked response from the API, hence when the code is trying to access a dictionary attribute with no key throws the error. To Fix this simply comment on the lines, accessing ['dislike_count'].

comment in the file music.py in DiscordUtils package

Note:- DiscordUtils package can be found in "virtual_env_name/lib/python3.x/site-packages/DiscordUtils" if using an virtual enviroment. OR the path where you have installed python3.

See line no 56. line no 72.

and line no 92.