Harvested on
All Trade Group | Israel | All Trade Group is the Israeli leader assets recovery company, provides its clien... | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC |
Integrity Smart Creation Ltd. | Israel | Integrity is an importer of refurbished laptops and desktops. | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC |
Koltel Communication Ltd. | Israel | - | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC |
Netip Storenet Ltd. | Israel | The company imports computers and peripherals into Israel and sells them to busin... | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC |
Nidam Communication | Israel | Founded in 1999, Nidam Communication LTD. is a privately owned company that deliv... | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC |
PiLogic Ltd. | Israel | We take pride in our ability to procure any brand, device or configuration - on a... | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC |
Printer Plus | Israel | - | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC |
SINY Computer Trade | Israel | We are an Israeli based company, in the IT business since 2002. We buy locally ov... | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC |
Somet Integration Ltd. | Israel | Company for IT and Networking distribution with sales representatives and warehou... | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC |
Triland International Ltd. | Israel | Triland International offering a full range of products: Cisco, HP–ProCurve, HP a... | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC |
VOLT Green IT | Israel | VOLT Green IT, trading since 1999 specialized in PCs, Laptops, Servers, POS, Comm... | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC |
Vision IT Ltd. | Israel | Vision IT is a worldwide integration for ICT. | | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Israel&showSearch=true | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 UTC | 2021-04-13 02:10:21 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/n89839_52e9f8a7e8138e73a572b411e2a111cbeses/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/n89839_52e9f8a7e8138e73a572b411e2a111cbeses/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/n89839_52e9f8a7e8138e73a572b411e2a111cbeses/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/n89839_52e9f8a7e8138e73a572b411e2a111cbeses/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/n89839_52e9f8a7e8138e73a572b411e2a111cbeses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end