Skip to content

Instantly share code, notes, and snippets.

@charltones
charltones / sns_webserver.py
Last active March 28, 2018 14:47
Python webserver to receive AWS SNS notifications for debug purposes
#!/usr/bin/env python3
"""
Very simple HTTP server in python for logging requests
Usage::
./server.py [<port>]
"""
from http.server import BaseHTTPRequestHandler, HTTPServer
import logging
import json