Add benchmark tool

This commit is contained in:
yhirose 2024-09-05 12:22:46 -04:00
parent b4989130da
commit c75d071615
6 changed files with 14388 additions and 0 deletions

9
benchmark/flask/main.py Normal file
View file

@ -0,0 +1,9 @@
from flask import Flask
app = Flask(__name__)
import logging
logging.getLogger('werkzeug').disabled = True
@app.route('/')
def hello_world():
return 'Hello, World!'