This script fetches paper details, reviews, and rebuttals from OpenReview and converts them to formatted ODT and Markdown documents.
- Extracts forum ID and venue ID from an OpenReview URL
- Optional credential caching
- Fetches paper details, reviews, and rebuttals
- Generates a formatted markdown document
- Converts the markdown to an ODT file
- Python (tested with 3.11)
- Dependencies, see conda environment file (
env.yml
)
- Create the conda environment:
conda env create -f env.yml
- Activate the environment:
conda activate openreview
- Run the script:
python get_reviews.py
- Enter the full OpenReview URL when prompted (like
https://openreview.net/forum?id=XXXXXXXXXXXX&referrer=%5BAuthor%20Console%5D(%2Fgroup%3Fid%3DConference.org%2FYYYY%2FMeeting%2FAuthors%23your-submissions)
) - Provide your OpenReview username and password
- The script will generate an
$FORUM_ID.odt
and$FORUM_ID.md
file in the same directory, where$FORUM_ID
is the ID of the forum extracted from step 2.
Ensure you have the necessary permissions to access the paper on OpenReview.