diff --git a/.readthedocs.yml b/.readthedocs.yml index 14eab1a60..9653e0c34 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -12,7 +12,7 @@ build: # Build documentation in the docs/ directory with Sphinx sphinx: - configuration: docs/source/conf.py + configuration: docs/conf.py # Not building additional formats, as PDF build is failing # formats: diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index d0c3cbf10..000000000 --- a/docs/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Minimal makefile for Sphinx documentation -# - -# You can set these variables from the command line, and also -# from the environment for the first two. -SPHINXOPTS ?= -SPHINXBUILD ?= sphinx-build -SOURCEDIR = source -BUILDDIR = build - -# Put it first so that "make" without argument is like "make help". -help: - @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -.PHONY: help Makefile - -# Catch-all target: route all unknown targets to Sphinx using the new -# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). -%: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/source/conf.py b/docs/conf.py similarity index 89% rename from docs/source/conf.py rename to docs/conf.py index 41a63a046..986b4ed26 100644 --- a/docs/source/conf.py +++ b/docs/conf.py @@ -9,7 +9,6 @@ # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -# import os import sys @@ -18,9 +17,8 @@ # -- Project information ----------------------------------------------------- project = 'Python SDK reference' -copyright = '2021, Labelbox' +copyright = '2024, Labelbox' author = 'Labelbox' - release = '3.66.0' # -- General configuration --------------------------------------------------- @@ -29,7 +27,8 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ - 'sphinx.ext.autodoc', 'sphinx.ext.viewcode', 'sphinx.ext.napoleon' + 'multiproject', 'sphinx.ext.autodoc', 'sphinx.ext.viewcode', + 'sphinx.ext.napoleon', 'sphinx_rtd_theme' ] # Add any paths that contain templates here, relative to this directory. @@ -40,6 +39,8 @@ # This pattern also affects html_static_path and html_extra_path. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] +multiproject_projects = {"labelbox": {"path": "labelbox"}} + # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for @@ -50,10 +51,9 @@ # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = [] # Prevent the sidebar from collapsing -html_js_files = ['js/prevent_collapse.js'] html_theme_options = { "collapse_navigation": False, -} +} \ No newline at end of file diff --git a/docs/labelbox/annotation-import.rst b/docs/labelbox/annotation-import.rst new file mode 100644 index 000000000..8d671fb57 --- /dev/null +++ b/docs/labelbox/annotation-import.rst @@ -0,0 +1,7 @@ +Annotation Import +=============================================================================================== + +.. automodule:: labelbox.schema.annotation_import + :members: + :show-inheritance: + diff --git a/docs/labelbox/app.rst b/docs/labelbox/app.rst new file mode 100644 index 000000000..07b2145c4 --- /dev/null +++ b/docs/labelbox/app.rst @@ -0,0 +1,6 @@ +App +=============================================================================================== + +.. automodule:: labelbox.schema.foundry.app + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/asset-attachment.rst b/docs/labelbox/asset-attachment.rst new file mode 100644 index 000000000..5ae4dc58f --- /dev/null +++ b/docs/labelbox/asset-attachment.rst @@ -0,0 +1,6 @@ +Asset Attachment +=============================================================================================== + +.. automodule:: labelbox.schema.asset_attachment + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/batch.rst b/docs/labelbox/batch.rst new file mode 100644 index 000000000..cffab349f --- /dev/null +++ b/docs/labelbox/batch.rst @@ -0,0 +1,6 @@ +Batch +=============================================================================================== + +.. automodule:: labelbox.schema.batch + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/benchmark.rst b/docs/labelbox/benchmark.rst new file mode 100644 index 000000000..f894d2eff --- /dev/null +++ b/docs/labelbox/benchmark.rst @@ -0,0 +1,6 @@ +Benchmark +=============================================================================================== + +.. automodule:: labelbox.schema.benchmark + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/bulk-import-request.rst b/docs/labelbox/bulk-import-request.rst new file mode 100644 index 000000000..3a049743c --- /dev/null +++ b/docs/labelbox/bulk-import-request.rst @@ -0,0 +1,7 @@ +Bulk Import Request +=============================================================================================== + +.. automodule:: labelbox.schema.bulk_import_request + :members: + :exclude-members: create_from_local_file, create_from_objects, create_from_url, from_name + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/client.rst b/docs/labelbox/client.rst new file mode 100644 index 000000000..20bc3b8cb --- /dev/null +++ b/docs/labelbox/client.rst @@ -0,0 +1,8 @@ +Client +=============================================================================================== + +.. automodule:: labelbox.client + :members: + :special-members: __init__ + :exclude-members: upload_data, upload_file + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/conf.py b/docs/labelbox/conf.py new file mode 100644 index 000000000..e69de29bb diff --git a/docs/labelbox/conflict-resolution-strategy.rst b/docs/labelbox/conflict-resolution-strategy.rst new file mode 100644 index 000000000..48af9439c --- /dev/null +++ b/docs/labelbox/conflict-resolution-strategy.rst @@ -0,0 +1,5 @@ +Conflict Resolution Strategy +=============================================================================================== +.. automodule:: labelbox.schema.conflict_resolution_strategy + :members: + :show-inheritance: diff --git a/docs/labelbox/datarow-metadata.rst b/docs/labelbox/datarow-metadata.rst new file mode 100644 index 000000000..add5a62ca --- /dev/null +++ b/docs/labelbox/datarow-metadata.rst @@ -0,0 +1,7 @@ +DataRow Metadata +=============================================================================================== + +.. automodule:: labelbox.schema.data_row_metadata + :members: + :exclude-members: _DeleteBatchDataRowMetadata + :show-inheritance: diff --git a/docs/labelbox/datarow.rst b/docs/labelbox/datarow.rst new file mode 100644 index 000000000..72092291d --- /dev/null +++ b/docs/labelbox/datarow.rst @@ -0,0 +1,5 @@ +DataRow +=============================================================================================== +.. automodule:: labelbox.schema.data_row + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/dataset.rst b/docs/labelbox/dataset.rst new file mode 100644 index 000000000..c1d26b385 --- /dev/null +++ b/docs/labelbox/dataset.rst @@ -0,0 +1,6 @@ +Dataset +=============================================================================================== + +.. automodule:: labelbox.schema.dataset + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/enums.rst b/docs/labelbox/enums.rst new file mode 100644 index 000000000..e9820a145 --- /dev/null +++ b/docs/labelbox/enums.rst @@ -0,0 +1,6 @@ +Enums +=============================================================================================== + +.. automodule:: labelbox.schema.enums + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/exceptions.rst b/docs/labelbox/exceptions.rst new file mode 100644 index 000000000..3082bc081 --- /dev/null +++ b/docs/labelbox/exceptions.rst @@ -0,0 +1,6 @@ +Exceptions +=============================================================================================== + +.. automodule:: labelbox.exceptions + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/export-task.rst b/docs/labelbox/export-task.rst new file mode 100644 index 000000000..8b1bf647d --- /dev/null +++ b/docs/labelbox/export-task.rst @@ -0,0 +1,7 @@ +Export Task +=============================================================================================== + +.. automodule:: labelbox.schema.export_task + :members: + :exclude-members: FileRetrieverByLine, FileRetrieverByOffset, FileRetrieverStrategy, Range, Converter + :show-inheritance: diff --git a/docs/labelbox/foundry-client.rst b/docs/labelbox/foundry-client.rst new file mode 100644 index 000000000..b9ef76c48 --- /dev/null +++ b/docs/labelbox/foundry-client.rst @@ -0,0 +1,6 @@ +Foundry Client +=============================================================================================== + +.. automodule:: labelbox.schema.foundry.foundry_client + :members: + :show-inheritance: diff --git a/docs/labelbox/foundry-model.rst b/docs/labelbox/foundry-model.rst new file mode 100644 index 000000000..52a09bc60 --- /dev/null +++ b/docs/labelbox/foundry-model.rst @@ -0,0 +1,6 @@ +Foundry Model +=============================================================================================== + +.. automodule:: labelbox.schema.foundry.model + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/identifiable.rst b/docs/labelbox/identifiable.rst new file mode 100644 index 000000000..698cccc1c --- /dev/null +++ b/docs/labelbox/identifiable.rst @@ -0,0 +1,6 @@ +Identifiable +=============================================================================================== + +.. automodule:: labelbox.schema.identifiable + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/identifiables.rst b/docs/labelbox/identifiables.rst new file mode 100644 index 000000000..bc853b1fe --- /dev/null +++ b/docs/labelbox/identifiables.rst @@ -0,0 +1,6 @@ +Identifiables +=============================================================================================== + +.. automodule:: labelbox.schema.identifiables + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/index.rst b/docs/labelbox/index.rst new file mode 100644 index 000000000..348f39cc3 --- /dev/null +++ b/docs/labelbox/index.rst @@ -0,0 +1,44 @@ +Labelbox Python SDK Documentation +=============================================================================================== + +.. toctree:: + :maxdepth: 3 + :caption: Contents: + + annotation-import + app + asset-attachment + batch + benchmark + bulk-import-request + client + conflict-resolution-strategy + datarow + datarow-metadata + dataset + enums + exceptions + export-task + foundry-client + foundry-model + identifiable + identifiables + label + labeling-frontend + labeling-frontend-options + labeling-parameter-override + model + model-run + ontology + organization + pagination + project + quality-mode + resource-tag + review + send-to-annotate-params + slice + task + task-queue + user + webhook \ No newline at end of file diff --git a/docs/labelbox/label.rst b/docs/labelbox/label.rst new file mode 100644 index 000000000..99606d59a --- /dev/null +++ b/docs/labelbox/label.rst @@ -0,0 +1,6 @@ +Label +=============================================================================================== + +.. automodule:: labelbox.schema.label + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/labeling-frontend-options.rst b/docs/labelbox/labeling-frontend-options.rst new file mode 100644 index 000000000..28820696f --- /dev/null +++ b/docs/labelbox/labeling-frontend-options.rst @@ -0,0 +1,8 @@ +Labeling Frontend Options +=============================================================================================== + +.. automodule:: labelbox.schema.labeling_frontend + :members: LabelingFrontendOptions + :exclude-members: LabelingFrontend + :show-inheritance: + :noindex: \ No newline at end of file diff --git a/docs/labelbox/labeling-frontend.rst b/docs/labelbox/labeling-frontend.rst new file mode 100644 index 000000000..874a85179 --- /dev/null +++ b/docs/labelbox/labeling-frontend.rst @@ -0,0 +1,7 @@ +Labeling Frontend +=============================================================================================== + +.. automodule:: labelbox.schema.labeling_frontend + :members: LabelingFrontend + :exclude-members: LabelingFrontendOptions + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/labeling-parameter-override.rst b/docs/labelbox/labeling-parameter-override.rst new file mode 100644 index 000000000..83a59167c --- /dev/null +++ b/docs/labelbox/labeling-parameter-override.rst @@ -0,0 +1,7 @@ +Labeling Parameter Override +=============================================================================================== + +.. automodule:: labelbox.schema.project + :members: LabelingParameterOverride + :show-inheritance: + :noindex: \ No newline at end of file diff --git a/docs/labelbox/model-run.rst b/docs/labelbox/model-run.rst new file mode 100644 index 000000000..12defc3ae --- /dev/null +++ b/docs/labelbox/model-run.rst @@ -0,0 +1,6 @@ +Model Run +=============================================================================================== + +.. automodule:: labelbox.schema.model_run + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/model.rst b/docs/labelbox/model.rst new file mode 100644 index 000000000..05fb5d8e0 --- /dev/null +++ b/docs/labelbox/model.rst @@ -0,0 +1,6 @@ +Model +=============================================================================================== + +.. automodule:: labelbox.schema.model + :members: + :show-inheritance: diff --git a/docs/labelbox/ontology.rst b/docs/labelbox/ontology.rst new file mode 100644 index 000000000..fba299d75 --- /dev/null +++ b/docs/labelbox/ontology.rst @@ -0,0 +1,7 @@ +Ontology +=============================================================================================== + +.. automodule:: labelbox.schema.ontology + :members: + :exclude-members: OntologyEntity, Classification, Tool, Option + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/organization.rst b/docs/labelbox/organization.rst new file mode 100644 index 000000000..4b7a1bf0f --- /dev/null +++ b/docs/labelbox/organization.rst @@ -0,0 +1,6 @@ +Organization +=============================================================================================== + +.. automodule:: labelbox.schema.organization + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/pagination.rst b/docs/labelbox/pagination.rst new file mode 100644 index 000000000..9112592fd --- /dev/null +++ b/docs/labelbox/pagination.rst @@ -0,0 +1,7 @@ +Pagination +=============================================================================================== + +.. automodule:: labelbox.pagination + :members: + :special-members: __init__ + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/project.rst b/docs/labelbox/project.rst new file mode 100644 index 000000000..0baf8b37c --- /dev/null +++ b/docs/labelbox/project.rst @@ -0,0 +1,7 @@ +Project +=============================================================================================== + +.. automodule:: labelbox.schema.project + :members: + :exclude-members: LabelerPerformance, LabelingParameterOverride + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/quality-mode.rst b/docs/labelbox/quality-mode.rst new file mode 100644 index 000000000..d3bc27bcb --- /dev/null +++ b/docs/labelbox/quality-mode.rst @@ -0,0 +1,6 @@ +Quality Mode +=============================================================================================== + +.. automodule:: labelbox.schema.quality_mode + :members: + :show-inheritance: diff --git a/docs/labelbox/resource-tag.rst b/docs/labelbox/resource-tag.rst new file mode 100644 index 000000000..39742f649 --- /dev/null +++ b/docs/labelbox/resource-tag.rst @@ -0,0 +1,6 @@ +Resource Tag +=============================================================================================== + +.. automodule:: labelbox.schema.resource_tag + :members: + :show-inheritance: diff --git a/docs/labelbox/review.rst b/docs/labelbox/review.rst new file mode 100644 index 000000000..5d549a7d7 --- /dev/null +++ b/docs/labelbox/review.rst @@ -0,0 +1,6 @@ +Review +=============================================================================================== + +.. automodule:: labelbox.schema.review + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/send-to-annotate-params.rst b/docs/labelbox/send-to-annotate-params.rst new file mode 100644 index 000000000..946264545 --- /dev/null +++ b/docs/labelbox/send-to-annotate-params.rst @@ -0,0 +1,6 @@ +Send To Annotate Params +=============================================================================================== + +.. automodule:: labelbox.schema.send_to_annotate_params + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/slice.rst b/docs/labelbox/slice.rst new file mode 100644 index 000000000..cb36060fa --- /dev/null +++ b/docs/labelbox/slice.rst @@ -0,0 +1,6 @@ +Slice +=============================================================================================== + +.. automodule:: labelbox.schema.slice + :members: + :show-inheritance: diff --git a/docs/labelbox/task-queue.rst b/docs/labelbox/task-queue.rst new file mode 100644 index 000000000..87dd309d0 --- /dev/null +++ b/docs/labelbox/task-queue.rst @@ -0,0 +1,6 @@ +Task Queue +=============================================================================================== + +.. automodule:: labelbox.schema.task_queue + :members: + :show-inheritance: diff --git a/docs/labelbox/task.rst b/docs/labelbox/task.rst new file mode 100644 index 000000000..abc9f48bc --- /dev/null +++ b/docs/labelbox/task.rst @@ -0,0 +1,6 @@ +Task +=============================================================================================== + +.. automodule:: labelbox.schema.task + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/user.rst b/docs/labelbox/user.rst new file mode 100644 index 000000000..44d5eb480 --- /dev/null +++ b/docs/labelbox/user.rst @@ -0,0 +1,6 @@ +User +=============================================================================================== + +.. automodule:: labelbox.schema.user + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/labelbox/webhook.rst b/docs/labelbox/webhook.rst new file mode 100644 index 000000000..047666397 --- /dev/null +++ b/docs/labelbox/webhook.rst @@ -0,0 +1,6 @@ +Webhook +=============================================================================================== + +.. automodule:: labelbox.schema.webhook + :members: + :show-inheritance: \ No newline at end of file diff --git a/docs/make.bat b/docs/make.bat deleted file mode 100644 index 6247f7e23..000000000 --- a/docs/make.bat +++ /dev/null @@ -1,35 +0,0 @@ -@ECHO OFF - -pushd %~dp0 - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set SOURCEDIR=source -set BUILDDIR=build - -if "%1" == "" goto help - -%SPHINXBUILD% >NUL 2>NUL -if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure you have Sphinx - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively you - echo.may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.http://sphinx-doc.org/ - exit /b 1 -) - -%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% -goto end - -:help -%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% - -:end -popd diff --git a/docs/requirements.txt b/docs/requirements.txt index 5926fb23d..adaf24147 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,2 +1,3 @@ -Sphinx~=5.3.0 -sphinx-rtd-theme==0.5.1 +sphinx==7.1.2 +sphinx-multiproject==1.0.0rc1 +sphinx-rtd-theme==2.0.0 \ No newline at end of file diff --git a/docs/source/_static/js/prevent_collapse.js b/docs/source/_static/js/prevent_collapse.js deleted file mode 100644 index abb7d7fdf..000000000 --- a/docs/source/_static/js/prevent_collapse.js +++ /dev/null @@ -1,13 +0,0 @@ - -window.addEventListener('load', (event) => { - var menu = document.querySelector(".wy-menu ul li:first-child") - if (!menu.classList.contains("current")) { - menu.classList.add("current") - } -}); - -window.onload = function() { - if (window.jQuery) { - $(window).off('hashchange') - } -} diff --git a/docs/source/index.rst b/docs/source/index.rst deleted file mode 100644 index 1dfa1808b..000000000 --- a/docs/source/index.rst +++ /dev/null @@ -1,266 +0,0 @@ -Labelbox Python API reference -=================================== - -.. toctree:: - :maxdepth: 3 - :caption: Contents: - -Client ----------------------- - -.. automodule:: labelbox.client - :members: - :special-members: __init__ - :exclude-members: upload_data, upload_file - :show-inheritance: - -AssetAttachment --------------------------------------- - -.. automodule:: labelbox.schema.asset_attachment - :members: - :show-inheritance: - - -Benchmark --------------------------------- - -.. automodule:: labelbox.schema.benchmark - :members: - :show-inheritance: - -BulkImportRequest --------------------------------------------- - -.. automodule:: labelbox.schema.bulk_import_request - :members: - :exclude-members: create_from_local_file, create_from_objects, create_from_url, from_name - :show-inheritance: - -DataRow --------------------------------- - -.. automodule:: labelbox.schema.data_row - :members: - :show-inheritance: - -Dataset ------------------------------- - -.. automodule:: labelbox.schema.dataset - :members: - :show-inheritance: - -Label ----------------------------- - -.. automodule:: labelbox.schema.label - :members: - :show-inheritance: - -LabelingFrontend ------------------------------------------ - -.. automodule:: labelbox.schema.labeling_frontend - :members: LabelingFrontend - :exclude-members: LabelingFrontendOptions - :show-inheritance: - -LabelingFrontendOptions ------------------------------------------ -.. automodule:: labelbox.schema.labeling_frontend - :members: LabelingFrontendOptions - :exclude-members: LabelingFrontend - :show-inheritance: - :noindex: - -LabelingParameterOverride ------------------------------------------ -.. automodule:: labelbox.schema.project - :members: LabelingParameterOverride - :show-inheritance: - :noindex: - -Ontology -------------------------------- - -.. automodule:: labelbox.schema.ontology - :members: - :exclude-members: OntologyEntity, Classification, Tool, Option - :show-inheritance: - -Organization ------------------------------------ - -.. automodule:: labelbox.schema.organization - :members: - :show-inheritance: - -Project ------------------------------- - -.. automodule:: labelbox.schema.project - :members: - :exclude-members: LabelerPerformance, LabelingParameterOverride - :show-inheritance: - -Review ------------------------------ - -.. automodule:: labelbox.schema.review - :members: - :show-inheritance: - -Task ---------------------------- - -.. automodule:: labelbox.schema.task - :members: - :show-inheritance: - -Task Queue ---------------------------- -.. automodule:: labelbox.schema.task_queue - :members: - :show-inheritance: - -User ---------------------------- - -.. automodule:: labelbox.schema.user - :members: - :show-inheritance: - -Webhook ------------------------------- - -.. automodule:: labelbox.schema.webhook - :members: - :show-inheritance: - -Exceptions --------------------------- - -.. automodule:: labelbox.exceptions - :members: - :show-inheritance: - -Pagination --------------------------- - -.. automodule:: labelbox.pagination - :members: - :special-members: __init__ - :show-inheritance: - -Enums ----------------------------- - -.. automodule:: labelbox.schema.enums - :members: - :show-inheritance: - -ModelRun ----------------------------- - -.. automodule:: labelbox.schema.model_run - :members: - :show-inheritance: - -Model ----------------------------- - -.. automodule:: labelbox.schema.model - :members: - :show-inheritance: - -DataRowMetadata ----------------------------- - -.. automodule:: labelbox.schema.data_row_metadata - :members: - :exclude-members: _DeleteBatchDataRowMetadata - :show-inheritance: - -AnnotationImport ----------------------------- - -.. automodule:: labelbox.schema.annotation_import - :members: - :show-inheritance: - -Batch ----------------------------- - -.. automodule:: labelbox.schema.batch - :members: - :show-inheritance: - -ResourceTag ----------------------------- - -.. automodule:: labelbox.schema.resource_tag - :members: - :show-inheritance: - - -Slice ---------------------------- -.. automodule:: labelbox.schema.slice - :members: - :show-inheritance: - -QualityMode ------------------------------------------ -.. automodule:: labelbox.schema.quality_mode - :members: - :show-inheritance: - -ExportTask ---------------------------- -.. automodule:: labelbox.schema.export_task - :members: - :exclude-members: FileRetrieverByLine, FileRetrieverByOffset, FileRetrieverStrategy, Range, Converter - :show-inheritance: - -Identifiables ---------------------------- -.. automodule:: labelbox.schema.identifiables - :members: - :show-inheritance: - -Identifiable ---------------------------- -.. automodule:: labelbox.schema.identifiable - :members: - :show-inheritance: - -ConflictResolutionStrategy ---------------------------- -.. automodule:: labelbox.schema.conflict_resolution_strategy - :members: - :show-inheritance: - -FoundryClient ---------------------------- -.. automodule:: labelbox.schema.foundry.foundry_client - :members: - :show-inheritance: - -App ---------------------------- -.. automodule:: labelbox.schema.foundry.app - :members: - :show-inheritance: - -FoundryModel ---------------------------- -.. automodule:: labelbox.schema.foundry.model - :members: - :show-inheritance: - -SendToAnnotateParams ---------------------------- -.. automodule:: labelbox.schema.send_to_annotate_params - :members: - :show-inheritance: \ No newline at end of file