summaryrefslogtreecommitdiffhomepage
path: root/libs/deep_translator/configs.py
blob: 9df60980838b90cb08407937c8f4c95c8051468c (plain)
1
2
3
4
5
6
7
8
9
10
11
"""
configuration object that holds data about the language detection api
"""

config = {
    "url": 'https://ws.detectlanguage.com/0.2/detect',
    "headers": {
        'User-Agent': 'Detect Language API Python Client 1.4.0',
        'Authorization': 'Bearer {}',
    }
}