Top "Cherrypy" questions

CherryPy is a pythonic, object-oriented HTTP framework.

How to return an image in an HTTP response with CherryPy

I have code which generates a Cairo ImageSurface, and I expose it like so: def preview(...): surface = cairo.ImageSurface(cairo.…

python http cherrypy cairo
python cherrypy - how to add header

How can I add retry-header in cherrypy? import cherrypy import os class Root: def index(self): cherrypy.response.headers['Retry-After'] = 60 …

python cherrypy
Which template technology should I use with CherryPy?

I'm in the process of building a web application using cherrypy. What template technology do you recommend I use?

python templates template-engine cherrypy
Problems with running cherrypy's hello world example

I'm trying to test cherrypy framework by using example from their site: import cherrypy class HelloWorld(object): def index(self): …

python cherrypy
Python Cherrypy 404 Error Handling

I have a web server that has all of the configurations set in the code, but I want to be …

python cherrypy
Adding HTTP Basic Authentication Header to Backbone.js Sync Function Prevents Model from Being Updated on Save()

I'm working on a web application that is powered by a restful API written with Python's CherryPy framework. I started …

javascript backbone.js http-headers cherrypy basic-authentication
bottle on cherrypy server + ssl

I am trying to run Bottle on top of Cherrypy's server. I want to get SSL Support. So far I …

python ssl cherrypy