How to get all Registration Notes
client = openreview.api.OpenReviewClient(
baseurl='https://api2.openreview.net',
username=<your username>,
password=<your password>
)registration_notes = client.get_all_notes(invitation='NeurIPS.cc/2023/Conference/Reviewers/-/Registration')for note in registration_notes:
print(note.content['expertise_confirmed']['value'])PreviousHow to get all the Reviews that I have written and their corresponding SubmissionsNextAPI V1
Last updated
Was this helpful?