Test them out. Start showing the page on the local host, and then use the Apache comparison tool.
apt-get install apache2-utils ab -n 10000 -c 100 http:
This makes 10,000 requests with a maximum of 100 concurrent requests.
But yes. I would not use them in production. We serve Python applications through uWSGI with requests proxied through Nginx. It is very flexible and scalable. Can embedded httpserver handle multiple requests? This is probably single threaded. You will find out pretty quickly when you test it.
source share