Harvested on
, A & S TRUCKING, 407-788-0317, , PAUL M RINGER TRUCKING, , DEALERS CHOICE AUTO ... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
, H AND W TRUCKING, 407-295-8776, , B & B AUTO TRANSPORT, , DOUG JACKSON ALL TRA... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
, JP TRUCKING, 407-760-2168, , LCS OF ORLANDO INC, 407-754-7947, , GRACE & FAVO... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
, NASA LOGISTICS LLC, 407-682-2603, , RAM CARGO, 407-756-9805, , FALCONER FREIG... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
, WORLDWIDE EXPRESS BUS, 407-339-4872, , J H TRUCKING, 407-760-2168, , VARSITY ... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
1ST UNIVERSAL TRANSPORT INC, 407-637-4734, 2NT SERVICES LLC, 407-252-0901, 57 T... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
A TIMELY DELIVERY LLC, 321-972-9999, 414-755-7001, AA AUTO HAULERS INC, 407-97... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
ABBOU3 TRANSPORT LLC, 727-432-0190, ABRAHAM PORTALATIN, PORTALATIN TRANSPORT INC... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
ADX TRANSPORT INC, 321-609-1616, 321-234-0329, AGRIPINO A CANELA, CANELA PRODUC... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
ALTERNATIVE TRUCKING SERVICES INC, 407-682-2850, 407-682-5116, ANDREW STRIBLING... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
APEX FREIGHT AND LOGISTICS LLC, 407-885-4314, ATEC SYTEMS LTD, 407-740-5565, 4... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
B AND H DIRECT TRANSPORT LLC, 303-317-7737, B1 TRANSPORT LLC, 347-567-1056, BAC... | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC |
| https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | https://www.quicktransportsolutions.com/carrier/florida/altamonte-springs.php | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 UTC | 2023-11-29 14:59:54 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/n126064_8c05b4155e443d978db4200b184ef839eses/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/n126064_8c05b4155e443d978db4200b184ef839eses/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/n126064_8c05b4155e443d978db4200b184ef839eses/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/n126064_8c05b4155e443d978db4200b184ef839eses/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/n126064_8c05b4155e443d978db4200b184ef839eses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end