wmt-2020-pl-en/googletrans/__init__.py
SuHun Han 286593607e Fix invalid tokenizer due to the complexity of the obfuscated code
This commit solves #14 and bumps the version to 2.1.2
2017-04-07 22:43:48 +09:00

9 lines
275 B
Python

"""Free Google Translate API for Python. Translates totally free of charge."""
__all__ = 'Translator',
__version_info__ = 2, 1, 2
__version__ = '.'.join(str(v) for v in __version_info__)
from googletrans.client import Translator
from googletrans.constants import LANGUAGES