How to Copy Members from One Group to Another

Some venues with multiple deadlines a year may want to reuse the same reviewer and area chairs from cycle to cycle. In those cases, it is useful to use the python client to copy group members from one group to another rather than recruiting the same people each time. This can be done programmatically or from the UI.

Programmatically

  1. If you have not done so, you will need to install and instantiate the openreview-py client.

  2. Get the group you are taking members from. You can get an individual group by its id. If you are copying reviewers from one venue iteration to another, for example, do the following:

first_reviewer_group = client.get_group("<first_venue_id>/Reviewers")

3. Each group has a field 'members' which is a list of profile IDs or emails belonging to the members of that group. Extract the members:

reviewers = first_reviewer_group.members

4. Finally, you can use add_members_to_group to add those members to your new Reviewers group.

client.add_members_to_group("<second_venue_id>/Reviewers", reviewers)

From the UI

  1. Navigate to https://openreview.net/group/edit?id=<first_venue_id>/Reviewers

  2. Under Group Members section click on Select All

  1. Then click on Copy Selected

  1. Navigate to https://openreview.net/group/edit?id=<second_venue_id>/Reviewers

  2. Under the Group Members section select the text box area and click on Add to Group

Last updated