Harvested on
| Branch Hill, Hampstead | | | | | https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/88k/87916/127284803/87916_TE... | | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC |
| Granville Road, Finchley, London, N12 | | Land for sale | LAND WITH PLANNING CONSENT FOR TWO SUBSTANTIAL 4/5 BEDROOM HALLS ADJOINING SEMI-D... | £1,650,000 | https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/233k/232625/126651167/232625... | | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC |
101-103 Heath Street, Hampstead, NW3 6SS | High Road, North Finchley, N12 | | | | | https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/229k/228224/124972712/228224... | | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC |
| St. Georges Road, London | | | | | https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/88k/87922/127075907/87922_TE... | | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC |
| The Bishops Avenue, N2 0BN | | | | | https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/191k/190037/127510295/190037... | | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC |
68 Heath Street, London, NW3 1DN | Winnington Road, N2 | | | | | https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/191k/190037/127510283/190037... | | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC |
West Heath Place, 779-783 Finchley Road, Golders Green, NW11 8DN | Winnington Road, N2 | | | | | https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/191k/190037/127510262/190037... | | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC |
| | | | | | | | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC |
St. Albans Lane, London, NW11 | Winnington Road, N2 | | | | | https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/191k/190037/127510241/190037... | | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC |
| Winnington Road, N2 | | | | | | | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | https://www.rightmove.co.uk/commercial-property-for-sale/find.html?locationIdenti... | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22:25 UTC | 2022-10-04 10:22: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/n111540_8735a62f62f1f632fbd4ac16a7d1e359eses/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/n111540_8735a62f62f1f632fbd4ac16a7d1e359eses/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/n111540_8735a62f62f1f632fbd4ac16a7d1e359eses/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/n111540_8735a62f62f1f632fbd4ac16a7d1e359eses/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/n111540_8735a62f62f1f632fbd4ac16a7d1e359eses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end