Tagged Questions
CherryPy is a pythonic, object-oriented HTTP framework. See cherrypy.org for more information.
29
votes
7answers
6k views
Python Framework for small website
I am planning a small, simple website to showcase myself as an engineer. My preferred language is Python and I hope to use it to create my website.
My pages will be mostly static, with some database ...
12
votes
6answers
5k views
10
votes
3answers
915 views
Why don't Django and CherryPy support HTTP verb-based dispatch natively?
It's not the same to POST to an URL than to GET it, DELETE it or PUT it. These actions are fundamentally different. However, Django seems to ignore them in its dispatch mechanism. Basically, one is ...
10
votes
5answers
1k views
Python web programming
Good morning.
As the title indicates, I've got some questions about using python for web development.
What is the best setup for a development environment, more specifically, what webserver to use, ...
9
votes
2answers
860 views
Is CherryPy a robust webserver (ie, is it reliable under a huge load like Apache)?
I'm wondering because CherryPy is, from my knowledge, built purely in Python, which is obviously slower than C et al. Does this mean that it's only good for dev / testing environments, or could I use ...
9
votes
2answers
2k views
Deploying CherryPy (daemon)
I've followed the basic CherryPy tutorial (http://www.cherrypy.org/wiki/CherryPyTutorial). One thing not discussed is deployment.
How can I launch a CherryPy app as a daemon and "forget about it"? ...
9
votes
4answers
3k 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 cache for that query ...
8
votes
1answer
2k views
CherryPy behind Nginx reverse-proxy POST requests corrupted/truncated
I have put my application using Cherrypy 3.1.2 behind Nginx configured as a reverse-proxy.
All is working right for GET requests, but all POST requests return HTTP 400 - Malformed header.
I traced ...
8
votes
4answers
2k views
Python Webframework Confusion
Could someone please explain to me how the current python webframworks fit together?
The three I've heard of are CherryPy, TurboGears and Pylons. However I'm confused because TurboGears seems to use ...
7
votes
5answers
3k views
cherrypy vs flask/werkzeug
I want to write a Python "information server":
Various types of information will be displayed: tables of data, docs, etc. Some is dynamic and some static. I'd like to use HTML templating, and am ...
7
votes
4answers
555 views
cherrypy and wxpython
I'm trying to make a cherrypy application with a wxpython ui. The problem is both libraries use closed loop event handlers. Is there a way for this to work? If I have the wx ui start cherrypy is that ...
6
votes
2answers
384 views
cherrypy and relative path in WSGI app
running cherrypy with mod_wsgi on apache along with another php app. The cherrypy app is NOT mounted on root, but rather on something like 'localhost/apps/myapp' via WSGIScriptAlias in the apache ...
6
votes
2answers
563 views
Creating portable Django apps - help needed
I'm building a Django app, which I comfortably run (test :)) on a Ubuntu Linux host. I would like to package the app without source code and distribute it to another production machine. Ideally the ...
6
votes
1answer
792 views
CherryPy interferes with Twisted shutting down on Windows
I've got an application that runs Twisted by starting the reactor with reactor.run() in my main thread after starting some other threads, including the CherryPy web server. Here's a program that ...
6
votes
6answers
2k views
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?
6
votes
6answers
2k views
CherryPy Hello World error
When I am running CherryPy Hello World:
import cherrypy
class HelloWorld:
def index(self):
return "Hello world!"
index.exposed = True
cherrypy.config.update({'server.socket_port': ...
6
votes
5answers
1k views
What would you recommend for a high traffic ajax intensive website?
For a website like reddit with lots of up/down votes and lots of comments per topic what should I go with?
Lighttpd/Php or Lighttpd/CherryPy/Genshi/SQLAlchemy?
and for database what would scale ...
6
votes
2answers
2k 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 files. I recently ...
5
votes
1answer
394 views
Using CherryPy/Cherryd to launch multiple Flask instances
Per suggestions on SO/SF and other sites, I am using CherryPy as the WSGI server to launch multiple instances of a Python web server I built with Flask. Each instance runs on its own port and sits ...
5
votes
1answer
281 views
URL Builder for CherryPy
After using werkzeug as a web framework (which is great and simple, but doesnt support some features), i'm now trying cherrypy.
Now what I miss in cherrypy is werkzeug's elegant way of building urls ...
5
votes
5answers
642 views
Selecting a Python Web Framework
This may seem like a subjective question. But it is not (that's not the idea, at least).
I'm developing an Advertising software (like AdWords, AdBrite, etc) and i've decide to use Python. And would ...
5
votes
1answer
513 views
How can I use multiple databases in the same request in Cherrypy and SQLAlchemy?
My app connects to multiple databases using a technique similar to this. It works so long as I don't try to access different databases in the same request. Having looked back to the above script I see ...
5
votes
2answers
827 views
Tracking system and real time stats analysis in Python
This question is related to an older question: http://stackoverflow.com/questions/2019096/mysql-tracking-system. In short: I have to implement a tracking system that will have high loads using Python. ...
5
votes
5answers
3k views
Any good cherrypy tutorials or videos?
I am looking for a good in-depth tutorial to get me going on CherryPy and haven't been able to find one on Google. The CherryPy website has a tutorial, but it is rather simple and doesn't discuss ...
4
votes
1answer
119 views
python web server and periodic tasks
I am using CherryPy to receive requests through REST API. Apart from handling requests the application should also do some resource management every few seconds. What is the easiest way to do this?
...
4
votes
5answers
553 views
Python Web Framework for Small Team
I have 4 days off and I will use this time to rewrite our RoR (Ruby on Rails) Application in a python web framework just for fun ;-] (and why not make the switch, RoR is great but keep changing all ...
4
votes
1answer
190 views
CherryPy : Is there a best way to split the project in multiple files?
I'm new to CherryPy, coming from Django. I liked the way Django split the various parts of the project into many files, and I'd like to do the same in CherryPy, instead of having one big file.
I ...
4
votes
1answer
3k views
How to get a cross-origin resource sharing (CORS) post request working
I have a machine on my local lan (machineA) that has two web servers. The first is the in-built one in XBMC (on port 8080) and displays our library. The second server is a CherryPy python script ...
4
votes
1answer
406 views
Fix a 404: missing parameters error from a GET request to CherryPy
I'm making a webpage using CherryPy for the server-side, HTML, CSS and jQuery on the client-side. I'm also using a mySQL database.
I have a working form for users to sign up to the site - create a ...
4
votes
1answer
295 views
Memory consumption in Cherrypy
I am using Cherrypy in a RESTful web service and server returns XML as a result (lxml is being used to create XML). Some of those XMLs are quite large. I have noticed that memory is not being released ...
4
votes
2answers
1k views
CherryPy How to respond with JSON?
In my controller/request-handler, I have the following code:
def monkey(self, **kwargs):
cherrypy.response.headers['Content-Type'] = "application/json"
message = {"message" : "Hello World!" }
...
4
votes
1answer
371 views
Cherrypy multithreading example
I do know that cherrypy is a multithreaded and also has a threadpool implementation.
So I wanted to try an example showing multithreaded behaviour.
Now lets say I've my some function in the root class ...
4
votes
1answer
348 views
Open Source Alternative to ASP.NET membership
I'm currently supporting a Python web app with increasingly complicated user/role/permission management requirements. Currently, we are rolling our own user, groups, permissions, etc. code and ...
4
votes
1answer
881 views
Force CherryPy Child Threads
Well, I want cherrypy to kill all child threads on auto-reload instead of "Waiting for child threads to terminate" because my program has threads of its own and I don't know how to get past this. ...
4
votes
3answers
819 views
fastcgi, cherrypy, and python
So I'm trying to do more web development in python, and I've picked cherrypy, hosted by lighttpd w/ fastcgi. But my question is a very basic one: why do I need to restart lighttpd (or apache) every ...
4
votes
1answer
509 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 so that each of the ...
4
votes
3answers
2k views
python postgres cursor timestamp issue
I am somewhat new to transactional databases and have come across an issue I am trying to understand.
I have created a simple demonstration where a database connection is stored inside each of the ...
4
votes
2answers
2k views
Best practice for integrating CherryPy web-framework, SQLAlchemy sessions and lighttpd to serve a high-load webservice
I'm developing a CherryPy FastCGI server behind lighttpd with the following setup to enable using ORM SQLAlchemy sessions inside CherryPy controllers. However, when I run stress tests with 14 ...
4
votes
3answers
680 views
CherryPy server name tag
When running a CherryPy app it will send server name tag something like CherryPy/version.
Is it possible to rename/overwrite that from the app without modifying CherryPy so it will show something ...
3
votes
1answer
39 views
How do I set multiple cookies with CherryPy
From CherryPy documentation, there seems to be only one cookie slot. Here's my example code
def sendCookie(self):
cookie = cherrypy.response.cookie
cookie['name'] = 'Chips Ahoy!'
return ...
3
votes
1answer
67 views
Cherrypy server winding up on too many requests
I was using a cherrypy based server on AWS to handle some REST API calls. But on deploying the server and with some serious traffic (around 200,000 requests within 8hours) the server wound up. The ...
3
votes
2answers
168 views
Problems serving static files favicon.ico and robots.txt in CherryPy 3.1
When I try to browse to favicon.ico, for instance, I get this error:
ValueError: Static tool requires an absolute filename (got 'favicon.ico')
I can get to anything in my /images, /css and /js ...
3
votes
1answer
247 views
Hello world failing
I've just installed python 3.2.1 (32-bit) and cherrypy 3.2.1 (CherryPy-3.2.1.win32-py3.exe) on my Windows 7 box and have tried the hello world example (executed via PyScripter) but it hangs after the ...
3
votes
1answer
248 views
Static html Files in Cherrypy
I am having an issue with what should be a basic concept in cherrypy but as yet I have been unable to find a tutorial or example on how to do this (I am a Cherrypy newbie, be gentle).
The Problem.
...
3
votes
1answer
230 views
Getting a cherrypy Hello World running on EC2 instance
I am trying to do a simple proof of concept on a new EC2 instance in which I run the "Hello World" tutorial code from the CherryPy distribution.
CherryPy launches successfully, and a wget run ...
3
votes
1answer
569 views
Cherrypy vs. Apache/mod_wsgi
What are pros/cons?
-Stability
-Developer friendliness
-System resources
-Scalability
3
votes
1answer
421 views
running cherrypy application on gevent wsgi server
I have an existing cherrypy application but I want to know is if it's at all possible to run it on the gevent wsgi server. I imagine I can but I don't have access to a linux server to test out gevent ...
3
votes
1answer
429 views
CherryPy 60x as slow in benchmark with 8 requesting threads compared to 7
I'm curious why when benchmarking Python web server CherryPy using ab, with -c 7 (7 concurrent threads) it can server 1500 requests/s (about what I expect), but when I change to -c 8 it drops way down ...
3
votes
2answers
442 views
2-way SSL with CherryPy
From CherryPy 3.0 and onwards, one-way SSL can be turned on simply by pointing to the server certificate and private key, like this:
import cherrypy
class HelloWorld(object):
def index(self):
...
3
votes
1answer
436 views
CherryPy - saving checkboxes selection to variables
I'm trying to build a simple webpage with multiple checkboxes, a Textbox and a submit buttom.
I've just bumped into web programing in Python and am trying to figure out out to do it with CherryPy.
I ...