Posting a Test Submission
Venues using API V1
import openreview client = openreview.Client( baseurl='https://devapi.openreview.net', username=<your dev username>, password=<your dev password> )note = openreview.Note( invitation = "Test/Venue/-/Submission", readers = [ "Test/Venue", "~Test_Author1", "~Test_Author2" ], writers = [ "Test/Venue", "~Test_Author1", "~Test_Author2" ], signatures = ["~PC_Id1"], content = { "title": { "value": "Test Submission 1" }, "authors": { "value": [ "~Test_Author1", "~Test_Author2" ] }, "authorids": { "value": [ "~Test_Author1", "~Test_Author2" ] }, "keywords": { "value": [ "machine learning", "autonomous vehicles" ] }, "TL;DR": { "value": "A test submission" }, "abstract": { "value": "This is a test submission for my test venue on the dev site." } } ) url = client.put_attachment('./paper.pdf', 'Test/Venue/-/Submission', 'pdf') note.content['pdf'] = { 'value': url }note = client.post_note_edit(note) print(note.id)
Venues using API V2
Last updated
Was this helpful?