InterviewSolution
| 1. |
What Is Cherrypy Configuration? |
|
Answer» The FRAMEWORK COMES with its own configuration system allowing you to parameterize the HTTP server. The settings for the configuration can be stored either in a text FILE with syntax close to the INI format or as a complete Python dictionary. To configure the CherryPy server INSTANCE, the developer needs to use the global section of the settings. global_conf = { The framework comes with its own configuration system allowing you to parameterize the HTTP server. The settings for the configuration can be stored either in a text file with syntax close to the INI format or as a complete Python dictionary. To configure the CherryPy server instance, the developer needs to use the global section of the settings. global_conf = { |
|