摘要: from flask import Flask,render_template,request,send_file from werkzeug.utils import secure_filename #创建app app = Flask(__name__) #上传文件-网页端 html_code 阅读全文
posted @ 2022-10-14 01:35 凌淞 阅读(73) 评论(0) 推荐(0)
摘要: #text文本输出from sanic import Sanic from sanic.response import text app = Sanic(name="App") @app.route("/hello") async def hello(request): return text("h 阅读全文
posted @ 2022-10-08 17:51 凌淞 阅读(119) 评论(0) 推荐(0)