Harvested on
Richard P Rodriguez JR - Age 47 | Cities Lived In:
Delhi, CA
Rohnert Park, CA
Delhi, CA
Santa Rosa, CA
Turlock... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC |
Richard P Rodriguez JR - Age 54 | Cities Lived In:
Stafford, TX
Houston, TX
Stafford, TX
Houston, TX
Houston, ... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC |
Richard P Rodriguez - Age 39 | Cities Lived In:
Pomona, CA
West Covina, CA
El Monte, CA
La Puente, CA
El Mo... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC |
Richard P Rodriguez - Age 41 | Cities Lived In:
West Lafayette, IN
Fort Myers, FL
Fort Myers, FL
West Lafaye... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC |
Richard P Rodriguez - Age 47 | Cities Lived In:
Bakersfield, CA
Bakersfield, CA
Baytown, TX
Bakersfield, CA
... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC |
Richard P Rodriguez - Age 48 | Cities Lived In:
San Dimas, CA
San Dimas, CA
Rancho Cucamonga, CA
Rancho Cuca... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC |
Richard P Rodriguez - Age 56 | Cities Lived In:
Houston, TX
Houston, TX
Houston, TX
Houston, TX
Houston, TX... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC |
Richard P Rodriguez - Age 57 | Cities Lived In:
Hudson, FL
Lockport, IL
Lockport, IL
Perris, CA
Colton, CA
... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC |
Richard P Rodriguez - Age 65 | Cities Lived In:
Deer Park, TX
Pasadena, TX
League City, TX
League City, TX
... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC |
Richard P Rodriguez - Age 65 | Cities Lived In:
Lubbock, TX
Lubbock, TX
Lamesa, TX
Lubbock, TX
Lubbock, TX
... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC |
Richard P Rodriguez - Age 68 | Cities Lived In:
Camp Connell, CA
Santa Rosa, CA
San Jose, CA
Arnold, CA
Win... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC |
Richard Perez Rodriguez - Age 78 | Cities Lived In:
Phoenix, AZ
Phoenix, AZ
Phoenix, AZ
Phoenix, AZ
Phoenix, AZ... | | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | https://www.findpeoplesearch.com/Richard+P+Rodriguez/CA/1/16505649446579 | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 UTC | 2022-04-21 18:16:25 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/n105633_2881f33436d88e72cabc11f09f32383ceses/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/n105633_2881f33436d88e72cabc11f09f32383ceses/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/n105633_2881f33436d88e72cabc11f09f32383ceses/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/n105633_2881f33436d88e72cabc11f09f32383ceses/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/n105633_2881f33436d88e72cabc11f09f32383ceses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end