分类

链接

2026 年 1 月
 1234
567891011
12131415161718
19202122232425
262728293031  

近期文章

热门标签

新人福利,免费薅羊毛

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 暂无评论 阅读(457)