-
Notifications
You must be signed in to change notification settings - Fork 71
/
Languages.py
30 lines (22 loc) · 1.04 KB
/
Languages.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- coding: utf-8 -*-
# This simple app performs a GET request to retrieve a list of languages
# supported by Microsoft Translator.
# This sample runs on Python 2.7.x and Python 3.x.
# You may need to install requests and uuid.
# Run: pip install requests uuid
import os, requests, uuid, json
endpoint_var_name = 'TRANSLATOR_TEXT_ENDPOINT'
if not endpoint_var_name in os.environ:
raise Exception('Please set/export the environment variable: {}'.format(endpoint_var_name))
endpoint = os.environ[endpoint_var_name]
# If you encounter any issues with the base_url or path, make sure
# that you are using the latest endpoint: https://docs.microsoft.com/azure/cognitive-services/translator/reference/v3-0-languages
path = '/languages?api-version=3.0'
constructed_url = endpoint + path
headers = {
'Content-type': 'application/json',
'X-ClientTraceId': str(uuid.uuid4())
}
request = requests.get(constructed_url, headers=headers)
response = request.json()
print(json.dumps(response, sort_keys=True, indent=4, ensure_ascii=False, separators=(',', ': ')))