tags:

views:

201

answers:

1

Bottle can use several webservers:

Build-in HTTP development server and support for paste, fapws3, flup, cherrypy or any other WSGI capable server.

I am using bottle for a desktop-app and I guess that the development server is enough in this case.

I would like to know if some of you have experience with one of the alternative server.

Which server for which purpose?

Thanks in advance

+1  A: 

Python WSGI web apps work fine in Apache, using mod_wsgi.

On Windows, I have WSGI web apps in production on IIS using isapi-wsgi

codeape