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...
| title | hinh anh | miêu ta | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
|---|---|---|---|---|---|---|---|
| https://webnauan.vn/cach-lam-banh-it-nhan-dua.html | Cách làm bánh ít nhân dừa thơm ngon cho cả gia đình vào dịp cuối tuần tương đối d... | https://webnauan.vn/cach-nau/ | https://webnauan.vn/cach-nau/ | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | |
| https://webnauan.vn/cach-lam-cha-hoa-con-ca.html | Cách làm chả hoa con cá hay còn gọi là chả cá bách hoa là món ăn vừa đẹp mắt lại ... | https://webnauan.vn/cach-nau/ | https://webnauan.vn/cach-nau/ | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | |
| https://webnauan.vn/cach-lam-cua-rang-muoi.html | https://wna.cdnxbvn.com/wp-content/uploads/2021/03/cach-lam-cua-rang-muoi-singapo... | Cách làm cua rang muối không khó như mọi người vẫn người nghĩ. Đối với những ai y... | https://webnauan.vn/cach-nau/ | https://webnauan.vn/cach-nau/ | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC |
| https://webnauan.vn/cach-lam-ech-xao-la-lot.html | https://wna.cdnxbvn.com/wp-content/uploads/2021/03/cach-lam-ech-xao-la-lot-360x21... | Cách làm ếch xào lá lốt đơn giản mà thơm ngào ngạt hấp dẫn, cho bữa cơm gia đình ... | https://webnauan.vn/cach-nau/ | https://webnauan.vn/cach-nau/ | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC |
| https://webnauan.vn/cach-lam-mam-ca-linh.html | Cách làm mắm cá linh làm sao cho thơm ngon và đúng vị là cả một quá trình. Mắm cá... | https://webnauan.vn/cach-nau/ | https://webnauan.vn/cach-nau/ | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | |
| https://webnauan.vn/cach-lam-salad-bap-cai-tim.html | Cách làm salad bắp cải tím là một ý tưởng độc đáo không những giúp bạn thanh lọc ... | https://webnauan.vn/cach-nau/ | https://webnauan.vn/cach-nau/ | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | |
| https://webnauan.vn/cach-nau-canh-rau-ma.html | https://wna.cdnxbvn.com/wp-content/uploads/2021/02/cach-nau-canh-rau-ma-360x216.j... | Cách nấu canh rau má ngọt mát, giải nhiệt và nhiều dinh dưỡng chắc hẳn được rất n... | https://webnauan.vn/cach-nau/ | https://webnauan.vn/cach-nau/ | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC |
| https://webnauan.vn/cach-nau-sup-bi-do.html | Cách nấu súp bí đỏ là ý tưởng hay như một món khai vị cho bữa tiệc hoặc bữa ăn tố... | https://webnauan.vn/cach-nau/ | https://webnauan.vn/cach-nau/ | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | |
| https://webnauan.vn/cach-su-dung-bot-tra-xanh.html | Cách sử dụng bột trà xanh được rất nhiều người ưa chuộng cả trong làm đẹp lẫn ăn ... | https://webnauan.vn/cach-nau/ | https://webnauan.vn/cach-nau/ | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | |
| https://webnauan.vn/pate-gan-ngong-lam-mon-gi-ngon.html | Pate gan ngỗng làm món gì ngon? Thưởng thức món gan ngỗng như thế nào? Đây là nhữ... | https://webnauan.vn/cach-nau/ | https://webnauan.vn/cach-nau/ | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42:49 UTC | 2021-03-17 12:42: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/n86070_bef2684de1318230568e497a9564b94eeses/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/n86070_bef2684de1318230568e497a9564b94eeses/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/n86070_bef2684de1318230568e497a9564b94eeses/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/n86070_bef2684de1318230568e497a9564b94eeses/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/n86070_bef2684de1318230568e497a9564b94eeses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end