LibreTranslate/scripts/healthcheck.py
2024-03-06 15:48:24 +01:00

14 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