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 2 | Title | Price | Column 4 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|
All products | A Light in the ... | £51.77 | Books to Scrape We love being scraped! Home All products Books Travel Mystery His... | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 |
It's Only the Himalayas | £45.17 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Libertarianism for Beginners | £51.33 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Mesaerion: The Best Science ... | £37.59 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Olio | £23.88 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Our Band Could Be ... | £57.25 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Rip it Up and ... | £35.02 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Sapiens: A Brief History ... | £54.23 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Scott Pilgrim's Precious Little ... | £52.29 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Set Me Free | £17.46 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Shakespeare's Sonnets | £20.66 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Sharp Objects | £47.82 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Soumission | £50.10 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Starving Hearts (Triangular Trade ... | £13.99 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
The Black Maria | £52.15 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
The Boys in the ... | £22.60 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
The Coming Woman: A ... | £17.93 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
The Dirty Little Secrets ... | £33.34 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
The Requiem Red | £22.65 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | ||
Tipping the Velvet | £53.74 | http://books.toscrape.com/ | http://books.toscrape.com/ | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 | 2019-11-08 05:35:52 |
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/n70629_5e8ff9bf55ba3508199d22e984129be6eses/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/n70629_5e8ff9bf55ba3508199d22e984129be6eses/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/n70629_5e8ff9bf55ba3508199d22e984129be6eses/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/n70629_5e8ff9bf55ba3508199d22e984129be6eses/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/n70629_5e8ff9bf55ba3508199d22e984129be6eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
created on 2024-06-01
created on 2021-10-18