17 OCT 2024 - Welcome Back to TorrentFunk! Get your pirate hat back out. Streaming is dying and torrents are the new trend. Account Registration works again and so do Torrent Uploads. We invite you all to start uploading torrents again!
TORRENT DETAILS
Instagram Pictures Of Finnish Girls Vol 13
TORRENT SUMMARY
Status:
All the torrents in this section have been verified by our verification system
I have also made a YouTube channel (https://www.youtube.com/channel/UC5-NI9LvFBwLnFCY87zz6QQ/videos) for the videos in these torrents.
You can use the HTML files included with the torrent to view the images so that two or more images are often displayed side by side depending on the dimensions of your browser window and the orientation of the images.
I have selected the pictures in this torrent and the previous volumes from a pool of about 4 million pictures posted by about 600,000 users, even though I had to reject most of the users because they were not female, too old, too young, or not Finnish.
I made the first volumes through Instagram's API, but in June 2016 Instagram made most of the functionality of their API available only to applications that have passed a review process. They still however provide JSON data on the pages for users, posts, and search results for tags, and you can add the parameter __a=1 to a URL to only include the JSON data.
I used a script like this to search for posts with specific tags:
for tag in ylioppilas2016 heppatyttö;do
max=
while :;do
c=$(curl -s "https://www.instagram.com/explore/tags/$tag/?__a=1&max_id=$max")
jq -r '.tag|.name as$name|.media.nodes[]?|$name+" "+.owner.id+" "+.id+" "+.code+" "+.display_src'<<<"$c"
max=$(jq -r .tag.media.page_info.end_cursor<<<"$c")
jq -e .tag.media.page_info.has_next_page<<<"$c">/dev/null||break
done
done
I used a script like this to make a list of all media posted by users: