Skip to content

Instantly share code, notes, and snippets.

View gbrault's full-sized avatar
🏠
Working from home

Gilbert Brault gbrault

🏠
Working from home
View GitHub Profile
@rrosajp
rrosajp / SimpleHTTPServerWithUpload.py
Created July 14, 2020 16:52 — forked from joonahn/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
"""