Harvested on
American Association on Intellectual and Developmental Disabilities | https://greatnonprofits.org/org/american-association-on-intellectual-and-developm... | I've been a member for 13 years and appreciate timely information and educational... | Silver Spring, MD | | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC |
Autism Society of America | https://greatnonprofits.org/org/autism-society-of-america-7 | I am autistic and my immediate family hails from Chicago, Illinois. We literally ... | Rockville, MD | | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC |
BrightFocus Foundation | https://greatnonprofits.org/org/brightfocus-foundation | I came across BrightFocus after receiving a request for a donation to MDR in Clar... | Clarksburg, MD | | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC |
By Their Side | https://greatnonprofits.org/org/by-their-side | My elder brother has been supported by By Their Side (& its' predecessor) for mor... | Baltimore, MD | | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC |
Chesterwye Center Inc | https://greatnonprofits.org/org/chesterwye-center-inc | I’ve worked with three ladies consistently for over a year, in their residences. ... | Grasonville, MD | | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC |
Foundation Fighting Blindness Inc | https://greatnonprofits.org/org/foundation-fighting-blindness-inc-1 | The Foundation Fighting Blindness has contributed so much in the advancement of r... | Columbia, MD | | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC |
HASA | https://greatnonprofits.org/org/hasa | Hello, I hope you're doing well. My name is Adeena Malik and I was part of the AS... | Baltimore, MD | | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC |
Howard County Autism Society Inc | https://greatnonprofits.org/org/howard-county-autism-society-inc | Howard County Autism Society has been such a blessing to my family! This organiza... | Columbia, MD | | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC |
Jewish Foundation For Group Homes | https://greatnonprofits.org/org/jewish-foundation-for-group-homes | JFGH IS A GREAT ORGANIZATION!It has helped me growth as an individual with a disa... | Rockville, MD | | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC |
Jubilee Association of Maryland, Inc. | https://greatnonprofits.org/org/jubilee-association-of-maryland-inc | Jubilee is more than a residential service provider. They truly cultivate a sense... | Kensington, MD | | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | https://greatnonprofits.org/state/Maryland/category:Disabilities/sort:review_coun... | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 UTC | 2021-04-06 06:10:43 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/n88514_3ea21089e7d66ffe93c29a2a10c16358eses/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/n88514_3ea21089e7d66ffe93c29a2a10c16358eses/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/n88514_3ea21089e7d66ffe93c29a2a10c16358eses/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/n88514_3ea21089e7d66ffe93c29a2a10c16358eses/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/n88514_3ea21089e7d66ffe93c29a2a10c16358eses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end