mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2025-06-28 20:09:52 +00:00
15 lines
389 B
Python
15 lines
389 B
Python
import requests
|
|
import os
|
|
|
|
port = os.environ.get('LT_PORT', '5000')
|
|
response = requests.post(
|
|
url=f'http://localhost:{port}/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
|