Harvested on
| | Category: Government Schemes Current Affairs | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
| | Category: India Current Affairs [National & States] • States Current Affairs | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
| | Category: Today's News Headlines | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
| | Here are top News Headlines of 24th September 2020. INDIA Indian Navy, Royal Aust... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
| | On September 25, 2020, the Pradhan Mantri Sahaj Bijili Har Ghar Yojana completed ... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
| | The Finance Minister Nirmala Sitaraman recently allowed five states to raise addi... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
| | The Government of India recently sanctioned 670 Electric buses and 241 charging s... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
| | Topics: 25th September • Current Affairs Headlines • Current Affairs: News Headli... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
| | Topics: Deen Dayal Upadhyaya Gram Jyoti Yojana • DISCOM • Electricity • Saubhagya... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
| | Topics: Electric Bus • Electric Vehicles • FAME India • FAME-II • National Electr... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
| | Topics: Government Securities • National Food Security Act • One Nation One Card ... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
25 September 2020: Today’s News Headlines | September 25, 2020 | Topics: Kerala • Non-Communicable Diseases • Poverty • Sustainable Development Go... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
FAME Scheme: 670 new electric buses and 241 charging stations sanctioned | September 25, 2020 | Topics: Heathcare • Medical Council Of India • National Medical Commission • Nati... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
Finance Minister allows five states to raise financial resources through Open Mar... | September 25, 2020 | On September 24, 2020, Kerala won the United Nation Interagency Task Force Award ... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
Kerala wins United Nations Award for Control of Non-Communicable Diseases | September 25, 2020 | Category: Legal & Constitution Current Affairs | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
National Medical Commission: Country’s apex regulator of medical education comes ... | September 25, 2020 | On September 25, 2020, the National Medical Commission began its operation. The C... | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
Saubhagya Scheme completes three years: Key Facts | September 25, 2020 | Category: Awards, Honors & Persons In News Current Affairs | https://www.gktoday.in/current-affairs/ | https://www.gktoday.in/current-affairs/ | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 | 2020-09-25 17:46:29 |
Sample code snippets to quickly import data set into your application
For more information on how to automatically trigger an import please reference
our WebHook API guide
Integrating with Java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) {
try {
URL urlCSV = new URL(
"https://cache.getdata.io/n79415_362a5f9065b290f80da0f16fbc1b8f59eses/latest_all.csv"
);
URLConnection urlConn = urlCSV.openConnection();
InputStreamReader inputCSV = new InputStreamReader(
((URLConnection) urlConn).getInputStream()
);
BufferedReader br = new BufferedReader(inputCSV);
String line;
String[] fields;
while ((line = br.readLine()) != null) {
// Each row
fields = line.split(",");
System.out.println(Arrays.toString(fields));
}
// clean up buffered reader
br.close();
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
Integrating with NodeJs
const csv = require('csv-parser');
const https = require('https');
const fs = require('fs');
const file = fs.createWriteStream("temp_download.csv");
const request = https.get(
"https://cache.getdata.io/n79415_362a5f9065b290f80da0f16fbc1b8f59eses/latest_all.csv",
function(response) {
response.pipe(file);
}
);
file.on('finish', function() {
file.close();
fs.createReadStream('temp_download.csv').pipe(csv()).on('data', (row) => {
// Each row
console.log(row);
}).on('end', () => {
console.log('CSV file successfully processed');
});
});
Integrating with PHP
$data = file_get_contents("https://cache.getdata.io/n79415_362a5f9065b290f80da0f16fbc1b8f59eses/latest_all.csv");
$rows = explode("\n",$data);
$s = array();
foreach($rows as $row) {
# Each row
var_dump( $row);
}
Integrating with Python
import csv
import urllib2
url = 'https://cache.getdata.io/n79415_362a5f9065b290f80da0f16fbc1b8f59eses/latest_all.csv'
response = urllib2.urlopen(url)
cr = csv.reader(response)
for row in cr:
# Each row
print row
Integrating with Ruby
require 'open-uri'
require 'tempfile'
require 'csv'
temp_file = Tempfile.new( "getdata", :encoding => 'ascii-8bit')
temp_file << open("https://cache.getdata.io/n79415_362a5f9065b290f80da0f16fbc1b8f59eses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end