I want to write a web server in python.
1) it reads, through network connection, some data from other hosts.
2) then it does some (light) computation,
3) then the result is shown on the web page
4) the result can be also shown upon request.
which python package is best for this?
I can implement 1), 2) and show the result in a GUI by PyQt, but I have not
found a good way to do it through a web server.
I have ave tried "cherrypy", but the web server processes blocks the network
processing step. I read their document, but cannot find a way to fix it.