You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/basics/Export_V1_to_V2_migration_support.ipynb
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@
40
40
{
41
41
"metadata": {},
42
42
"source": [
43
-
"**Export V1 will no longer be available in any version of the SDK starting on April 20, 2024**. We recommend users to plan accordingly. \n",
43
+
"**Export V1 will no longer be available in any version of the SDK starting on April 2024**. We recommend users to plan accordingly. \n",
44
44
"\n",
45
45
"This notebook is designed to help users identify alternative V2 export methods that can serve as replacements for V1 methods."
46
46
],
@@ -51,9 +51,9 @@
51
51
"source": [
52
52
"### Key changes included in export V2 methods (``export_v2()`` and ``export()``):\n",
53
53
"1. Added flexibility to only export the data that is needed. The new methods include parameters and filters to give you more granular control over your exports.\n",
54
-
"2. Added functionality to stream your data export. \n",
54
+
"2. Added functionality to stream your data export using ``export()`` (available on SDK >=3.56)\n",
55
55
"\n",
56
-
"For complete details on how to use exports V2 please see the [Export overview](https://docs.labelbox.com/reference/label-export#optional-parameters-and-filters) documentation."
56
+
"For complete details on how to use export V2 methods please see the [Export V2 methods](https://docs.labelbox.com/reference/label-export#export-v2-methods) documentation."
Copy file name to clipboardExpand all lines: labelbox/schema/batch.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ def export_data_rows(self,
105
105
LabelboxError: if the export fails or is unable to download within the specified time.
106
106
"""
107
107
warnings.warn(
108
-
"You are currently utilizing exports v1 for this action, which will be deprecated after December 31st, 2023. We recommend transitioning to exports v2. To view export v2 details, visit our docs: https://docs.labelbox.com/reference/label-export",
108
+
"You are currently utilizing exports v1 for this action, which will be deprecated after April 30th, 2024. We recommend transitioning to exports v2. To view export v2 details, visit our docs: https://docs.labelbox.com/reference/label-export",
Copy file name to clipboardExpand all lines: labelbox/schema/dataset.py
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -561,7 +561,7 @@ def export_data_rows(self,
561
561
LabelboxError: if the export fails or is unable to download within the specified time.
562
562
"""
563
563
warnings.warn(
564
-
"You are currently utilizing exports v1 for this action, which will be deprecated after December 31st, 2023. We recommend transitioning to exports v2. To view export v2 details, visit our docs: https://docs.labelbox.com/reference/label-export",
564
+
"You are currently utilizing exports v1 for this action, which will be deprecated after April 30th, 2024. We recommend transitioning to exports v2. To view export v2 details, visit our docs: https://docs.labelbox.com/reference/label-export",
Copy file name to clipboardExpand all lines: labelbox/schema/model_run.py
+12-5Lines changed: 12 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -477,7 +477,7 @@ def export_labels(
477
477
None is returned.
478
478
"""
479
479
warnings.warn(
480
-
"You are currently utilizing exports v1 for this action, which will be deprecated after December 31st, 2023. We recommend transitioning to exports v2. To view export v2 details, visit our docs: https://docs.labelbox.com/reference/label-export",
480
+
"You are currently utilizing exports v1 for this action, which will be deprecated after April 30th, 2024. We recommend transitioning to exports v2. To view export v2 details, visit our docs: https://docs.labelbox.com/reference/label-export",
0 commit comments