Search code examples
pythoncherrypy

Python web server?


I want to develop a tool for my project using python. The requirements are:

  1. Embed a web server to let the user get some static files, but the traffic is not very high.
  2. User can configure the tool using http, I don't want a GUI page, I just need a RPC interface, like XML-RPC? or others?
  3. Besides the web server, the tool need some background job to do, so these jobs need to be done with the web server.

So, Which python web server is best choice? I am looking at CherryPy, If you have other recommendation, please write it here.


Solution

  • what about the internal python webserver ? just type "python web server" in google, and host the 1st result...