Skip to content

Instantly share code, notes, and snippets.

@joelbarmettlerUZH
Created October 5, 2019 09:10
Show Gist options
  • Save joelbarmettlerUZH/2adb2160e7c1bc3be17f491c2a9a14df to your computer and use it in GitHub Desktop.
Save joelbarmettlerUZH/2adb2160e7c1bc3be17f491c2a9a14df to your computer and use it in GitHub Desktop.
if __name__ == "__main__":
token = "YOUR-API-TOKEN"
api = tinderAPI(token)
while True:
persons = api.nearby_persons()
for person in persons:
print(person)
# person.like()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment