I have got an old version of code to analyze, which uses pip install translator library:
Code goes like this:
from translator.translator import find_values
find_values('qKey', ['title', 'message'], data, translations)
I am having below error executing the same -
ImportError: cannot import name 'find_values' from 'translator.translator'
I thought I could get rid of this error using legacy versions of translators library, but couldn't find the one which is working.
Can someone please help on how to overcome from this situation.