Harvested on
Advanced Marketing, Branding, Content, Analytics & Financial Services | $85.00 | $1M+ 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 22:03:08 UTC | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC |
Expert PDF. Word. Excel files editing and conversion. | $8.00 | $3k+ 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 22:03:08 UTC | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC |
Modern Logo Design | U.S. Based | Proven Process | Expert Quality | $90.00 | | Chris M.
Modern Logo Design | U.S. Based | Proven Process | Expert Quality
Unit... | | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC |
Product designer, Web, Mobile, UI/UX, Graphic design. BASOV DESIGN | $90.00 | $70k+ earned | Yaroslav B.
Product designer, Web, Mobile, UI/UX, Graphic design. BASOV DESIGN
... | | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 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 22:03:08 UTC | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 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 22:03:08 UTC | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC |
Top Rated Translator/Writer/Voice - French (native), English, Spanish | $49.00 | $100k+ earned | Elinor Z.
Top Rated Translator/Writer/Voice - French (native), English, Spanish
... | | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC |
Translator and Editor / LaTeX typesetter | $9.50 | $4k+ earned | Mauricio D.
Translator and Editor / LaTeX typesetter
Venezuela, Mauricio D.
Tr... | | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC |
Wordpress| Magento| Custom PHP| Shopify| Squarespace| SEO | $11.11 | $200k+ earned | AAKASH P.
Wordpress| Magento| Custom PHP| Shopify| Squarespace| SEO
India, AAKA... | | | | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | https://www.upwork.com/ab/profiles/search/?q=SEM%20Specialists | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 UTC |
YouTube Ads, Google Ads & Facebook Ads Lead Generation Specialist | $200.00 | $10k+ 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 22:03:08 UTC | 2021-09-09 22:03:08 UTC | 2021-09-09 22:03:08 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