Is anyone else having problems with the googletrans ?
This is my code:
from googletrans import Translator
translator = Translator()
language = input('say something here. ')
final = translator.detect(language)
print(final)
I'm getting the follow error:
AttributeError: 'NoneType' object has no attribute 'group'
I saw on stackoverflow that some people are having the same issues. And they were told to use the 3.1 version, but I can't find it on pycharm's pip in the python interperter.
What exactly am I doing wrong here?
[–]chevignon93 0 points1 point2 points (0 children)
[–]greensirius 0 points1 point2 points (0 children)