everyaction.services.Scores

class everyaction.services.Scores(ea: EAClient)

Represents the Scores service.

Methods

get(score_id, /)

See GET /scores/{scoreId}.

list(*[, limit])

See GET /scores.

get(score_id: int, /) Score

See GET /scores/{scoreId}.

Parameters

score_id – The scoreId path parameter.

Returns

The resulting Score object.

list(*, limit: Optional[int] = None, **kwargs: EAValue) List[Score]

See GET /scores.

Parameters
  • limit – Maximum number of records to get for this request.

  • kwargs – The applicable query arguments and JSON data for the request.

Returns

List of the resulting Score objects.