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...
c | d | a | p | Column 5 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|
By The Gram | A Zero Waste shop, selling wholefoods, household products and personal care produ... | Brighouse, England, HD6 2QD | 07913318832 | Mobile App Coming Soon!Contact UsLogin/RegisterGet Listed Today Home Businesses B... | https://www.ecobusinesses.co.uk/general-stores | https://www.ecobusinesses.co.uk/general-stores | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 |
Ethical Eve | Ethical Eves mission is to inspire people to do better for our planet and the fut... | Eastfield, England, YO11 3YJ | 01723 643008 | https://www.ecobusinesses.co.uk/general-stores | https://www.ecobusinesses.co.uk/general-stores | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | |
Goodness Goodies | Goodness Goodies is an online shop selling sweets and chocolate for people with a... | London, England, SE23 | 07775512246 | https://www.ecobusinesses.co.uk/general-stores | https://www.ecobusinesses.co.uk/general-stores | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | |
IORGREEN STORE | IORGREEN STORE was created as a response to his owners struggle to find plastic f... | Gosport, England, PO13 8EE | https://www.ecobusinesses.co.uk/general-stores | https://www.ecobusinesses.co.uk/general-stores | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | ||
Jarr Market | A zero-waste shop in Herne Hill, London. We sell food, cleaning products and toil... | Herne Hill, England, SE24 9JU | https://www.ecobusinesses.co.uk/general-stores | https://www.ecobusinesses.co.uk/general-stores | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | ||
Lil | Get your shop ethically, with zero contact, zero waste packaging, zero hours wast... | Haddington, Scotland, EH41 | https://www.ecobusinesses.co.uk/general-stores | https://www.ecobusinesses.co.uk/general-stores | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | ||
O So Eco | An eco friendly, sustainable 'one-stop-shop' providing you with excellent quality... | Langton, England, YO17 9QP | https://www.ecobusinesses.co.uk/general-stores | https://www.ecobusinesses.co.uk/general-stores | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | ||
OneStep | We sell everyday eco essentials to eco your life | Twickenham, England, TW2 6DJ | https://www.ecobusinesses.co.uk/general-stores | https://www.ecobusinesses.co.uk/general-stores | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | ||
eTHikel | eTHikel is an environmentally conscious retail destination. | London, England | 07582994929 | https://www.ecobusinesses.co.uk/general-stores | https://www.ecobusinesses.co.uk/general-stores | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 | 2020-11-23 09:14:32 |
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/n80266_348901a3845c1008f0080f7bded43ef3eses/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/n80266_348901a3845c1008f0080f7bded43ef3eses/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/n80266_348901a3845c1008f0080f7bded43ef3eses/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/n80266_348901a3845c1008f0080f7bded43ef3eses/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/n80266_348901a3845c1008f0080f7bded43ef3eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
VC Search is a curated collection of 5000+ Venture Capital companies, Angel Groups, Micro VCs and ...
created on 2024-11-27