Trying To Post Json Data From Python To Php
I have modified http://fivefilters.org/term-extraction/ this project so that: Given input (https://gist.github.com/4426264) of text the python script term-extraction.py outputs key
Solution 1:
Seems that self.response.out.write function returns None. I think on line 69 you should have:
mydata = json.dumps({'json': list}, indent=0)
Post a Comment for "Trying To Post Json Data From Python To Php"