View FileUploadRequestHandler.py
This file contains 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 python3 | |
"""HTTP Server with auth and Upload. | |
This module builds on SimpleHTTPRequestHandler, | |
implements simple Authentication, use ssl | |
full "multipart" rfc2046 handling, | |
multi file upload, create folder and delete files, | |
TableView file listing with icon/size/date | |
from bones7456: https://github.com/bones7456/bones7456/blob/master/SimpleHTTPServerWithUpload.py / https://gist.github.com/UniIsland/3346170 |