Python / Flask
The Python API is live.
A Gunicorn-backed Flask service built from source, isolated in its own container, and routed through a managed HTTPS endpoint.
app = Flask(__name__)
@app.get('/health')
def health():
return {'status': 'ok'}01Repository
customer-c/pythonREADY02Process
gunicorn main:appRUNNING03Health
GET /healthCHECKING