sanic/tests/performance/python/flask.py

17 lines
390 B
Python
Raw Normal View History

2016-10-09 23:41:37 +01:00
# launch with
# gunicorn --workers=1 --worker-class=meinheld.gmeinheld.MeinheldWorker falcon:api
from flask import Flask
app = Flask(__name__)
from ujson import dumps
import logging
log = logging.getLogger('werkzeug')
log.setLevel(logging.ERROR)
@app.route('/')
def hello_world():
return dumps({"test": True})
if __name__ == '__main__':
import sys
app.run(port=sys.argv[-1])