Harvested on
A critical appraisal of the role of triangulation in nursing research | J Sim, K Sharp - International journal of nursing studies, 1998 - Elsevier | | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC |
Assessment, disability and the problem of compensation | K Sharp, S Earle - Assessment & Evaluation in Higher Education, 2000 - Taylor & F... | | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC |
| K Sharp, S Earle - Disability & Society, 2002 - Taylor & Francis | | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC |
| L Zhao, S Ha, KW Sharp, AB Geltmacher, RW Fonda… - Acta Materialia, 2014 - Elsevi... | | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC |
Crime, deviance and the disembodied self: Transcending the dangers of corporealit... | Y Jewkes, K Sharp - Dot. cons, 2012 - taylorfrancis.com | | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC |
Cyberpunters and cyberwhores: Prostitution on the Internet | K Sharp, S Earle - Dot. cons, 2012 - taylorfrancis.com | | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC |
Fabrication and mechanical characterization of 3D woven Cu lattice materials | Y Zhang, S Ha, K Sharp, JK Guest, TP Weihs… - Materials & Design, 2015 - Elsevier... | | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC |
Hybrid core carbon fiber composite sandwich panels: Fabrication and mechanical re... | T George, VS Deshpande, K Sharp, HNG Wadley - Composite structures, 2014 - Elsevi... | | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC |
The case for case studies in nursing research: the problem of generalization | K Sharp - Journal of Advanced Nursing, 1998 - Wiley Online Library | | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC |
[BOOK] Sex in cyberspace: Men who pay for sex | S Earle, K Sharp - 2016 - books.google.com | | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&as_vis=1&q=keith+sharp&btnG... | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC | 2021-10-06 11:02:34 UTC |
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/n97397_7fb9751ba341e468253fe137efc9ae35eses/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/n97397_7fb9751ba341e468253fe137efc9ae35eses/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/n97397_7fb9751ba341e468253fe137efc9ae35eses/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/n97397_7fb9751ba341e468253fe137efc9ae35eses/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/n97397_7fb9751ba341e468253fe137efc9ae35eses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end