Skip to content

Instantly share code, notes, and snippets.

@joelbarmettlerUZH
Created October 5, 2019 09:11
Show Gist options
  • Save joelbarmettlerUZH/8415269c77927301c740aab2a0bb8aa6 to your computer and use it in GitHub Desktop.
Save joelbarmettlerUZH/8415269c77927301c740aab2a0bb8aa6 to your computer and use it in GitHub Desktop.
Loop over nearby profiles and download all images
if __name__ == "__main__":
token = "YOUR-API-TOKEN"
api = tinderAPI(token)
while True:
persons = api.nearby_persons()
for person in persons:
person.download_images(folder="./images/unclassified", sleep_max_for=random()*3)
sleep(random()*10)
sleep(random()*10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment