How to Get All the Reviews that I have written and their Corresponding Submissions
Steps for getting Reviews
client = openreview.api.OpenReviewClient(
baseurl='https://api2.openreview.net',
username=<your username>,
password=<your password>
)result = openreview.tools.get_own_reviews(client)
# Result is a list of dictionaries that have the following schema
# {
# 'submission_title': <Submission title>,
# 'submission_link': <Link to submission>,
# 'review_link': <Link to review>
# }Last updated
Was this helpful?