778b00758e
Co-authored-by: Bastien Vallet <b.vallet@criteo.com>
8 lines
232 B
Python
8 lines
232 B
Python
"""Free Google Translate API for Python. Translates totally free of charge."""
|
|
__all__ = 'Translator',
|
|
__version__ = '2.4.1'
|
|
|
|
|
|
from googletrans.client import Translator
|
|
from googletrans.constants import LANGCODES, LANGUAGES # noqa
|