summaryrefslogtreecommitdiff
path: root/tweet-archive.pl
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2017-04-22 13:34:51 +0100
committerdakkar <dakkar@thenautilus.net>2017-04-22 13:49:18 +0100
commitd7d933d95deb241288ca7e3cd4a93b61b51bd0d1 (patch)
tree100e6c7158f661ba125cf1f6ea2ecad7e4c025b8 /tweet-archive.pl
parentstore tweets in postgres (diff)
downloadtweet-archive-d7d933d95deb241288ca7e3cd4a93b61b51bd0d1.tar.gz
tweet-archive-d7d933d95deb241288ca7e3cd4a93b61b51bd0d1.tar.bz2
tweet-archive-d7d933d95deb241288ca7e3cd4a93b61b51bd0d1.zip
store friends / followers
Diffstat (limited to 'tweet-archive.pl')
-rw-r--r--tweet-archive.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/tweet-archive.pl b/tweet-archive.pl
index 170c6af..2424206 100644
--- a/tweet-archive.pl
+++ b/tweet-archive.pl
@@ -26,3 +26,6 @@ my $latest_id = $store->latest_tweet_id;
for my $tweet ($client->home_timeline($latest_id)->@*) {
$store->store_tweet($tweet);
}
+
+$store->store_friends($client->friends);
+$store->store_followers($client->followers);