/http-echo-server

🏓 A simple HTTP echo server

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

http-echo-server

Python 3.11+ License: GPL v3

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.

Run

# from source
python -m http_echo

# prod
gunicorn -w 2 -b "0.0.0.0" http_echo.__main__:app