Harvested on
| Advanced Marketing, Branding, Content, Analytics & Financial Services | $85.00 | $3k+ earned | Alex G.
Advanced Marketing, Branding, Content, Analytics & Financial Services
U... | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC |
| Amazon Expert | PPC, Listing Optimization, Seller & Vendor Central | $36.50 | $1M+ earned | Dirk L.
Amazon Expert | PPC, Listing Optimization, Seller & Vendor Central
Unit... | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC |
| Certified Conversion Rate Optimization Specialist | $99.00 | | Goran M.
Certified Conversion Rate Optimization Specialist
Croatia, Goran M.
C... | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC |
| Expert PDF. Word. Excel files editing and conversion. | $8.00 | $10k+ earned | Kouablan Roland M.
Expert PDF. Word. Excel files editing and conversion.
Cote d... | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC |
| Facebook Ads | Google Ads with 10 Years Experience | Proven Results | $12.00 | | Kuldeep S.
Facebook Ads | Google Ads with 10 Years Experience | Proven Results
... | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC |
| Google Ads Certified Professional / Landing Page Expert | $63.00 | $30k+ earned | Mirza L.
Google Ads Certified Professional / Landing Page Expert
Bosnia and Her... | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC |
| Google Ads| Google Shopping| Facebook Ad| Re-marketing Expert | $13.00 | $10k+ earned | Renu B.
Google Ads| Google Shopping| Facebook Ad| Re-marketing Expert
India, Re... | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC |
| SEO Strategist and PPC Professional (Former Googler) | $110.00 | $400k+ earned | Michael P.
SEO Strategist and PPC Professional (Former Googler)
United States, ... | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC |
| TOP RATED Multilingual Digital Marketing Strategist (SEM & PPC) | $38.00 | $10k+ earned | Zselyke K.
TOP RATED Multilingual Digital Marketing Strategist (SEM & PPC)
Hung... | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC |
| YouTube Ads, Google Ads & Facebook Ads Lead Generation Specialist | $200.00 | $100k+ earned | Matt R.
YouTube Ads, Google Ads & Facebook Ads Lead Generation Specialist
Unite... | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 UTC | 2021-09-09 21:59:57 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/n96405_d72ee7cba76389be403c2ccc677d4407eses/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/n96405_d72ee7cba76389be403c2ccc677d4407eses/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/n96405_d72ee7cba76389be403c2ccc677d4407eses/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/n96405_d72ee7cba76389be403c2ccc677d4407eses/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/n96405_d72ee7cba76389be403c2ccc677d4407eses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end