![]() | This article has multiple issues. Please helpimprove it or discuss these issues on thetalk page.(Learn how and when to remove these messages) (Learn how and when to remove this message)
|
Developer(s) | Andrew Kuchling, Neil Schemenauer and Greg Ward |
---|---|
Initial release | 12 August 2000; 24 years ago (2000-08-12)[1][2] |
Stable release | |
Repository | |
Written in | Python |
Operating system | Cross-platform |
Type | Web framework |
License | MIT License |
Website | quixote![]() |
Quixote is asoftware framework for developingweb applications inPython. Quixote "is based on a simple, flexible design, making it possible to write applications quickly and to benefit from the wide range of available third-party Pythonmodules".[4]
A Quixote application is typically a Python package, a collection of modules grouped into a singledirectory tree. Quixote then maps aURL to afunction ormethod inside the Python package; the function is then called with the contents of theHTTP request, and the results are returned to theclient.