Conference Models

class paperswithcode.models.conference.Conference(*, id: str, name: str)[source]

Conference object.

id

Conference ID.

Type

str

name

Conerence name.

Type

str

Create a new model by parsing and validating input data from keyword arguments.

Raises ValidationError if the input data cannot be parsed to form a valid model.

class paperswithcode.models.conference.Conferences(*, count: int, next_page: int = None, previous_page: int = None, results: List[paperswithcode.models.conference.Conference])[source]

Object representing a paginated page of conferences.

count

Number of elements matching the query.

Type

int

next_page

Number of the next page.

Type

int, optional

previous_page

Number of the previous page.

Type

int, optional

results

List of conferences on this page.

Type

List[Conference]

Create a new model by parsing and validating input data from keyword arguments.

Raises ValidationError if the input data cannot be parsed to form a valid model.

class paperswithcode.models.conference.Proceeding(*, id: str, year: int = None, month: int = None)[source]

Conference proceeding object.

id

Proceeding ID.

Type

str

year

Year in which the proceeding was held.

Type

int, optinoal

month

Month in which the proceedingt was held.

Type

int, optional

Create a new model by parsing and validating input data from keyword arguments.

Raises ValidationError if the input data cannot be parsed to form a valid model.

class paperswithcode.models.conference.Proceedings(*, count: int, next_page: int = None, previous_page: int = None, results: List[paperswithcode.models.conference.Proceeding])[source]

Object representing a paginated page of proceedings.

count

Number of elements matching the query.

Type

int

next_page

Number of the next page.

Type

int, optional

previous_page

Number of the previous page.

Type

int, optional

results

List of proceedings on this page.

Type

List[Proceeding]

Create a new model by parsing and validating input data from keyword arguments.

Raises ValidationError if the input data cannot be parsed to form a valid model.