small script for testing if service is ready for requests

This commit is contained in:
Jon Chin 2023-01-15 16:21:13 -05:00
parent 9da5051ae2
commit 83282ab47d

11
healthcheck.py Normal file
View file

@ -0,0 +1,11 @@
import requests
response = requests.post(
url='http://0.0.0.0:5000/translate',
headers={'Content-Type': 'application/json'},
json={
'q': 'Hello World!',
'source': 'en',
'target': 'en'
}
)
# if server unavailable then requests with raise exception and healthcheck will fail