分类目录

链接

2020 年 12 月
 123456
78910111213
14151617181920
21222324252627
28293031  

近期文章

热门标签

新人福利,免费薅羊毛

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

gradle编译、打包时跳过test测试

gradle build -x test

Others 暂无评论 阅读(251)