18
12/20
python2 fileserver
#!/usr/bin/env python """Simple HTTP Server With Upload. https://github.com/tualatrix/tools/blob/master/SimpleHTTPServerWithUpload.py This module builds on BaseHTTPServer by implementing the standard GET and HEAD requests in a fairly straightforward manner. """ import os import posixpath import BaseHTTPServer import urllib import cgi import shutil import mimetypes import re import time __version__ = "0.1" __all__ = ["SimpleHTTPRequestHandler"] __author__ = "brucehe" __home...
03
12/20