[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

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

2015-11-04 Thread shantanu oak
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 script. -- Shantanu On Wednesday, 4 November 2015 11:25:27 UTC+5:30, Karthik Shashidhar wrote: > > One annoying thing about data.gov.in is that they put out data

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

2015-11-04 Thread Amanbir Singh
DownloadMaster is the Chrome equivalent if you prefer that. On Wednesday, 4 November 2015 11:25:27 UTC+5:30, Karthik Shashidhar wrote: > > One annoying thing about data.gov.in is that they put out data in > multiple files in a single catalog, and with the number of such files > occasionally bein