We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd8c0fc commit a5f5518Copy full SHA for a5f5518
cirro/sdk/project.py
@@ -210,6 +210,15 @@ def upload_dataset(
210
else:
211
sleep(2)
212
213
+ def samples(self, max_items: int = 10000):
214
+ """
215
+ Retrieves a list of samples associated with a project along with their metadata
216
+
217
+ Args:
218
+ max_items (int): Maximum number of records to get (default 10,000)
219
220
+ return self._client.metadata.get_project_samples(self.id, max_items)
221
222
223
class DataPortalProjects(DataPortalAssets[DataPortalProject]):
224
"""Collection of DataPortalProject objects"""
0 commit comments