Can you recommend a minimalistic python webserver that I can embedded in my Desktop Application.
|
How minimalistic and for what purpose? SimpleHTTPServer comes free as part of the standard Python libraries. If you need more features, look into CherryPy or (at the top end) Twisted. |
|||||||||||||||
|
|
I'm becoming a big fan of the newly released circuits library. It's a component/event framework that comes with a very nice set of packages for creating web servers & apps. Here's the simple web example from the site:
Its WSGI support is no more complicated than that, either. Good stuff. |
|||
|
|
|
If you're doing a lot of concurrent stuff, you might consider Kamaelia's HTTPServer. |
|||||||
|
|
I've found web.py pretty easy to use : http://webpy.org/ |
|||
|
|
|
If you want to use something from the standard library I would strongly recommend not using SimpleHTTPServer, but instead using If you are making a desktop application you will need to launch a separate thread for either wsgiref or CherryPy. If that's fine, then a WSGI-based server would probably be easiest. If you don't want to launch a separate thread for the server then you most likely need to use Twisted. |
|||
|
|
|
See the WSGI reference implementation. |
|||
|
|
|
I made this one. It just enhances Python's SimpleHTTPServer a bit to let you define custom actions depending on the request. |
|||
|
|