How to check the API version of a venue
api2_venueid = 'NeurIPS.cc/2024/Conference' #In 2024, NeurIPS used API 2
api2_venue_group = live_client_v2.get_group(api2_venueid)
api2_venue_domain = api2_venue_group.domain
print(api2_venue_domain)
#Output: NeurIPS.cc/2024/Conference
api1_venueid = 'NeurIPS.cc/2022/Conference' #In 2022, NeruIPS used API1
api1_venue_group = live_client_v2.get_group(api1_venueid)
api1_venue_domain = api1_venue_group.domain
print(api1_venue_domain)
#Output: None
```PreviousHow to get edges for Conflicts, Assignments, Custom Max Papers, and moreNextHow to create a custom submission export
Last updated
Was this helpful?