Skip to content

Instantly share code, notes, and snippets.

@sergo2
sergo2 / README.md
Created August 10, 2019 12:16 — forked from nitaku/README.md
Minimal JSON HTTP server in python

A minimal HTTP server in python. It sends a JSON Hello World for GET requests, and echoes back JSON for POST requests.

python server.py 8009
Starting httpd on port 8009...
curl http://localhost:8009
{"received": "ok", "hello": "world"}