mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 09:37:25 +00:00
11 lines
273 B
Python
11 lines
273 B
Python
"""
|
|
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 {}',
|
|
}
|
|
}
|