Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
c1bfe7b
removal of 3.6 and addition of 3.9 to sdk
jtsodapop Feb 21, 2022
34cb7fe
Revised the example notebook and also included other formats to make …
Apr 25, 2022
e9fd9c3
Add result field to Task and get_result()
May 25, 2022
d4fb122
Fixing style
May 25, 2022
037c4e5
Adding to mypy.ini
May 25, 2022
13a6bf1
Merge pull request #552 from Labelbox/nl/dbconnect-notebook-update
nickaustinlee May 25, 2022
660819a
Removing validators and code changes to dataset.py
May 25, 2022
a621f67
Get rid of newline at dataset
May 25, 2022
6ed00c4
Remove changes for db_object
May 25, 2022
3885688
Limit create_data_rows() to 30k if datarows contain metadata
May 25, 2022
1ddcf65
Address PR comment
May 25, 2022
f7805bc
Adding underscore to limit
May 25, 2022
e718d43
Removing unused import
May 25, 2022
e322a25
Change get_result() to errors(), and only return result for failed dtask
May 26, 2022
6e4e1d3
Merge pull request #586 from Labelbox/kkim/add-datarow-limit
kkim-labelbox May 26, 2022
89f3bf4
Remove return type for Task.errors()
May 26, 2022
19fd836
updated 2 basic notebooks to include data row upload with metadata
May 27, 2022
a2ccf87
added getting started ipynb into the repo
May 27, 2022
4080520
updated the data_row_metadata.ipynb based on jtso's comments
May 27, 2022
f5173ae
Merge pull request #587 from Labelbox/metadata_tutorial_update
karenkyang May 27, 2022
00372fd
yapf update
jtsodapop May 31, 2022
0cbc00e
Merge pull request #590 from Labelbox/yapfupdate
jtsodapop May 31, 2022
5c5d6ec
Merge branch 'develop' into jtso/al-1278
jtsodapop Jun 1, 2022
f3d9476
Check for 'error' key
Jun 1, 2022
0e307f2
removal of warning deprecation for 3.6
jtsodapop Jun 1, 2022
ab15e2f
Change task.error() to return None if 'error' doesn't exist
Jun 1, 2022
96990cd
Merge pull request #592 from Labelbox/jtso/AL-1278
jtsodapop Jun 1, 2022
5954537
Add tests
Jun 1, 2022
5c498a6
Merge pull request #585 from Labelbox/kkim/AL-2290
kkim-labelbox Jun 2, 2022
f8ef26e
improve result fetching experience
Jun 3, 2022
e4be7a3
yapf
Jun 3, 2022
6d6462c
fix bug when error is reported
Jun 3, 2022
e0e8265
fix mypy
Jun 3, 2022
fa5784e
Update task.py
msokoloff1 Jun 6, 2022
6b147ff
Merge pull request #593 from Labelbox/ms/fetch-result
msokoloff1 Jun 6, 2022
070d6fd
prep for release
Jun 8, 2022
55966ba
Update CHANGELOG.md
msokoloff1 Jun 8, 2022
df33f43
Merge pull request #596 from Labelbox/ms/3.23.0-dev
msokoloff1 Jun 8, 2022
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
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
strategy:
matrix:
include:
- python-version: 3.6
- python-version: 3.7
prod-key: LABELBOX_API_KEY
staging-key: STAGING_LABELBOX_API_KEY
da-test-key: DA_GCP_LABELBOX_API_KEY
- python-version: 3.7
- python-version: 3.8
prod-key: PROD_LABELBOX_API_KEY_2
staging-key: STAGING_LABELBOX_API_KEY_2
da-test-key: DA_GCP_LABELBOX_API_KEY
- python-version: 3.8
- python-version: 3.9
prod-key: PROD_LABELBOX_API_KEY_3
staging-key: STAGING_LABELBOX_API_KEY_3
da-test-key: DA_GCP_LABELBOX_API_KEY
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

# Version 3.23.0 (2022-06-08)
## Added
* `Task` objects now have the following properties:
* `errors` - fetch information about why the task failed
* `result` - fetch the result of the task
* These are currently only compatible with data row import tasks.
* Officially added support for python 3.9

## Removed
* python 3.6 is no longer officially supported

# Version 3.22.1 (2022-05-23)
## Updated
* Renamed `custom_metadata` to `metadata_fields` in DataRow
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The Labelbox Python API offers a simple, user-friendly way to interact with the

## Requirements

- Use Python 3.6, 3.7 or 3.8
- Use Python 3.7, 3.8 or 3.9
- [Create an account](http://app.labelbox.com/)
- [Generate an API key](https://labelbox.com/docs/api/getting-started#create_api_key)

Expand Down
Loading