Skip to content

Instantly share code, notes, and snippets.

@Spuffynism
Spuffynism / dummy-web-server.py
Last active July 4, 2018 22:31 — forked from bradmontgomery/dummy-web-server.py
A minimal http server in python. Responds to GET and POST requests
#!/usr/bin/env python
"""
Very simple HTTP server.
Upon a GET or POST request, returns a json object with the route of the request
and the data of the request body.
"""
import socket
from http.server import BaseHTTPRequestHandler, HTTPServer
import time