Harvested on
A few nights later I had my friend Officer Rich come over. Officer Rich was one o... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
After I pointed out the pattern, she agreed that it was time to speak to someone.... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
After that, I told her I had something I wanted to show her and I asked her for t... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
He then pulled out a few photos of car accidents that I had worked. He showed the... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
I responded, "But you're not. Sweetie, I'm not trying to be mean, but you're not ... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
I told her, "I'm not trying to attack you, I don't want to have a fight, but I wa... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
I've gotten a few requests for update but didn't want to post until I felt like I... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
Is everything resolved? Not by a longshot. But she seems to have a new appreciati... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
My wife and I started talking again. We had a very serious conversation and I did... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
Original | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
She acknowledged that she understood and told me she hadn't really thought about ... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
She's been very emotional lately and has been going through mood swings. She's be... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC |
tl;dr Let my wife into my world a little more, she let me into hers, and she hasn... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | https://www.reddit.com/r/relationship_advice/comments/gxh3g6/update_my_36m_wife_3... | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 UTC | 2024-07-28 00:02:09 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/n132361_0be3860d985180f07d73afc9be2d18f8eses/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/n132361_0be3860d985180f07d73afc9be2d18f8eses/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/n132361_0be3860d985180f07d73afc9be2d18f8eses/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/n132361_0be3860d985180f07d73afc9be2d18f8eses/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/n132361_0be3860d985180f07d73afc9be2d18f8eses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end