CherryPy is a pythonic, object-oriented HTTP framework. See cherrypy.org for more information.

learn more… | top users | synonyms

0
votes
0answers
5 views

Cherrypy behing apache with mod_python

I have problem with cherrypy deployment behind apache with mod_python. I have this apache configuration: 4 <VirtualHost *> 5 ServerAdmin martin@podhola.com 6 ServerName ...
0
votes
1answer
13 views

Unit testing Cherrypy HTTPRedirect.

I’m writing a cherrypy application that needs to redirect to a particular page and I use HTTPRedirect(‘mynewurl’, status=303) to achieve this. This works inasmuch as the browser (Safari) redirects to ...
0
votes
0answers
19 views

Pass variable from called Mako template to inherited template

I am using CherryPy with Mako templates. I am trying to work out how to pass aruguments from the initial call (in this example title): class Landing(object): def index(self): tmpl = ...
0
votes
1answer
19 views

Profiling CherryPy

I've been trying to start profiling my CherryPy webserver, but the documentation is lacking in detail in how this should be set up. I understand that I should be able to use cherrypy.lib.profiler as ...
1
vote
2answers
29 views

CherryPy can't seem to find CSS script (static or absolute paths)

i'm using the cherryPy framework to serve my site, but it cannot seem to find my css script with either the static path or the absolute path. The css script works fine if i just go to the index.tmpl ...
1
vote
4answers
38 views

Restart Python.py when it stops working

I am using Cherrypy framework to run my python code on server. But the process stops working when the load increases. Every time this happens I have to manually go and start the python code. Is there ...
0
votes
1answer
21 views

Python: CherryPy and Win32 API in multithreading?

In order to add more tools to my Python arsenal, I've started work on a pet project - a personal time management app, Thyme. Currently, the app consists of two processes: Every 500ms, a separate ...
2
votes
1answer
52 views

Save the state of page. Cookie or session?

I have a little web app (which only has 1 page) that allows user to input and select some options. The input texts and selections will be displayed in another div in the form of table. You may want to ...
2
votes
1answer
111 views

Raspberry Pi: how to send serial command using Ethernet?

I have a python script, which will start cherrypy webserver when run in the terminal. In the script, i use pyserial by importing serial, then i open up the port /dev/ttyAMA0 and i can send any serial ...
-1
votes
0answers
26 views

How to save a web session with python? [closed]

I have a web application that allows user to select and key in some strings. The selection and the strings will be displayed in another div using javascript. The web application is hosted using ...
1
vote
1answer
29 views

Streaming files with cherrypy

I am trying to stream a video file using cherrypy. When I go to localhost:8080/stream?video=video.avi it starts downloading, but after a few seconds it just "completes" the download no matter how ...
1
vote
2answers
73 views

Which one is better to create a web application? web2py or cherrypy [closed]

I am using Raspberry Pi to function as a mini web server. At first, i came across web2py and started to learn it. It was tough for a beginner like me. Later, a friend in a forum introduced CherryPy to ...
0
votes
0answers
20 views

Access CherryPy session object from other thread?

Is it possible in some way to access a cherrypy session object from a different thread? Here's what I am trying to do (other approaches welcome): When a user (web browser) calls a certain function, ...
0
votes
1answer
29 views

SyntaxError: unexpected character after line continuation character using .format(\*\*vars())

I am getting started with my first cherrypy app. I am using the example from the docs http://docs.cherrypy.org/dev/progguide/REST.html import cherrypy class Resource(object): def ...
1
vote
0answers
29 views

How can I get consistent results for my error messages?

I have the following little script running as a standalone app based on CherryPy 3.2.2 (alright, actually it's a condensed version to demonstrate what I'm trying to correct): import cherrypy from ...
1
vote
0answers
49 views

Cherrypy Session Release KeyError

I've written a python web-based asset management system to manage the production of a short cg animation. I'm using Python2.7, SQLAlchemy with SQLite, and CherryPy. It's currently being used in ...
0
votes
0answers
53 views

How to do XMLRPC with CherryPy

Server (CherryPy 3.2.0): import cherrypy class XMLRPCServer(cherrypy._cptools.XMLRPCController): def index(self): return 'index' index.exposed = True if __name__ =='__main__': ...
0
votes
0answers
29 views

Windows service written in python will not start (Command line or manual invocation from windows services)

I am trying to write a windows service that envokes a cherrypy script when run. A skeleton of my code looks like this: import win32service import win32serviceutil import win32api import win32con ...
0
votes
0answers
30 views

Upgrading a web portal: CherryPy2.2 to 3.2 Issues

I am a Java guy who has inherited a web portal upgrade project that uses CherryPy2.2. There is a doLogin Module that provides the login page and a Portal module that runs all the portal functions. I ...
0
votes
1answer
49 views

Configuring host and port in a CherryPy Python web app with more than one class

I have a simple Cherrypy web application, including two classes. The init code looks like this: c = MyClass() c.updates = AnotherClass() app = cherrypy.tree.mount(c, '/', 'myapp.config') ...
-1
votes
1answer
70 views

how to define global variable in cherrypy

I think that all is in the title's question. I need to create the global variable because I serve in all functions 's Cherrypy. import cherrypy import urllib class Root(object): @cherrypy.expose ...
0
votes
1answer
67 views

I add the query string on Url but the Url not exchange

This is a server in Cherrypy that I programmed and I want add the query string. But when I use the redirect the site and it appears that does not work with the localhost:8080/index?foo=1&foo=2 ...
1
vote
1answer
90 views

CherryPy Real-Time Web Application

I've inherited a web application that is running a CherryPy web server. I need to implement a user interface that will automatically update with data from the server. Right now the solution is to use ...
0
votes
2answers
101 views

Friendly URL for a REST WebService with CherryPy

I'm making a RESTful WebService using CherryPy 3 but I encounter a problem : I want to be able to answer requests like : /customers/1/products/386 meaning I want all the product with ID 386 of the ...
0
votes
0answers
59 views

Disabling TLS renegotiation in Python

I'm implementing SSL connection in my web.py however the server fails security scanning and stuck on TLS Renegotiation DoS vulnerability. Here is my code snippet: import web from web.wsgiserver ...
0
votes
1answer
43 views

CherryPy: How to restrict a route to POST-only

I've a web-form that looks like: <form action="/process_form/" method="post"> <input type="text" name="login" value="login" /> <input type="text" name="password" value="123" /> ...
1
vote
1answer
26 views

Cherrypy: Where should I keep my templates

I'm trying to use jinja2 as the template lib for cherrypy. I'm unable to figure out where should I keep my template files. The way I'm using it is as documented here: ...
0
votes
0answers
83 views

Cherrypy 3.2 unit testing [closed]

My question is how to get started to unit test Cherrypy (3.2) web applications? Most of the literature for Cherrypy unit testing is pre version 3.2. I am learning Cherrypy (3.2) and am following the ...
0
votes
0answers
28 views

Python AttributeError: CherryPy

I started using/testing cherrypy and wrote the module with the below code import cherrypy from ShutterDeck import Controller class Root: @cherrypy.expose def index(self): return 'Hello ...
2
votes
2answers
120 views

A way to “pipe” gnu screen output to a running python process?

in short: I'm developing a small piece of software, that is able to control (start, stop, restart and so on - with gnu screen) every possible gameserver (which have a command line) and includes a ...
0
votes
1answer
94 views

Other separators I want use (not & and =) when I submitting a form

I have the server programmed in Cherrypy and I use also Mako Template. And I have the variable dict (variable Mako that contain information's work) for working with the user( this I have to use Mako ...
0
votes
1answer
121 views

cherrypy file upload combined with requests post request

I'm having a hard time combining a python requests post request with a cherrypy server in order to upload a file. Here's what the server side code inside the cherrypy server looks like: ...
3
votes
1answer
107 views

How do you stop cherrypy custom tools used as decorators being applied to static files?

I'm trying to develop an app for Google App Engine using Cherrypy. I'm using a custom tool to apply templates with. Part of the output is a html css stylesheet declaration. I can get cherrypy to ...
2
votes
0answers
26 views

create a cheetah tool for cherrypy

I just started to play around with cherrypy and wanted to use cheetah as a templating engine. Therefore I wanted to create a tool so I just can use the annotation feature to point to my template ...
0
votes
1answer
55 views

Python write or add on URL

I need the command for working the Url using CherryPy and Python version 2.7.3 I want to change the url. Old Url is localhost:8080 and automatically adding foo=1&foo=2 (variable s) in the Url ...
0
votes
0answers
74 views

Disabling weak SSL Cipher CherryPy/Windows Server 2008

I am running CherryPy 3.2.2 (Python 2.7) as a web server under Windows server 2008. While scanning with SSLLABS, the cipher suite "TLS_RSA_WITH_DES_CBC_SHA" is identified as weak. How can I disable ...
0
votes
1answer
37 views

ImportError: cannot import name cpg

I have this project that I find on the http://www.ibm.com/developerworks/opensource/library/os-cherrypy/?ca=dgr-lnxw01CherryPy #!/usr/bin/env python import cherrypy from cherrypy import cpg class ...
0
votes
1answer
75 views

Check if application is running on server or local

My app uses Python with cherrypy to provide a web service. I want to set up a different config file, depending on if my application is started on my local machine or on my remote server. Is there any ...
0
votes
1answer
31 views

cherrypy call function when session expires

This is a duplicate of this question, but I did not find a suitable answer. All I want to do is delete something in my database when a session expires. Is there any way to do this without a lot of ...
0
votes
1answer
74 views

Render cherrypy's template with id/hash

How would I render a page and go to a specific id? Right now I have a following function with this code: @cherrypy.expose @require def page(): tmpl = lookup.get_template('page.html') return ...
0
votes
0answers
29 views

Defining custom Mako tool with Cherrpy.Tool() failing

I am attempting to define my on custom Mako loader in my cherrpy server via the following in my server.py: from my.path.templating import MakoLoader from HandleEvent import HandleEvent ...
2
votes
1answer
72 views

How to I start the site with QueryString?

I have the Server's programmed in Cherrypy and using Mako. I haved one variable (json_data where is the content of a file [json]) that contain the data for work on my site. To change these ...
1
vote
0answers
29 views

Managing DB and Session operations BEFORE login

When a user comes to our webset/webapp, we would like the user to be able to go around the site and do things as normal (currently the site consists of almost exclusively CRUD operations). That way ...
1
vote
1answer
76 views

Passing file path argument to a CherryPy

In CherryPy how do you pass an argument like file path (i.e. /abc/def/ghi) through a URL? I want to do something like http://...../filepath="abc/def/ghi". Thanks.
0
votes
0answers
46 views

CherryPy Authentication and URL Path issues

Folks, I am running into a two major issues with CherryPy. First, I am working with a copy of CherryPy that is embedded into Indigo (http://www.perceptiveautomation.com). That being said, here is ...
0
votes
0answers
44 views

Cherrypy cookie names

I have 2 cherrypy web apps that use the authentication in this example http://tools.cherrypy.org/wiki/AuthenticationAndAccessRestrictions I changed the sessions from ram to file based, though. ...
0
votes
3answers
155 views

Unable to install CherryPy

I know this is a very dumb question, but I can't install CherryPy. In the documentation is written: To install, change to the directory where setup.py is located and type (python-2.3 or later ...
0
votes
1answer
77 views

How to return jsonp in cherrypy?

How to return jsonp with cherrypy? I am currently using the following to return json: class Root(object): @cherrypy.expose @tools.json_out def index(self): return {'key':'value'} Is ...
0
votes
1answer
44 views

Display numpy represented birmap in web interface [Python]

I want to show OpenCV processed image with web interface (made with CherryPy). Code below works fine, but is there way to perform such a task without writing/reading image file? import cherrypy ...
0
votes
0answers
43 views

cherrypy SessionAuth not working?

I'm probably overlooking something simple, but I cannot get Cherrypy SessionAuth to work. With debug on and no username in cherrypy.session, SessionAuth puts this in the log file: ...

1 2 3 4 5 12