About 84 results
Open links in new tab
  1. CherryPy — A Minimalist Python Web Framework

    CherryPy allows developers to build web applications in much the same way they would build any other object-oriented Python program. This results in smaller source code developed in less time.

  2. CherryPy — A Minimalist Python Web Framework

    CherryPy is a pythonic, object-oriented web framework. CherryPy allows developers to build web applications in much the same way they would build any other object-oriented Python program.

  3. Tutorials — CherryPy 0.1.dev53+g1f75bc9ee documentation

    Tutorial 4: Submit this form ¶ CherryPy is a web framework upon which you build web applications. The most traditional shape taken by applications is through an HTML user-interface speaking to your …

  4. Basics — CherryPy 0.1.dev53+g1f75bc9ee documentation

    In a nutshell, once CherryPy has found and called an exposed method, it is up to you, as a developer, to provide the tools to implement your application’s logic. CherryPy takes the opinion that you, the …

  5. Installation — CherryPy 0.1.dev53+g1f75bc9ee documentation

    Test your installation ¶ CherryPy comes with a set of simple tutorials that can be executed once you have deployed the package.

  6. Foreword — CherryPy 0.1.dev53+g1f75bc9ee documentation

    CherryPy has an devoted community that develops deployed CherryPy applications and are willing and ready to assist you on the CherryPy mailing list or Gitter. The developers also frequent the list and …

  7. Advanced — CherryPy 0.1.dev53+g1f75bc9ee documentation

    This means you will need a page handler that acts as a proxy for all of them. The default dispatcher cannot deal with that scenario on its own because it expects page handlers to be explicitly declared …

  8. Deploy — CherryPy 0.1.dev53+g1f75bc9ee documentation

    Thanks to the cherrypy.dispatch.VirtualHost dispatcher, we tell CherryPy which application to dispatch to when a request arrives. The dispatcher looks up the requested domain and call the according …

  9. Configure — CherryPy 0.1.dev53+g1f75bc9ee documentation

    In CherryPy 3, you use configuration (files or dicts) to set attributes directly on the engine, server, request, response, and log objects. So the best way to know the full range of what’s available in the …

  10. cherrypy — CherryPy 0.1.dev53+g1f75bc9ee documentation

    CherryPy applications are written as a tree of classes and methods, where each branch in the tree corresponds to a branch in the URL path. Each method is a 'page handler', which receives GET and …