Request content is read all at once

This commit is contained in:
Simon
2018-08-11 13:05:24 -04:00
parent 78d1b7a5bd
commit cc4c70f400
3 changed files with 44 additions and 19 deletions

13
test/webserver.py Normal file
View File

@@ -0,0 +1,13 @@
from flask import Flask, send_file
app = Flask(__name__)
@app.route("/test1/")
def test1():
return send_file("files/apache_table.html")
if __name__ == '__main__':
app.run("0.0.0.0", port=8888, threaded=True)