6
votes
3answers
531 views
Does SQLAlchemy support caching?
Does SQLAlchemy support some kind of caching so if i have lots of time the same query it would return the response from cache instead of querying the database until i clear the cac …
0
votes
2answers
28 views
How to generate a graphic on the fly with cherrypy
I am developing a small web application using cherrypy and I would like to generate some graphs from the data stored in a database. The web pages with tables are easy and I plan t …
0
votes
3answers
79 views
CherryPy3 and IIS 6.0
I have a small Python web application using the Cherrypy framework. I am by no means an expert in web servers.
I got Cherrypy working with Apache using mod_python on our Ubuntu s …
2
votes
4answers
96 views
CherryPy (or other Python framework) with FastCGI on shared host
I am trying to configure the Python mini-framework CherryPy with FastCGI (actually fcgid) on Apache. I am on a shared host, so I don't have access to httpd.conf, just htaccess. I h …
0
votes
2answers
26 views
Error while exiting cherrypy server
Guys, I am getting following error while exiting cherrypy server. What is this error about?
2009-11-04 09:32:35,015 WARNING Error in atexit._run_exitfuncs:
2009-11-04 09:32:35,01 …
0
votes
2answers
36 views
CherryPy variables in html
I have a cherryPy program that returns a page that has an image (plot) in a table. I would also like to have variables in the table that describe the plot. I am not using any templ …
0
votes
1answer
75 views
CherryPy, load image from matplotlib, or in general
I am not sure what I am doing wrong, It would be great if you could point me toward what to read. I have taken the first CherryPy tutorial "hello world" added a little matplotlib p …
0
votes
3answers
70 views
Cherrypy server unavailable from anything but localhost.
I am having an issue with cherrypy that looks solved, but doesn't work. I can only bind on localhost or 127.0.0.1. Windows XP Home and Mac OS X (linux untested), cherrypy 3.1.2, p …
1
vote
2answers
34 views
Python Cherrypy Access Log Rotation
If I want the access log for Cherrypy to only get to a fixed size, how would I go about using rotating log files?
I've already tried http://www.cherrypy.org/wiki/Logging, which s …
0
votes
1answer
34 views
Dynamic URL with CherryPY MethodDispatcher
I need to configure a RESTful style URL that support the following URL scheme:
/parent/
/parent/1
/parent/1/children
/parent/1/chidren/1
I want to use the MethodDispatcher s …
2
votes
3answers
359 views
How do I configure the ip address with CherryPy?
I'm using python and CherryPy to create a simple internal website that about 2 people use. I use the built in webserver with CherryPy.quickstart and never messed with the config fi …
1
vote
6answers
245 views
cherrypy vs django
cherrypy vs django, which would you use and why
0
votes
1answer
35 views
Using CherryPy as a blocking/non-threading server for easier debugging
Is it possible to use the CherrPy server as a blocking/non-threading server (for easier debugging?)
0
votes
1answer
44 views
How to shutdown cherrypy from within?
I am developing on cherrypy, I start it from a python script.
For better development I wonder what is the correct way to stop cherrypy from within the main process (and not from t …
0
votes
2answers
138 views
Install CherryPy on Linux hosting provider without command line access
I have a linux based web hosting provider (fatcow.com) that doesn't give any command line access and won't run the setup script for CherryPy (python web server) for me.
Is there a …
