Skip to content

Instantly share code, notes, and snippets.

@ErikBoesen
Created January 5, 2023 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ErikBoesen/84df23c2b7b87f5079c89f3076ead211 to your computer and use it in GitHub Desktop.
Save ErikBoesen/84df23c2b7b87f5079c89f3076ead211 to your computer and use it in GitHub Desktop.
import yalies
api = yalies.API('YALIES_API_KEY_HERE')
for person in api.people():
if 'kilo' in person.first_name.lower():
print(person.first_name + ' ' + person.last_name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment