mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-13 11:41:04 +00:00
13 lines
335 B
Python
13 lines
335 B
Python
import requests
|
|
|
|
response = requests.post(
|
|
url='http://localhost:5000/translate',
|
|
headers={'Content-Type': 'application/json'},
|
|
json={
|
|
'q': 'Hello World!',
|
|
'source': 'en',
|
|
'target': 'en'
|
|
},
|
|
timeout=60
|
|
)
|
|
# if server unavailable then requests with raise exception and healthcheck will fail
|