var data = JSON.parse(body.get_string_from_utf8())
print( "Response Code: " + str(response_code) +"\nResult: " + str(result) +"\nData = " + str(data.result) )
works fine for any json-formatted web file. But, any other formatted web file (.csv, .txt) prints :
Response Code: 200
Result: 0
Data = Null (<-- My Problem Here)
Makes me think that json.parse() works only for json-formatted data. If correct, then where are the parsers for other file types? Is there a way to httprequest GET file data that is NOT json?
Thanks