python comment

This commit is contained in:
oc 2019-05-07 23:33:21 +08:00
parent c78a51be6a
commit 8f03393eb2

View File

@ -11,7 +11,7 @@ import base64
isPy3 = sys.version_info > (3, 0) isPy3 = sys.version_info > (3, 0)
def p(s): #s is unicode in py2 and str in py3 def p(s): # s is unicode in py2 and str in py3
if isPy3: print(s) if isPy3: print(s)
else: print(s.decode('utf-8')) else: print(s.decode('utf-8'))
p("") p("")
@ -52,7 +52,7 @@ def get_file(path):
abort(403) abort(403)
return None return None
with open(path, 'rb') as f: with open(path, 'rb') as f:
content = f.read()#str in py2 and bytes in py3 content = f.read() # str in py2 and bytes in py3
return content return content
@app.route('/', methods=['GET']) @app.route('/', methods=['GET'])
@ -64,7 +64,7 @@ def static_file(path):
return Response(get_file(path), mimetype = get_mimetype(path)) return Response(get_file(path), mimetype = get_mimetype(path))
def process_request(): def process_request():
data = request.get_data()#str in py2 and bytes in py3 data = request.get_data() # str in py2 and bytes in py3
if isPy3: data = str(data, encoding = 'utf-8') if isPy3: data = str(data, encoding = 'utf-8')
params = data.split("&") params = data.split("&")
d = {} d = {}
@ -72,7 +72,7 @@ def process_request():
index = one.find("=") index = one.find("=")
if index >= 0: if index >= 0:
d[one[:index]] = one[index+1:] d[one[:index]] = one[index+1:]
return d#str in py2&py3 return d # str in py2 & py3
@app.route('/readFile', methods=['POST']) @app.route('/readFile', methods=['POST'])
def readFile(): def readFile():
@ -94,7 +94,7 @@ def writeFile():
if isPy3: value = value.encode('utf-8') if isPy3: value = value.encode('utf-8')
if tp == 'base64': value = base64.b64decode(value) if tp == 'base64': value = base64.b64decode(value)
with open(filename, 'wb') as f: with open(filename, 'wb') as f:
f.write(value)#str in py2 and bytes in py3 f.write(value) # str in py2 and bytes in py3
return str(len(value)) return str(len(value))
@app.route('/writeMultiFiles', methods=['POST']) @app.route('/writeMultiFiles', methods=['POST'])