0
votes
2answers
294 views

Sending JSON through requests module and catching it using bottle.py and cherrypy

I have a server which needs to be able to accept JSON and then process it and then send JSON back. The code at my server side is using bottle.py with cherrypy. The route in concern is the following: ...
0
votes
1answer
135 views

Reading json data line by line in Cherrypy

I have json data that is going to be coming to my server in the following format: {"line":"one"} {"line":"two"} {"line":"three"} While I realize that this is not valid json format I have no control ...
0
votes
1answer
119 views

CherryPy & php: can't load class of data from pickle, but works from ssh on server

I am using CherryPy to generate and parse data for a php webpage, but getting an error that I can't replicate locally or via SSH (logging into the server and running the python script from the prompt ...
3
votes
1answer
1k 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 ...
7
votes
1answer
8k 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 ...
2
votes
2answers
2k views

Cannot serialize datetime as JSON from Cherrypy

I'm attempting to send a list of records in response to an Ajax query. This works well unless the results include a datetime field when my process fails with the error datetime.date(2011, 11, 1) is ...
4
votes
1answer
698 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 ...
3
votes
1answer
5k views

How to receive JSON in a POST request in CherryPy?

How to receive JSON from POST requests in CherryPy? I've been to this page, and though it does a good job explaining the API, its parameters, and what it does; I can't seem to figure out how to use ...
5
votes
2answers
4k 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!" } ...