AI-powered search & chat for Data / Computer Science Students

Tutorials

 CherryPy Documentation and Tutorials

Tutorials This tutorial will walk you through basic but complete CherryPy applications that will show you common concepts as well as slightly more advanced ones. Contents Tutorials Tutorial 1: A basic...

Read more at CherryPy Documentation and Tutorials

Foreword

 CherryPy Documentation and Tutorials

Foreword Why CherryPy? CherryPy is among the oldest web framework available for Python, yet many people aren’t aware of its existence. One of the reason for this is that CherryPy is not a complete sta...

Read more at CherryPy Documentation and Tutorials

History

 CherryPy Documentation and Tutorials

History v18.8.0 17 Jul 2022 %s1974 : Dangerous characters received in a host header encoded using RFC 2047 are now elided by default. Currently, dangerous characters are defined as CR and LF. The orig...

Read more at CherryPy Documentation and Tutorials

Installation

 CherryPy Documentation and Tutorials

Installation CherryPy is a pure Python library. This has various consequences: It can run anywhere Python runs It does not require a C compiler It can run on various implementations of the Python lang...

Read more at CherryPy Documentation and Tutorials

Configure

 CherryPy Documentation and Tutorials

Configure Configuration in CherryPy is implemented via dictionaries. Keys are strings which name the mapped value; values may be of any type. In CherryPy 3, you use configuration (files or dicts) to s...

Read more at CherryPy Documentation and Tutorials

Extend

 CherryPy Documentation and Tutorials

Extend CherryPy is truly an open framework, you can extend and plug new functions at will either server-side or on a per-requests basis. Either way, CherryPy is made to help you build your application...

Read more at CherryPy Documentation and Tutorials

Glossary

 CherryPy Documentation and Tutorials

Glossary application A CherryPy application is simply a class instance containing at least one page handler. controller Loose name commonly given to a class owning at least one exposed method exposed ...

Read more at CherryPy Documentation and Tutorials

Deploy

 CherryPy Documentation and Tutorials

Deploy CherryPy stands on its own, but as an application server, it is often located in shared or complex environments. For this reason, it is not uncommon to run CherryPy behind a reverse proxy or us...

Read more at CherryPy Documentation and Tutorials

Contribute

 CherryPy Documentation and Tutorials

Contribute CherryPy is a community-maintained, open-source project hosted at Github. The project actively encourages aspiring and experienced users to dive in and add their best contribution to the pr...

Read more at CherryPy Documentation and Tutorials

For Enterprise

 CherryPy Documentation and Tutorials

For Enterprise CherryPy is available as part of the Tidelift Subscription. The CherryPy maintainers and the maintainers of thousands of other packages are working with Tidelift to deliver one enterpri...

Read more at CherryPy Documentation and Tutorials

Testing

 CherryPy Documentation and Tutorials

Testing To run the regression tests, first install tox: then run it To run individual tests type:

Read more at CherryPy Documentation and Tutorials

Basics

 CherryPy Documentation and Tutorials

Basics The following sections will drive you through the basics of a CherryPy application, introducing some essential concepts. Contents Basics The one-minute application example Hosting one or more a...

Read more at CherryPy Documentation and Tutorials

Advanced

 CherryPy Documentation and Tutorials

Advanced CherryPy has support for more advanced features that these sections will describe. Contents Advanced Set aliases to page handlers RESTful-style dispatching The special _cp_dispatch method The...

Read more at CherryPy Documentation and Tutorials

Support

 CherryPy Documentation and Tutorials

Support You’ve read the documentation and you’ve brushed up on the basics of Python and web development, but you still could use some help. Users have several options. I have a question If you have a ...

Read more at CherryPy Documentation and Tutorials