I'm using this code to translate the string 'Hola mundo':
text = 'Hola mundo'
from googletrans import Translator
Translator().translate(text)
But I obtain this error:
AttributeError: 'NoneType' object has no attribute 'group'
I'm using Jupyter Notebook with Python version 3.9 and pip version 21.2.4.
Could someone help me with this issue? Thank you in advance!