CherryPy is a pythonic, object-oriented HTTP framework. Project Tracker & home page Downloads Documentation
0
votes
1answer
13 views
Creating a zip file stream in python with Cherry Py?
I would like to create a zip file on the fly to serve to users through Cherry Py: I tried the following code that produced an invalid zip file:
@cherrypy.expose
def ZipDir(self, *args):
path = ...
0
votes
1answer
21 views
apache server 8080 port conflict with cherrypy
I heard about cherrypy and out of curiosity tried to run this script.
import cherrypy
class HelloWorld(object):
def index(self):
return "Hello World!"
index.exposed = True
...
-3
votes
3answers
59 views
Load Static Content with CherryPy
I tryd now many things and i googled for hours but i couldn solve my problem.
Config File:
[/]
tools.staticdir.root = "/Users/phil/Dropbox/Projects/AppName"
[/main.css]
tools.staticfile.on = ...
0
votes
0answers
13 views
CherryPy :: grafting wsgigateway vs adding it to routes dispatcher
I am new to cherrypy, and am moving code from pylons to cherrypy ... I have a WSGIGateway object that i graft onto my cherrypy tree.
cherrypy.tree.graft(mygatewayobj, '/foo/')
I also have a routes ...
1
vote
3answers
31 views
cherrypy dynamically add objects
I'm using cherrypy to mimic an existing RESTful interface. One requirement is that I have is to be able to add objects on the fly.
So, for example, let's say I have an object, called myobj. I ...
0
votes
1answer
11 views
How to access all active sessions in CherryPy
I want to restrict number of sessions that are logged in as admins (to 1).
I would like to just go through the list of active sessions and check if they are logged in as admin. This way I don't have ...
0
votes
1answer
33 views
Python and Twitter Bootstrap
I currently am working in CherryPy and have a connection to a mssql database using the pymssql library. I'm looking to create a fancy front end to display the table with fancy sort, edit, and update ...
1
vote
2answers
55 views
Using Jinja2 with CherryPy 3.2
I have Python 3.2 set up with Apache via mod_wsgi. I have CherryPy 3.2 serving a simple "Hello World" web page. I'd like to start templating using Jinja2 as I build out the site. I'm new to Python and ...
0
votes
2answers
36 views
CherryPy WebService not returning NLTK collocations to browser window
I have a very simple CherryPy webservice that I hope will be the foundation of a larger project, however, I need to get NLTK to work the way I want.
My python script imports NLTK and uses the ...
3
votes
2answers
130 views
Python Frameworks for PHP Developers
So... I realize that you guys have probably heard this question about a million times before, but I just need an answer to this question...
I'm currently hosting on Linode and I'm running a LAMP ...
0
votes
2answers
37 views
cherrypy serve multiple requests / per connection
i have this code
(on the fly compression and stream)
@cherrypy.expose
def backup(self):
path = '/var/www/httpdocs'
zip_filename = "backup" + t.strftime("%d_%m_%Y_") + ".zip"
...
0
votes
0answers
11 views
Display exceptions in mod_wsgi hosted cherrypy app
I have a cherrypy app with works fine on my local machine, but not on my server. If an exception is thrown in a request handler, I see the following message in my browser:
The server encountered ...
0
votes
0answers
14 views
Can I develop an programme instance using CherryPy?
I want to have a programme that start alone and keep listen to the port : 2933, and respond that with a binary object....Is the CherryPy provide this ability? Thanks.
(If not, any things recommend ...
0
votes
1answer
20 views
Cherrypy and SimpleDB with boto
Anyone using Cherrypy and Boto? Any issues? Threads? Any simple examples out there?
I'm wondering where to put the initial boto.connect_sdb statement and whether I can save a domain object or have ...
1
vote
2answers
104 views
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 have tried this:
from bottle import Bottle, route
from cherrypy import wsgiserver
app = Bottle()
...
8
votes
2answers
79 views
How to kill the cherrypy process?
I am using cherrypy in python script.I think I have to register a callback method from the main application so that i can stop cherrypy main process from a worker thread,but how do i kill the main ...
0
votes
1answer
45 views
how can we set session using python and html?
Currently I am working on a project which use python as server side script and we are using cherrypy as server, because I just learnt python by myself so I am facing a problem, when I am loging into a ...
0
votes
1answer
31 views
Avoid using temporary files in CherryPy with multipart form POST requests [closed]
I'm interested in increasing the maxrambytes member of _cpreqbody.Part, but I'm not sure how. How can I subclass or somehow override _cpreqbody.Part to be able to increase the maxrambytes value?
Let ...
0
votes
0answers
18 views
CherryPy don't find .netrc file after 24 hours [closed]
I am using CherryPy server that gets authetication information form .netrc file.
It is working good but after 24 hours working, CherryPy cannot find this file.
Maybe someone had the same problem or ...
1
vote
2answers
69 views
Trailing Slash tool in CherryPy 3.2 not adding a trailing slash
I cannot get the trailing_slash tool to work. I've played around with
the options for the trailing_slash tool and nothing seems to have any effect.
I am using CherryPy 3.2.2 and Routes 1.13. I would ...
2
votes
1answer
45 views
Is there a way to use cherrypy's Monitor to perform a single task and then stop?
I have a web application that requests a report that takes more than 10 minutes to run. Apart from improving that performance, I would for now prefer to set up a thread to run the report and mail it ...
0
votes
0answers
21 views
xmpp sid is not retrieved from cherrypy cookie
I have a login page which connects to xmpp server over BOSH using Strophe. After establishing the connection, I store the value of sid in the cookies. For the cookies and stuff I am using ...
0
votes
0answers
55 views
Solved: CherryPy with Google App Engine: 500 Server Error
I am trying to use Google App Engine to get my CherryPy Code online working.
I've downloaded the GoogleAppEngineLauncher.app for Mac and edited the main.py as follows:
import cherrypy, json, csv
...
0
votes
0answers
81 views
Why doesn't Cherrypy example application run on Chrome, but on other browsers
I didn't get Cherrypy to work with Chrome so far, but I would like to.
So here is the code:
import cherrypy
class HelloWorld(object):
def index(self):
return "Hello World!"
...
0
votes
1answer
39 views
CherryPy index path
I have an app where the /index path has a special meaning. I don't want path / to be synonymous with /index. Right now, when I access /, cherrypy internally redirects me to the index view (object ...
0
votes
1answer
66 views
testing session variables and db storage in cherrypy app
I'm looking to write some unit tests for some cherrypy code.
Most of the unit test examples I have seen depend on os.environ and generally only test for the final response (html output) from the ...
0
votes
1answer
62 views
Python/Cherrypy processing file upload from Kwargs. Instance type not indexable. Trying to dump FieldStorage data
I am running cherrypy and a module that receives a file and I want to dump the data to disk.
Instead of using the cherrypy expose and getting the file from my main cherrypy application I wanted to ...
0
votes
1answer
49 views
Constants in cherrypy configuration file
I have a following Cherrypy configuration file:
[/tmp]
tools.staticdir.on: True
tools.staticdir.dir: "../something/path/"
Is it possible to put the string "../something/path/" as a constant in this ...
0
votes
1answer
31 views
call cherrypy function after session expiration
I have cherrypy server. It is working with files and I need to delete files when session expires. Is it possible call cherrypy function, when session is expired?
0
votes
3answers
124 views
In python, how to check if a date is valid?
I am building a kind of calender web app
I have set up the following form in HTML
<form action='/event' method='post'>
Year ("yyyy"): <input type='text' name='year' />
Month ("mm"): ...
0
votes
1answer
64 views
With SQLite, how do i read from a list into a database?
I am running a server with cherrypy and python script. Currently, there is a web page containing data of a list of people, which i need to get. The format of the web page is as follow:
www.url1.com, ...
0
votes
1answer
70 views
Using cherrypy in two modules but with only one cherrypy instance
I am using cherrypy for a project and use it in a main python script main.py
In a method within the main app I import a module called authentication
from authentication import auth and then pass it ...
0
votes
2answers
172 views
Cherrypy returning NotFound: (404, “The path '/' was not found.”)
I am new to cherrypy and am trying to mount a simple hello world application but it keeps returning "NotFound: (404, "The path '/' was not found.")", but I have defined it.
Here's what I got,
In the ...
2
votes
1answer
117 views
How to read data out of a SQLite database, into a dictionary before encoding it in JSON?
I am a beginner at python and using SQLite. So please be patient with me. I am not entirely sure how much information i should provide, so i have decided on putting up as much code as i think is ...
4
votes
2answers
165 views
cherrypy /dev/urandom (or equivalent) not found — error
I am running a cherrypy 3.2.0 server with Python 2.5.1, which gives the following error every few days on any instruction from UI until it is killed and re-started:-
[29/Mar/2012:06:37:57] HTTP ...
0
votes
2answers
219 views
How to display all the images in a folder with HTML, python and cherrypy
I am currently working on a web-app/server in python and cherrypy.
Right now, I have been trying to create a kind of gallery page. For every photo, i have implemented for following HTML code:
...
0
votes
4answers
77 views
In python, how to break list of strings into list of list of strings?
I am running a server with cherrypy and python script. Currently, there is a web page containing data of a list of people, which i need to get. The format of the web page is as follow:
www.url1.com, ...
1
vote
1answer
47 views
cherrypy throws Exception which causes Internal Server Error when using blocking gevent calls
I'm using gevent wsgi to run a cherrypy application, and doing some blocking gevent calls in the request handers. The blocking calls work as expected successfully parallelizing the usage of some ...
0
votes
1answer
89 views
Distinguish data received via POST and GET in Cherrypy
The variable cherrypy.request.params as it is described in the API contains the query string and the POST variables in a dictionary. However combing over this, it seems that it contains every variable ...
0
votes
1answer
62 views
Anyone have code examples for storing web sessions in mysql for cherrypy 3.2.2?
I found many examples for older versions of cherrypy but they each referenced importing modules not found in cherrypy 3.2.2. Looking here...
http://docs.cherrypy.org/dev/refman/lib/sessions.html
I ...
0
votes
0answers
29 views
Timeout on Twill method
I have an "Ubiquity Rocket" (high powered transceiver) that I need to check the signal status for as well as other information. It supplies this via the webpage http://192.168.1.21/status.cgi. I found ...
0
votes
3answers
86 views
Python webpage login error
I am trying to create create a kind of webserver withy python and cherrypy.
I wish to put the htmls into separate files and embedd them into my python script. The code i used to do that is.
...
0
votes
1answer
61 views
With python and cherrypy, how do i read a txt file and display it to a page?
I have got a txt file in the format of:
line_1
line_2
line_3
I am trying to read it into a list and displaying it on to a web page just as it looks inside the txt file; one line under another. Here ...
1
vote
1answer
255 views
Post JSON using Python Request
I need to POST a JSON from a client to a server. I'm using Python 2.7.1 and simplejson. The client is using Request. The server is CherryPy. I can GET a hard-coded JSON from the server (code not ...
-1
votes
2answers
160 views
tips to learn cherrypy
can any body give me some tips to learn cherrypy? I have learn python, I only know the simple example code and successfully run it, But I could not build a real web application. The cherrypy documents ...
1
vote
1answer
83 views
Is there any CherryPy's equivalent to Django's Message framework (MessageMiddleware)?
Is there any tool in CherryPy that provides equivalent/similar functionality as Django's Message Framework?
1
vote
3answers
80 views
Persistence for a python (cherrypy) web application?
I am trying rewrite a simple Rails application I made a while ago with cherrypy and Python3. So far I have been unable to find a Python replacement for ActiveRecord (the persistence part of the ...
0
votes
0answers
61 views
Is there a CherryPy debug toolbar?
Is it possible to have a debugging toolbar for CherryPy like django-debug-toolbar for Django and pyramid_debug_toolbar for Pyramid?
I want to be able to inspect the stacktrace when an exception ...
0
votes
1answer
84 views
eventsource is crashing my browser
Well, my use of eventsource is crashing my browser.
I have a simple page that displays a table of statuses, and javascript that listens to a server sent event for updates. I use jquery.eventsource to ...
1
vote
1answer
46 views
cherrypy, automatically performing some action before each request
I have several actions that I would like to perform and apply to every request sent to my cherrypy server. The most common example involves reading the users cookies to see if he has a 'remember me' ...