rapadura
rapadura

Reputation: 5300

Python self contained web application and server?

What is a good and easy way to distribute a web application and server bundled together, python way?

So I can say to a user "Here take this tar/whatever, unpack it and run blahblah.py" and blahblah.py will run a http/wsgi server and serve my application?

Im looking for a stable production-ready multi-threaded wsgi-server with which I can bundle my app, without the need for nginx or other "frontends" or having to deal with any configuration.

Upvotes: 5

Views: 2035

Answers (2)

0xc0de
0xc0de

Reputation: 8287

cherrypy is the easiest one to use, django is feature rich and tornado is more advanced with asynchrounous web server(in my opinion it is better than multithreaded web server). For what you want, django is best suitable for you IMO.

Upvotes: 0

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798676

CherryPy can act as a WSGI container.

Upvotes: 2

Related Questions