TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Can you recommend a tried and tested Python web server

8 pointsby rudenoiseabout 15 years ago
I'm currently looking at options for building a high traffic, content (text and images) based site, nothing especially innovative. Is Apache and mod_python as stable and scalable as Apache and PHP?

4 comments

sqrt17about 15 years ago
nah. Use Apache and mod_wsgi. (mod_wsgi runs the Python app in a separate process, which means that those Apache processes that just serve images will not be weighed down by a Python interpreter).
mattdennewitzabout 15 years ago
we're using apache+modwsgi to serve django, and tornado (by itself) behind nginx. both have been excellent. gunicorn looks to have a bright future, but i haven't played with it.
yourabiabout 15 years ago
take a look at a combination of nginx and unicorn or uWsgi.<p>Avoid mod_python.
madprogrammerabout 15 years ago
tornado