When using this code from https://stackabuse.com/text-translation-with-google-translate-api-in-python/
from googletrans import Translator
translator = Translator()
result = translator.translate("Mitä sinä teet")
print(result.src)
print(result.dest)
print(result.origin)
print(result.text)
I get 'AttributeError: 'NoneType' object has no attribute 'group'', and i was wondering what is wrong, the error seems to be on the 'result = tra...' line,
Thank you for any help
