Get data from any page you want to get data from.
Need to talk to someone? Contact us—we’d love to help.
Get data from any page you want to get data from.
Need to talk to someone? Contact us—we’d love to help.
We are still busy preparing this batch of data. Please come back in a few minutes.
Seems like this data source was never ran before...
Changes are only available only when you have ran at least a second time.
Nope... guess no Martians around... Maybe set the webhook URL before pressing this button again...
| py-2 pl-2 w-6 | text-[14px] font-semibold | text-[12px] text-[#7E847B] | py-2 pl-2 | py-2 pl-2 1 | py-2 pl-2 2 | No | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 176891 | MANOLYA DOĞAL VE AROMATİK ÜRÜN GIDA SAN.TİC. LTD. ŞTİ. | SANAYİ MAH. 283.CAD. NO:8(EĞİRDİR YOLU ASKERİHASTANE KARŞISI) MERKEZ ISPARTA | Hububat, Bakliyat, Yağlı Tohumlar ve Mamulleri | (246) 2612440 | http://www.iib.org.tr/firmalar | http://www.iib.org.tr/firmalar | 2024-08-27 10:44:49 UTC | 2024-08-27 10:44:49 UTC | 2024-08-27 10:44:49 UTC | ||
| 176893 | İNTERLAB LABORATUVAR ÜRÜNLERİ SAN. VE TİC. A.Ş. | ÖMERLİ MAH HADIMKÖY İSTANBUL CAD.NO:189/1 ARNAVUTKÖY İSTANBUL | Maden ve Metaller | 212-7982168-69 | www.interlab.com.tr | http://www.iib.org.tr/firmalar | http://www.iib.org.tr/firmalar | 2024-08-27 10:44:49 UTC | 2024-08-27 10:44:49 UTC | 2024-08-27 10:44:49 UTC | |
| 176894 | MELTEM MODÜLER MOB.KOL.SAN.VE TIC.A.Ş. | YENICE SANAYİ BÖLGESİ TURGUT ÖZAL MAH. OVA CAD NO:33 İNEGÖL BURSA | ÇİMENTO CAM SERAMİK VE TOPRAK ÜRÜNLERİ | (224) 7380521 | www.weltew.com | http://www.iib.org.tr/firmalar | http://www.iib.org.tr/firmalar | 2024-08-27 10:44:49 UTC | 2024-08-27 10:44:49 UTC | 2024-08-27 10:44:49 UTC | |
| http://www.iib.org.tr/firmalar | http://www.iib.org.tr/firmalar | 2024-08-27 10:44:49 UTC | 2024-08-27 10:44:49 UTC | 2024-08-27 10:44:49 UTC | |||||||
| 176892 | FLO MAĞAZACILIK VE PAZ. AŞ | MAHMUTBEY MERKEZ MAH.TAŞOCAĞI CAD.NO:24/3 ZİYLAN İŞ MERK. BAĞCILAR İSTANBUL | Ağaç Mamülleri ve Orman Ürünleri | (212) 4462288 | http://www.iib.org.tr/firmalar | http://www.iib.org.tr/firmalar | 2024-08-27 10:44:49 UTC | 2024-08-27 10:44:49 UTC | 2024-08-27 10:44:49 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/n132852_f1b325b73c26a0d4cbf01294c7e2b4c5eses/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/n132852_f1b325b73c26a0d4cbf01294c7e2b4c5eses/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/n132852_f1b325b73c26a0d4cbf01294c7e2b4c5eses/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/n132852_f1b325b73c26a0d4cbf01294c7e2b4c5eses/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/n132852_f1b325b73c26a0d4cbf01294c7e2b4c5eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end