Skip to content

Instantly share code, notes, and snippets.

@joonahn
joonahn / SimpleHTTPServerWithUpload.py
Last active August 26, 2023 02:27 — forked from UniIsland/SimpleHTTPServerWithUpload.py
Simple Python Http Server can upload multiple files
#!/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
"""