Installing and Instantiating the Python client
pip install openreview-pyimport openreview
# API V2
client = openreview.api.OpenReviewClient(
baseurl='https://api2.openreview.net',
username=<your username>,
password=<your password>
)
# API V1
client_v1 = openreview.Client(
baseurl='https://api.openreview.net',
username=<your username>,
password=<your password>
)Last updated
Was this helpful?