Reports

Reports is a lazy iterator of BetaReport objects.

Args
client (wandb.apis.internal.Api): The API client instance to use. project (wandb.sdk.internal.Project): The project to fetch reports from. name (str, optional): The name of the report to filter by. If None, fetches all reports. entity (str, optional): The entity name for the project. Defaults to the project entity. per_page (int): Number of reports to fetch per page (default is 50).
Attributes
cursor Returns the cursor position for pagination of file results.
more Returns whether there are more files to fetch.

Methods

convert_objects

View source

convert_objects()

Converts GraphQL edges to File objects.

next

View source

next() -> T

Return the next item from the iterator. When exhausted, raise StopIteration

update_variables

View source

update_variables()

Updates the GraphQL query variables for pagination.

__getitem__

View source

__getitem__(
    index: (int | slice)
) -> (T | list[T])

__iter__

View source

__iter__() -> Iterator[T]

__len__

View source

__len__() -> int
Class Variables
QUERY