Harvested on
Baulesta UAB | Lithuania | We buy and sell used TFT's 22"-34" and PC's. | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
Biurteksa UAB | Lithuania | Biurteksa is one of the largest printer and toner wholesalers in the Baltics, ope... | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
Consulting LT UAB | Lithuania | Trade of new periphery of MS Surface, Fujitsu, Dell. Monitor + TVs. Printers and ... | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
Global Commerce | Lithuania | Global Commerce is an independent distributor of branded IT hardware. We trade NE... | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
Gloris UAB | Lithuania | Computers, Parts and Accessories. Mobile phones. Repair. | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
Heksimus Ltd. | Lithuania | All IT services. Full maintenance of company IT infrastructure. Reseller and supp... | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
IT MAX UAB | Lithuania | 800 x Pallets of used equipment ready to be shipped. | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
KT Group UAB | Lithuania | Selling laptops, desktops and parts. | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
LJS Trade UAB | Lithuania | LJS TRADE offers more than 1 mln. products from more than 200 suppliers in Europe... | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
Naudae | Lithuania | A family owned IT asset recovery company, based in Lithuania and operating in Eur... | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
ServerMall UAB | Lithuania | SERVERMALL, we are searching for partners all across the EU and EAEU. For that re... | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
Sominis Technology UAB | Lithuania | We are independent IT hardware, office supplies and home appliances distributors.... | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
UAB Kompiuteriu Gama | Lithuania | Trade of used computer equipment. | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC |
Varle UAB | Lithuania | Always looking for new, renew, re-marketed, as new and etc. products. We are frog... | | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | https://www.thebrokersite.com/companies?query=&country=Lithuania&showSearch=true | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 UTC | 2021-04-13 02:14:45 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/n89846_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/n89846_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/n89846_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/n89846_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/n89846_52e9f8a7e8138e73a572b411e2a111cbeses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end