Simple HTTP echo server that responds back with whatver you sent it in plain text. Intended as debugging/testing tool.
👉 The "echoed" body (if a body was included in the original request) will auto-format json and form data for legibility.
# from source
python -m http_echo
# prod
gunicorn -w 2 -b "0.0.0.0" http_echo.__main__:app