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 on how this data is reaching me. I need to be able to read the data line by line
Now I have a very simple Cherrypy server setup to accept the POST request. Here is the function that handles the POST request:
class PostEvent(object):
exposed = True
def POST(self, **urlParams):
cl = cherrypy.request.headers['Content-Length']
raw_body = cherrypy.request.body.read(int(cl))
lines = raw_body.splitlines()
with open('log.txt', 'w') as f:
for line in lines:
f.write('%s\n' % line)
Then I simply issue the following curl command to test:
curl -i -k -H "Content-Type: application/json" -H "Accept: application/json" -X POST --data @test_data -u username http://test-url.com
Where the file test_data contains my json data in the format specified above. I get a 200 response, however, all of the data read from the file is on one line like below:
{"line":"one"}{"line":"two"}{"line":"three"}
It seems as if when cherrypy is reading the body it is ignoring line delimiters such as \n. How do I get cherrypy to read the request body as it is formatted? Or more specifically how can I read the request body line by line and not all at once?
raw_body.count('\n')to a file? – Martijn Pieters Feb 14 at 15:58f.write(str(raw_body.count('\n')))I get0. Even when I explicitly add the\nto the end of the lines I still get0. Could cherrpy be doing some sort of pre processing before hand? – Nic Young Feb 14 at 16:09raw_bodydoes not have newlines in it, so.splitlines()returnsraw_bodyunchanged in a list, and you are writing it out the file as one line. Are you 100% certain thatcurlis sending the data with\nnewlines? – Martijn Pieters Feb 14 at 16:11curlyou have to use the--data-binaryflag. If you want to make an answer, I will accept it. Thank you so much! – Nic Young Feb 14 at 16:17--data-asciiwill mess with newlines. There, answer formulated. :-) – Martijn Pieters Feb 14 at 16:21