Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions labelbox/schema/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,12 @@ def data_row_for_external_id(self, external_id):
return data_rows[0]

def export_data_rows(self, timeout_seconds=120):
""" Returns a generator that produces all data rows that are currently attached to this dataset.

""" Returns a generator that produces all data rows that are currently
attached to this dataset.

Note: For efficiency, the data are cached for 30 minutes. Newly created data rows will not appear
until the end of the cache period.

Args:
timeout_seconds (float): Max waiting time, in seconds.
Returns:
Expand Down