Recently I wanted to download a twitter stream. I didn’t want to write a specific program for it. After some research I found the following steps:
- Load the tweets into a Google Sheet. This can be done using the Twitter Archiver plugin
- Download the file to the desktop
- Remove everything but the column “Media” and safe the file as a csv file
- Remove the empty lines:
sed -i '/^$/d' file.csv
- Let wget download the images/files
wget -i file.csv