摘要: import cProfile import pstats from flask import Flask,jsonify, request @app.route("/test", methods=['GET', 'POST']) def test(): pr = cProfile.Profile() pr.enable() # enable():开始收集性能分析数据 ... 阅读全文
posted @ 2019-09-10 18:51 心动如雷 阅读(953) 评论(0) 推荐(0)