sanic/tests/performance/tornado/simple_server.py
2018-12-30 13:18:06 +02:00

20 lines
367 B
Python

# Run with: python simple_server.py
import ujson
from tornado import ioloop, web
class MainHandler(web.RequestHandler):
def get(self):
self.write(ujson.dumps({"test": True}))
app = web.Application(
[(r"/", MainHandler)],
debug=False,
compress_response=False,
static_hash_cache=True,
)
app.listen(8000)
ioloop.IOLoop.current().start()