def get_logs(
    project: Optional[str] = None,
    filter: Optional[str] = None,
    api_key: Optional[str] = None,
) -> List[Log]:

source code

Returns a list of filtered logs from a project.

Arguments:

  • project - Name of the project to get logs from.
  • filter - Boolean string to filter logs, for example:
  • api_key - If specified, unify API key to be used. Defaults to the value in the

Returns:

The list of logs for the project, after optionally applying filtering.