How to loop through Accepted Papers and print the Authors and their Affiliations
accepted_papers = client.get_all_notes(content={ 'venue': 'SaTML 2023'})for accepted_paper in accepted_papers:
print(accepted_paper.number, accepted_paper.content['title'])
author_profiles = openreview.tools.get_profiles(client, accepted_paper.content['authorids'])
for author_profile in author_profiles:
print(author_profile.get_preferred_name(pretty=True), author_profile.content.get('history', [{}])[0])Last updated
Was this helpful?