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...
Column 1 | Column 2 | Column 3 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|
AVAILABILITY: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | ||
MFG: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | ||
SuperServer 6029P-E1CR12H, 2U, Intel C624, 12x SATA/SAS, 16x DDR4, Broadcom 3108 ... | MPN: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | |
SuperServer 6029P-E1CR12T, 2U, Intel C624, 12x SATA/SAS, 16x DDR4, Broadcom 3108 ... | MFG: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | |
SuperServer 6029P-E1CR16T, 2U, Intel C624, 16x SATA/SAS, 16x DDR4, Broadcom 3108 ... | AVAILABILITY: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | |
SuperServer 6029P-TR, 2U, Intel C621, 8x SATA, 16x DDR4, Dual 1Gb Ethernet, 1000W... | AVAILABILITY: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | |
SuperServer 6029P-TRT, 2U, Intel C622, 8x SATA, 16x DDR4, Dual 10Gb Ethernet, 100... | MFG: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | |
SuperStorage Server 6029P-E1CR24H, 2U, Intel C621, 24x SATA/SAS, Broadcom 3108, 2... | MFG: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | |
MPN: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | ||
SuperServer 6029P-WTRT, 2U, Intel C622, 12x SATA, 12x DDR4, Dual 10Gb Ethernet, 1... | MPN: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | |
SKU: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | ||
SuperServer 6029P-E1CR12L, 2U, Intel C624, 12x SATA/SAS, 16x DDR4, Broadcom 3008 ... | SKU: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | |
SuperServer 6029P-WTR, 2U, Intel C621, 10x SATA, 12x DDR4, Dual 1Gb Ethernet, 120... | SKU: | https://www.avadirect.com/search?sc=&sq=6029p | https://www.avadirect.com/search?sc=&sq=6029p | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 | 2019-05-31 15:13:54 |
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/n67185_78dbaca838967a29646fef8416045defeses/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/n67185_78dbaca838967a29646fef8416045defeses/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/n67185_78dbaca838967a29646fef8416045defeses/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/n67185_78dbaca838967a29646fef8416045defeses/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/n67185_78dbaca838967a29646fef8416045defeses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end