cannot import Musixmatch
I am having error when using Musixmatch API tool when running code below
from musixmatch import Musixmatch
musixmatch = Musixmatch('9173cdafb8c897fc5417ea88d8d0bba8')
Error is as below
ImportError Traceback (most recent call last)
Cell In[51], line 1
----> 1 from musixmatch import Musixmatch
2 musixmatch = Musixmatch('~~~~')
ImportError: cannot import name 'Musixmatch' from 'musixmatch' (C:\Users\---\anaconda3\lib\site-packages\musixmatch\__init__.py)
#api key hidden
I referred to this website https://github.com/hudsonbrendon/python-musixmatch What is wrong with my code?