Return all groups (each carries groupId, title, datasetCount, datasetSummary).
(self)
| 669 | # ------------------------------------------------------------------ |
| 670 | |
| 671 | def list_groups(self) -> list: |
| 672 | """Return all groups (each carries groupId, title, datasetCount, datasetSummary).""" |
| 673 | return self.command("project.group.list").get("groups", []) |
| 674 | |
| 675 | def list_datasets(self) -> list: |
| 676 | """Return all datasets across all groups, each carrying groupId+datasetId.""" |