[datameet] Re: Script to download from data.gov.in

2015-11-06 Thread shantanu oak
Hi, If you know little bit of python, you can parse JSON using modules like pandas and requests. import json import requests import pandas as pd d = json.loads(requests.get('https://data.gov.in/node/305681/datastore/export/json').text) pd.DataFrame(d["data"], columns=[x["label"] for x in d["fi

[datameet] Re: Script to download from data.gov.in

2015-11-06 Thread Karthik Shashidhar
Thanks Shantanu. Registering now. Hopefully this will make data download easier. On Thursday, 5 November 2015 12:23:44 UTC+5:30, shantanu oak wrote: > > Hi, > If you register with data.gov.in - then you will get an API key that can > be used to access JSON data directly in your PHP/ Python scri