Installing and Instantiating the Python client
git clone [email protected]:openreview/openreview-py.git
cd openreview-py
pip3 install -e .import openreview
# API V1
client = openreview.Client(
baseurl='https://api.openreview.net',
username=<your username>,
password=<your password>
)
# API V2
client = openreview.api.OpenReviewClient(
baseurl='https://api2.openreview.net',
username=<your username>,
password=<your password>
)Last updated
Was this helpful?