This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
__author__ = "dn6431" | |
__contributor__ = ["bones7456", "wonjohnchoi"] | |
__description__ = """Simple HTTP Server With Upload and Authentication and more | |
This module is built on HTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straight forward manner""" | |
__epilog__ = """Created by: {} | |
Contributor: {} {}""".format(__author__, __contributor__[0], __contributor__[1]) |