You've successfully subscribed to MyPad Blog
Great! Next, complete checkout for full access to MyPad Blog
Welcome back! You've successfully signed in.
Success! Your account is fully activated, you now have access to all content.
Success! Your billing info is updated.
Billing info update failed.

Get profile images of following profiles on Twitter

Get profile images of following profiles on Twitter

For a deep learning project, I needed to create a dataset of profile images and decided to use Twitter profile images of users I am following.

For today's daily coding exercise, doing this with the rtweet package is easy and quick using the below code!

# Download profile images from twitter for a deep learning project


setwd("~/Dropbox/pandora/My-Projects/repos/diary/writing/")

## load rtweet package
library(rtweet)

twitter_handle <- "tweetsks"

friends <- get_friends(twitter_handle, n = 75000)

## view merged ddata
friends

for (user_id in friends$user_id){
  print(user_id)

  ## GOOD: combine user id and screen name using list()
  user <- as_userid(user_id)
  twitter_user <- lookup_users(user)
  screen_name <- twitter_user$screen_name
  profile_image <- twitter_user$profile_image_url

  require("stringr")
  segments <- stringr::str_split_fixed(profile_image, "_normal", n=Inf)


  profile_image_original <- str_flatten(segments)
  download.file(profile_image_original, destfile = paste0("./data/twitter/",screen_name,".png"), method = "wget", extra = "-r -p --random-wait")
}

That small script gets me pictures of ~2000 profiles I am following to feed into my deep learning project!