Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fastily/http-echo-server
🏓 A simple HTTP echo server
https://github.com/fastily/http-echo-server
echo-server python3
Last synced: about 1 month ago
JSON representation
🏓 A simple HTTP echo server
- Host: GitHub
- URL: https://github.com/fastily/http-echo-server
- Owner: fastily
- License: gpl-3.0
- Created: 2022-01-07T07:44:43.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-09T08:57:28.000Z (5 months ago)
- Last Synced: 2024-08-09T10:18:01.694Z (5 months ago)
- Topics: echo-server, python3
- Language: Python
- Homepage: https://http-echo-server.toolforge.org
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# http-echo-server
[![Python 3.11+](https://upload.wikimedia.org/wikipedia/commons/6/62/Blue_Python_3.11%2B_Shield_Badge.svg)](https://www.python.org)
[![License: GPL v3](https://upload.wikimedia.org/wikipedia/commons/8/86/GPL_v3_Blue_Badge.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)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
```bash
# from source
python -m http_echo# prod
gunicorn -w 2 -b "0.0.0.0" http_echo.__main__:app
```