How I can scrape JSON data from following response and save it in excel/text file with python ?
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1
Content-Disposition: attachment
Content-Type: application/json;charset=utf-8
Content-Length: 797
Date: Sun, 06 Nov 2016 08:32:13 GMT
Via: HTTP/1.1 sophos.http.proxy:3128
Connection: keep-alive
//OK[3,3,2,3,1,["java.util.ArrayList/4159755760","123456789","Bruce Wayne","Male","John","NO","1303052","[email protected]","123456789","A+","NO","No","00","American","63005541113","ssc.client.PersonalDetailValuesManager/227521317","20/05/1996","California","445302","USA"],0,7]
I want to scrape data such as 123456789, Bruce Wayne, Email, etc. in excel/text file, but how I can do it with python? (If not in any programming language)