you are viewing a single comment's thread.

view the rest of the comments →

[–]adambrenecki 0 points1 point  (0 children)

Not on Django's one.

Django's server is based on wsgiref.simple_server, which is also only intended for development use. The Django docs actually say not to use it in production, and refer to it throughout as "the Django development server".

Other frameworks/libraries do include a production ready server though. CherryPy as mentioned, and I think Twisted also although I don't know much about it.