Skip to content

Instantly share code, notes, and snippets.

View ManuGithubSteam's full-sized avatar

Manuel ManuGithubSteam

View GitHub Profile
@ManuGithubSteam
ManuGithubSteam / simplehttpserver.py
Created July 11, 2021 21:08 — forked from csaki/simplehttpserver.py
Simple Python Http Server with Upload and Authentication
#!/usr/bin/env python
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
"""
__version__ = "0.1"
__all__ = ["SimpleHTTPRequestHandler"]