How to Get Profiles and Their Relations
Querying profiles
profile = client.get_profile('~Michael_Spector1')
profile = client.get_profile('[email protected]')profiles = openreview.tools.get_profiles(
client,
ids_or_emails=['[email protected]',
'~Melisa_bok1'
]# API 2 example of getting author profile data for accepted submissions
submissions = client.get_all_notes(content={'venueid':'Your/Venue/ID'})
author_profiles = []
for submission in submissions:
author_profiles = openreview.tools.get_profiles(client, submission.content['authorids']['value'])
# you can loop through author_profiles and get data for each profile
Finding profile relations
PreviousHow to create a custom submission exportNextHow to Get All the Reviews that I have written and their Corresponding Submissions
Last updated
Was this helpful?