Skip to content

Instantly share code, notes, and snippets.

@Tallguy297
Tallguy297 / SimpleHTTPServerWithUpload.py
Last active August 21, 2019 03:56
Simple HTTP Server With Upload modified with icons
#!/usr/bin/env python3
"""Simple HTTP Server With Upload.
This module builds on http.server by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
see: https://gist.github.com/UniIsland/3346170
"""