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...
mat-card-title | search-results-value | search-results-value 1 | search-results-value 2 | search-results-value 3 | Column 1 | Column 2 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|---|
WOOD AND FIBER SCIENCE | SOC WOOD SCI TECHNOL , ONE GIFFORD PINCHOT DR, MADISON, USA, WI, 53705 | 0735-6161 | Science Citation Index Expanded | Current Contents Agriculture, Biology & Environmental Sciences | Current Contents... | Web of Science Coverage | https://mjl.clarivate.com/search-results | https://mjl.clarivate.com/search-results | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | |
WOOD SCIENCE AND TECHNOLOGY | SPRINGER , ONE NEW YORK PLAZA, SUITE 4600 , NEW YORK, United States, NY, 10004 | 0043-7719 / 1432-5225 | Science Citation Index Expanded | Current Contents Agriculture, Biology & Environmental Sciences | Current Contents... | https://mjl.clarivate.com/search-results | https://mjl.clarivate.com/search-results | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | ||
ZAMM-ZEITSCHRIFT FUR ANGEWANDTE MATHEMATIK UND MECHANIK | WILEY-V C H VERLAG GMBH , POSTFACH 101161, WEINHEIM, GERMANY, 69451 | 0044-2267 / 1521-4001 | Science Citation Index Expanded | Current Contents Engineering, Computing & Technology | Essential Science Indicato... | https://mjl.clarivate.com/search-results | https://mjl.clarivate.com/search-results | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | ||
ZKG INTERNATIONAL | BAUVERLAG BV GMBH , AVENWEDDER STR 55, GUTERSLOH, GERMANY, 33311 | 2366-1313 | Science Citation Index Expanded | Current Contents Engineering, Computing & Technology | Essential Science Indicato... | https://mjl.clarivate.com/search-results | https://mjl.clarivate.com/search-results | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | ||
https://mjl.clarivate.com/search-results | https://mjl.clarivate.com/search-results | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | |||||||
WOOD MATERIAL SCIENCE & ENGINEERING | TAYLOR & FRANCIS LTD , 2-4 PARK SQUARE, MILTON PARK, ABINGDON, England, OXON, OX1... | 1748-0272 / 1748-0280 | Science Citation Index Expanded | Current Contents Engineering, Computing & Technology | Essential Science Indicato... | https://mjl.clarivate.com/search-results | https://mjl.clarivate.com/search-results | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | ||
WORLD WIDE WEB-INTERNET AND WEB INFORMATION SYSTEMS | SPRINGER , ONE NEW YORK PLAZA, SUITE 4600 , NEW YORK, United States, NY, 10004 | 1386-145X / 1573-1413 | Science Citation Index Expanded | Current Contents Engineering, Computing & Technology | Essential Science Indicato... | https://mjl.clarivate.com/search-results | https://mjl.clarivate.com/search-results | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 UTC | 2022-06-18 06:37:10 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/n108132_9ea5e1b2cdffdbc7e64ec9bb4d1c6283eses/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/n108132_9ea5e1b2cdffdbc7e64ec9bb4d1c6283eses/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/n108132_9ea5e1b2cdffdbc7e64ec9bb4d1c6283eses/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/n108132_9ea5e1b2cdffdbc7e64ec9bb4d1c6283eses/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/n108132_9ea5e1b2cdffdbc7e64ec9bb4d1c6283eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
T.C. MİLLÎ EĞİTİM BAKANLIĞI İSTANBUL / ÜSKÜDAR / Haydarpaşa Lisesi
created on 2025-06-03
created on 2025-06-03