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...
Attribute 2 | Attribute 3 | Attribute 4 | Attribute 5 | Attribute 6 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|
35 North Coffee | 60 E. San Francisco St. | Santa Fe, NM 87501 | United States | http://35northcoffee.com/ | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC |
Caff D'arte | 719 S. Myrtle St. | Seattle, WA 98108 | United States | http://www.caffedarte.com/ | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php?page=3 | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC |
Beanery Coffee Company | 1307 9th Avenue | San Francisco, CA 94122 | United States | None | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php?page=2 | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC |
Capricorn Coffee | 353 10th Street | San Francisco, SF 94103 | United States | http://www.capricorncoffees.com/ | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php?page=4 | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC |
Costa Coffee | Whitbread Group plc, Whitbread Court, Houghton Hall Office Park, Porz Avenue | Dunstable, LU5 5XE | United Kingdom | http://www.costa.co.uk/ | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php?page=5 | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC |
Fbrica Coffee Roasters | Rua das Portas de Santo Anto, 136 | Lisbon, 1150-269 | Portugal | http://www.fabricacoffeeroasters.com/ | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php?page=6 | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC |
Iconik Coffee Roasters | 1600 Lena St. | Santa Fe, NM 87505 | United States | http://iconikcoffee.com/ | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php?page=7 | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC |
Ohori's Coffee Roasters | 1098 1/2 South St. Francis Dr. | Santa Fe, NM 87505 | United States | http://ohoriscoffee.com/ | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php?page=9 | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC |
Madcap Coffee | 1041 E. Fulton St. | Grand Rapids, MI 49503 | United States | http://madcapcoffee.com/ | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php?page=8 | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC |
RoastCo | 1552 Beach St. | Emeryville, CA 94608 | United States | http://www.roastco.com/ | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php?page=10 | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC |
Starbucks Coffee | 2401 Utah Avenue South, P.O. Box 34067 | Seattle, WA 98134 | United States | http://www.starbucks.com/ | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php?page=11 | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC |
Truth. | Prestwich Memorial, 1 Somerset Road | Cape Town, 8001 | South Africa | http://www.truthcoffee.com/ | http://www.coffeeratings.com/roaster-listings.php | http://www.coffeeratings.com/roaster-listings.php?page=12 | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 UTC | 2017-12-10 18:42:25 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/n4277_19d098c48ff594e7c28209c1e7d5308ceses/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/n4277_19d098c48ff594e7c28209c1e7d5308ceses/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/n4277_19d098c48ff594e7c28209c1e7d5308ceses/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/n4277_19d098c48ff594e7c28209c1e7d5308ceses/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/n4277_19d098c48ff594e7c28209c1e7d5308ceses/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-10-10