Skip to content

Instantly share code, notes, and snippets.

@dfrankow
dfrankow / simple_server.py
Last active February 26, 2024 12:23
Simple HTTP REST server in python3
#!/usr/bin/env python
"""A simple HTTP server with REST and json for python 3.
addrecord takes utf8-encoded URL parameters
getrecord returns utf8-encoded json.
"""
import argparse
import json