{"id":34514658,"url":"https://github.com/waldronlab/openreviewr","last_synced_at":"2026-05-27T12:31:15.863Z","repository":{"id":45161604,"uuid":"394451432","full_name":"waldronlab/openreviewr","owner":"waldronlab","description":"R Client for OpenReview API and Script to Submit an OpenReview Support Request Form","archived":false,"fork":false,"pushed_at":"2023-08-16T15:54:05.000Z","size":66,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":6,"default_branch":"main","last_synced_at":"2024-07-07T00:11:53.282Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/waldronlab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-08-09T22:04:56.000Z","updated_at":"2024-07-07T00:11:53.282Z","dependencies_parsed_at":"2023-01-20T03:40:34.009Z","dependency_job_id":null,"html_url":"https://github.com/waldronlab/openreviewr","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/waldronlab/openreviewr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waldronlab%2Fopenreviewr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waldronlab%2Fopenreviewr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waldronlab%2Fopenreviewr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waldronlab%2Fopenreviewr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/waldronlab","download_url":"https://codeload.github.com/waldronlab/openreviewr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waldronlab%2Fopenreviewr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33566872,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-24T04:19:43.564Z","updated_at":"2026-05-27T12:31:15.857Z","avatar_url":"https://github.com/waldronlab.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# openreviewr\n\n\u003c!-- badges: start --\u003e\n\u003c!-- badges: end --\u003e\n\nOpenreviewer is an R wrapper package for the [openreview python client](https://openreview-py.readthedocs.io/en/latest/index.html).\n\n## Installation\n\n``` r\nif (!requireNamespace(\"BiocManager\", quietly = TRUE))\n    install.packages(\"BiocManager\")\nBiocManager::install(\"waldronlab/openreviewr\", dependencies = TRUE, build_vignettes = FALSE)\n```\n\n## Example\n\nAs a guest user (no username and password required):\n\n``` r\nlibrary(openreviewr)\n\n# Create Client\nclient \u003c- getClient(username = NULL, password = NULL)\n\n# Use the client to retrieve invitation ids from the Microbiome-VIF\ninvitations \u003c- client$get_invitations(regex = \"Microbiome-VIF.org/.*\")\ninvitations_ids \u003c- vapply(invitations, function(x) x$id, character(1))\nhead(invitations_ids)\n#\u003e [1] \"Microbiome-VIF.org/2021/Forum/Round1/-/Recruit_Reviewers\"                 \n#\u003e [2] \"Microbiome-VIF.org/2021/Forum/Round1/Reviewers/-/Assignment_Configuration\"\n#\u003e [3] \"Microbiome-VIF.org/2021/Forum/Round1/-/Submission\"\n```\n\n\u003csup\u003eCreated on 2021-08-09 by the [reprex package](https://reprex.tidyverse.org) (v2.0.1)\u003c/sup\u003e\n\n## Previous work\n\nSome of the code is based on: https://github.com/kevinrue/openreview-r, and the\nbasilisk documenation: https://bioconductor.org/packages/release/bioc/html/basilisk.html.\n\n## Using Python to Submit an OpenReview Support Request Form\n\nThe [OpenReview Support Request Form](https://openreview.net/group?id=OpenReview.net/Support)\nis the form for requesting a new venue on OpenReview. You can submit this form\nprogrammatically with `inst/scripts/post_request_form_note.py`.\n\n### Requirements\n\n* Python 3\n* [openreview-py](https://pypi.org/project/openreview-py/)\n* (Optional) virtualenv\n\n### Create a config.ini file\n\nUsing `inst/scripts/example.ini`, create a `config.ini` and enter the\nconfigurations associated with your venue.\n\n### Run the script\n\nTo run the script, you must use the email associated with your account in\nOpenReview, your password, and the path to your `config.ini`.\n\n    python3 post_request_form_note.py your.email@gmail.com your_password path/to/config.ini\n\nWhen submission is successful, it returns the form note. You will also be able\nto view it on OpenReview and receive an email that your request has been\nreceived.\n\n#### Review the Configuration Produced From Running the Script\n\nYou can also use the `--print` flag to check the contents of the configuration\nthat will be submitted to OpenReview.\n\n### Create the Additional Submission Options JSON File\n\nUsing `inst/scripts/pacific_first_additional_submission_options.json` or the\n`atlantic_first_additional_submission_options.json` file, create your additional\nsubmission options file. Note: You must change the registration URL in the JSON\nto reflect the correct registration link on Hopin.\n\n### Complete Your Venue Configuration\n\nYou can only add *Additional Submission Options* to your venue after OpenReview\nhas created it. Find your venue on OpenReview and paste your JSON file into\nthe *Additional Submission Options* field. You may want to use a JSON validator\nto check that you're submitting valid JSON; otherwise, your options will not\ndisplay correctly.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaldronlab%2Fopenreviewr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwaldronlab%2Fopenreviewr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaldronlab%2Fopenreviewr/lists"}