File size: 273 Bytes
			
			| f36740b 43c88a7 7f8aad3 43c88a7 7f8aad3 43c88a7 | 1 2 3 4 5 6 7 8 9 10 11 12 | """
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 {}',
    }
}
 |