How to Get Reviewer Ratings
In order to get the existing Reviewer Ratings, you will need to use the python client.
Get all submissions for your venue and check all the replies in each submission for the
/-/Rating
invitation. The issue is, there is no data about the reviewer of the Official Review in the Rating note, so you will need to get the author of the review separately or add them to the reviewer_rating list from the review data. For this example I will do the latter.
Here is an example if you want to export certain fields to a CSV.
I chose the fields forum
, replyto
, reviewer
, and review_quality
:
forum = the submission id
replyto = the official review id
reviewer = the profile ID of the reviewer
review_quality = the field name for the rating, this can change so check your Rating invitation
This file will be saved in your working directory.
Last updated