I was trying to get the info in entity 'Minas Gerais' like following: ```python wd_page = wptools.page("Minas gerais") try: wd_page.get_wikidata() except LookupError as e: print(e) ``` The error gives me [this link](https://www.wikidata.org/w/api.php?action=wbgetentities&formatversion=2&languages=en&props=aliases|info|claims|descriptions|labels|sitelinks&redirects=yes&sites=enwiki&titles=Minas%20gerais) which tells that the item is missing. However the item is actually present in wikidata pretty neatly [here](https://www.wikidata.org/wiki/Q39109). Is the issue is on the Mediawiki API end or some kind of malformed link within the library? How may I solve it? Any pointers would be appreciated.