Bottle server not responding while calculating Bottle server not responding while calculating flask flask

Bottle server not responding while calculating


This happen because WSGI handle request/response synchronously.
You can use gunicorn to run your application, it will handle multi requests and response, or you can use other methods described in bottle website:
Primer to Asynchronous Applications