About 400 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 …

  4. cherrypy — CherryPy 18.10.1.dev0+gd1eb64e.d20240614 …

    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 …

  5. 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 …

  6. 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.

  7. cherrypy.test.test_config — CherryPy …

    [docs] defsetup_server():@cherrypy.config(foo='this',bar='that')classRoot:def__init__(self):cherrypy.config.namespaces['db']=self.db_namespacedefdb_namespace(self,k,v):ifk=='scheme':[email protected](alias=('global_','xyz'))defindex(self,key):returncherrypy.request.config.get(key,'None')@cherrypy.exposedefrepr(self,key):returnrepr ...

  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 …

  9. cherrypy._cplogging — CherryPy …

    By default, the global logs are named "cherrypy.error" and "cherrypy.access", and the application logs are named "cherrypy.error.2378745" and "cherrypy.access.2378745" (the number is the …

  10. Basics — CherryPy 18.10.1.dev0+gd1eb64e.d20240614 …

    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 …