Skip to content

Instantly share code, notes, and snippets.

View csaki's full-sized avatar

Cesar Arasaki csaki

  • MTP
  • São Paulo, Brasil
View GitHub Profile
@csaki
csaki / simplehttpserver.py
Last active September 5, 2022 20:22
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"]