7 lines
174 B
Python
7 lines
174 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Predefined URLs used to make google translate requests.
|
|
"""
|
|
BASE = 'https://translate.google.com'
|
|
TRANSLATE = 'https://{host}/translate_a/single'
|