unitlab 2.1.6__tar.gz → 2.1.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {unitlab-2.1.6/src/unitlab.egg-info → unitlab-2.1.8}/PKG-INFO +1 -1
- {unitlab-2.1.6 → unitlab-2.1.8}/README.md +2 -2
- {unitlab-2.1.6 → unitlab-2.1.8}/setup.py +1 -1
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab/client.py +1 -1
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab/main.py +1 -1
- {unitlab-2.1.6 → unitlab-2.1.8/src/unitlab.egg-info}/PKG-INFO +1 -1
- {unitlab-2.1.6 → unitlab-2.1.8}/LICENSE.md +0 -0
- {unitlab-2.1.6 → unitlab-2.1.8}/setup.cfg +0 -0
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab/__init__.py +0 -0
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab/__main__.py +0 -0
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab/dataset.py +0 -0
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab/exceptions.py +0 -0
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab/utils.py +0 -0
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab.egg-info/SOURCES.txt +0 -0
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab.egg-info/dependency_links.txt +0 -0
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab.egg-info/entry_points.txt +0 -0
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab.egg-info/requires.txt +0 -0
- {unitlab-2.1.6 → unitlab-2.1.8}/src/unitlab.egg-info/top_level.txt +0 -0
@@ -21,10 +21,10 @@ To get started with the Unitlab.ai CLI/Python SDK, you'll need to install it usi
|
|
21
21
|
|
22
22
|
Once you have successfully installed the Unitlab package, you can conveniently handle all projects using the terminal.
|
23
23
|
|
24
|
-
[This tutorial](https://docs.unitlab.ai/cli-python-sdk/cli) walks you through the most common CLI commands.
|
24
|
+
[This tutorial](https://docs.unitlab.ai/cli-python-sdk/unitlab-cli) walks you through the most common CLI commands.
|
25
25
|
|
26
26
|
## Quickstart
|
27
|
-
Follow [the quickstart guide for the Python SDK](https://docs.unitlab.ai/cli-python-sdk/python-sdk).
|
27
|
+
Follow [the quickstart guide for the Python SDK](https://docs.unitlab.ai/cli-python-sdk/unitlab-python-sdk).
|
28
28
|
|
29
29
|
|
30
30
|
## Documentation
|
@@ -19,7 +19,7 @@ class UnitlabClient:
|
|
19
19
|
"""A client with a connection to the Unitlab.ai platform.
|
20
20
|
|
21
21
|
Note:
|
22
|
-
Please refer to the `Python SDK quickstart <https://docs.unitlab.ai/
|
22
|
+
Please refer to the `Python SDK quickstart <https://docs.unitlab.ai/cli-python-sdk/unitlab-python-sdk>`__ for a full example of working with the Python SDK.
|
23
23
|
|
24
24
|
First install the SDK.
|
25
25
|
|
@@ -144,7 +144,7 @@ def dataset_download(
|
|
144
144
|
raise typer.BadParameter(
|
145
145
|
"Export type is required when download type is annotation"
|
146
146
|
)
|
147
|
-
get_client(api_key).dataset_download(pk, export_type)
|
147
|
+
return get_client(api_key).dataset_download(pk, export_type)
|
148
148
|
get_client(api_key).dataset_download_files(pk)
|
149
149
|
|
150
150
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|