Skip to content

Instantly share code, notes, and snippets.

View ermshiperete's full-sized avatar

Eberhard Beilharz ermshiperete

View GitHub Profile
@ermshiperete
ermshiperete / SimpleHTTPServerWithUpload.py
Created January 1, 2022 15:53 — forked from touilleMan/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload - Python3 version
#!/usr/bin/env python3
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
see: https://gist.github.com/UniIsland/3346170
"""