分类

链接

2025 年 1 月
 12345
6789101112
13141516171819
20212223242526
2728293031  

近期文章

热门标签

新人福利,免费薅羊毛

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...

Python 暂无评论 阅读(194)