├── .VERSION ├── .github └── workflows │ ├── release.yml │ └── trigger_from_labelu_kit.yml ├── .gitignore ├── .releaserc.json ├── Dockerfile ├── LICENSE ├── README.md ├── README_zh-CN.md ├── images ├── imglist.txt └── labelU-logo.svg ├── labelu ├── __init__.py ├── alembic_labelu │ ├── __init__.py │ ├── alembic.ini │ ├── alembic_labelu_tools.py │ ├── env.py │ ├── run_migrate.py │ ├── script.py.mako │ └── versions │ │ ├── 0145db0fec34_change_result_format.py │ │ ├── 034c7045b540_remove_task_attachment_ids.py │ │ ├── 1b174ca5159a_update_fields.py │ │ ├── 2eb983c9a254_add_collaborators_and_updaters.py │ │ ├── 363f9eea797e_change_tool_config_format.py │ │ ├── 54fee6a7ecd8_init_db.py │ │ ├── 9d5da133bbe4_replace_key_with_value_in_sample_table.py │ │ ├── bc8fcb35b66b_add_media_and_pre_annotation.py │ │ ├── e76c2ca5562e_add_inner_id.py │ │ └── eb9c5b98168b_add_sample_name_and_data_to_task_pre_.py ├── internal │ ├── __init__.py │ ├── adapter │ │ ├── __init__.py │ │ ├── persistence │ │ │ ├── crud_attachment.py │ │ │ ├── crud_pre_annotation.py │ │ │ ├── crud_sample.py │ │ │ ├── crud_task.py │ │ │ └── crud_user.py │ │ ├── routers │ │ │ ├── __init__.py │ │ │ ├── attachment.py │ │ │ ├── pre_annotation.py │ │ │ ├── sample.py │ │ │ ├── task.py │ │ │ └── user.py │ │ └── ws │ │ │ ├── __init__.py │ │ │ └── sample.py │ ├── application │ │ ├── __init__.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── attachment.py │ │ │ ├── pre_annotation.py │ │ │ ├── sample.py │ │ │ ├── task.py │ │ │ └── user.py │ │ ├── response │ │ │ ├── __init__.py │ │ │ ├── attachment.py │ │ │ ├── base.py │ │ │ ├── pre_annotation.py │ │ │ ├── sample.py │ │ │ ├── task.py │ │ │ └── user.py │ │ └── service │ │ │ ├── attachment.py │ │ │ ├── pre_annotation.py │ │ │ ├── sample.py │ │ │ ├── task.py │ │ │ └── user.py │ ├── clients │ │ ├── __init__.py │ │ └── ws.py │ ├── common │ │ ├── __init__.py │ │ ├── color.py │ │ ├── config.py │ │ ├── converter.py │ │ ├── db.py │ │ ├── error_code.py │ │ ├── io.py │ │ ├── logger.py │ │ ├── security.py │ │ ├── tf_record_converter.py │ │ ├── websocket.py │ │ └── xml_converter.py │ ├── dependencies │ │ ├── __init__.py │ │ └── user.py │ ├── domain │ │ └── models │ │ │ ├── __init__.py │ │ │ ├── attachment.py │ │ │ ├── pre_annotation.py │ │ │ ├── sample.py │ │ │ ├── task.py │ │ │ ├── task_collaborator.py │ │ │ ├── task_sample_updater.py │ │ │ └── user.py │ ├── middleware │ │ ├── __init__.py │ │ ├── content_type.py │ │ └── tracing.py │ └── statics │ │ └── __init__.py ├── main.py ├── scripts │ └── migrate_to_mysql.py ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── data │ │ ├── test.jsonl │ │ ├── test.png │ │ └── test.txt │ ├── internal │ │ ├── __init__.py │ │ ├── adapter │ │ │ ├── __init__.py │ │ │ ├── persistence │ │ │ │ └── test_crud_user.py │ │ │ └── routers │ │ │ │ ├── __init__.py │ │ │ │ ├── test_attachment.py │ │ │ │ ├── test_pre_annotation.py │ │ │ │ ├── test_sample.py │ │ │ │ ├── test_task.py │ │ │ │ └── test_user.py │ │ └── common │ │ │ ├── test_converter.py │ │ │ └── test_security.py │ └── utils │ │ ├── __init__.py │ │ └── utils.py └── version.py ├── pyproject.toml └── scripts ├── release-notification.js ├── resolve_frontend.sh └── utils.js /.VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/.VERSION -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/trigger_from_labelu_kit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/.github/workflows/trigger_from_labelu_kit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/.releaserc.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /images/imglist.txt: -------------------------------------------------------------------------------- 1 | logo.svg 2 | -------------------------------------------------------------------------------- /images/labelU-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/images/labelU-logo.svg -------------------------------------------------------------------------------- /labelu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/alembic_labelu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/alembic_labelu/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/alembic.ini -------------------------------------------------------------------------------- /labelu/alembic_labelu/alembic_labelu_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/alembic_labelu_tools.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/env.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/run_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/run_migrate.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/script.py.mako -------------------------------------------------------------------------------- /labelu/alembic_labelu/versions/0145db0fec34_change_result_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/versions/0145db0fec34_change_result_format.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/versions/034c7045b540_remove_task_attachment_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/versions/034c7045b540_remove_task_attachment_ids.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/versions/1b174ca5159a_update_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/versions/1b174ca5159a_update_fields.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/versions/2eb983c9a254_add_collaborators_and_updaters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/versions/2eb983c9a254_add_collaborators_and_updaters.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/versions/363f9eea797e_change_tool_config_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/versions/363f9eea797e_change_tool_config_format.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/versions/54fee6a7ecd8_init_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/versions/54fee6a7ecd8_init_db.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/versions/9d5da133bbe4_replace_key_with_value_in_sample_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/versions/9d5da133bbe4_replace_key_with_value_in_sample_table.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/versions/bc8fcb35b66b_add_media_and_pre_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/versions/bc8fcb35b66b_add_media_and_pre_annotation.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/versions/e76c2ca5562e_add_inner_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/versions/e76c2ca5562e_add_inner_id.py -------------------------------------------------------------------------------- /labelu/alembic_labelu/versions/eb9c5b98168b_add_sample_name_and_data_to_task_pre_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/alembic_labelu/versions/eb9c5b98168b_add_sample_name_and_data_to_task_pre_.py -------------------------------------------------------------------------------- /labelu/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/internal/adapter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/internal/adapter/persistence/crud_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/persistence/crud_attachment.py -------------------------------------------------------------------------------- /labelu/internal/adapter/persistence/crud_pre_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/persistence/crud_pre_annotation.py -------------------------------------------------------------------------------- /labelu/internal/adapter/persistence/crud_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/persistence/crud_sample.py -------------------------------------------------------------------------------- /labelu/internal/adapter/persistence/crud_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/persistence/crud_task.py -------------------------------------------------------------------------------- /labelu/internal/adapter/persistence/crud_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/persistence/crud_user.py -------------------------------------------------------------------------------- /labelu/internal/adapter/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/routers/__init__.py -------------------------------------------------------------------------------- /labelu/internal/adapter/routers/attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/routers/attachment.py -------------------------------------------------------------------------------- /labelu/internal/adapter/routers/pre_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/routers/pre_annotation.py -------------------------------------------------------------------------------- /labelu/internal/adapter/routers/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/routers/sample.py -------------------------------------------------------------------------------- /labelu/internal/adapter/routers/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/routers/task.py -------------------------------------------------------------------------------- /labelu/internal/adapter/routers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/routers/user.py -------------------------------------------------------------------------------- /labelu/internal/adapter/ws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/ws/__init__.py -------------------------------------------------------------------------------- /labelu/internal/adapter/ws/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/adapter/ws/sample.py -------------------------------------------------------------------------------- /labelu/internal/application/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/internal/application/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/internal/application/command/attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/command/attachment.py -------------------------------------------------------------------------------- /labelu/internal/application/command/pre_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/command/pre_annotation.py -------------------------------------------------------------------------------- /labelu/internal/application/command/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/command/sample.py -------------------------------------------------------------------------------- /labelu/internal/application/command/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/command/task.py -------------------------------------------------------------------------------- /labelu/internal/application/command/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/command/user.py -------------------------------------------------------------------------------- /labelu/internal/application/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/internal/application/response/attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/response/attachment.py -------------------------------------------------------------------------------- /labelu/internal/application/response/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/response/base.py -------------------------------------------------------------------------------- /labelu/internal/application/response/pre_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/response/pre_annotation.py -------------------------------------------------------------------------------- /labelu/internal/application/response/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/response/sample.py -------------------------------------------------------------------------------- /labelu/internal/application/response/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/response/task.py -------------------------------------------------------------------------------- /labelu/internal/application/response/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/response/user.py -------------------------------------------------------------------------------- /labelu/internal/application/service/attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/service/attachment.py -------------------------------------------------------------------------------- /labelu/internal/application/service/pre_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/service/pre_annotation.py -------------------------------------------------------------------------------- /labelu/internal/application/service/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/service/sample.py -------------------------------------------------------------------------------- /labelu/internal/application/service/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/service/task.py -------------------------------------------------------------------------------- /labelu/internal/application/service/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/application/service/user.py -------------------------------------------------------------------------------- /labelu/internal/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/internal/clients/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/clients/ws.py -------------------------------------------------------------------------------- /labelu/internal/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/internal/common/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/common/color.py -------------------------------------------------------------------------------- /labelu/internal/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/common/config.py -------------------------------------------------------------------------------- /labelu/internal/common/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/common/converter.py -------------------------------------------------------------------------------- /labelu/internal/common/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/common/db.py -------------------------------------------------------------------------------- /labelu/internal/common/error_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/common/error_code.py -------------------------------------------------------------------------------- /labelu/internal/common/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/common/io.py -------------------------------------------------------------------------------- /labelu/internal/common/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/common/logger.py -------------------------------------------------------------------------------- /labelu/internal/common/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/common/security.py -------------------------------------------------------------------------------- /labelu/internal/common/tf_record_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/common/tf_record_converter.py -------------------------------------------------------------------------------- /labelu/internal/common/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/common/websocket.py -------------------------------------------------------------------------------- /labelu/internal/common/xml_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/common/xml_converter.py -------------------------------------------------------------------------------- /labelu/internal/dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/internal/dependencies/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/dependencies/user.py -------------------------------------------------------------------------------- /labelu/internal/domain/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/domain/models/__init__.py -------------------------------------------------------------------------------- /labelu/internal/domain/models/attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/domain/models/attachment.py -------------------------------------------------------------------------------- /labelu/internal/domain/models/pre_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/domain/models/pre_annotation.py -------------------------------------------------------------------------------- /labelu/internal/domain/models/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/domain/models/sample.py -------------------------------------------------------------------------------- /labelu/internal/domain/models/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/domain/models/task.py -------------------------------------------------------------------------------- /labelu/internal/domain/models/task_collaborator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/domain/models/task_collaborator.py -------------------------------------------------------------------------------- /labelu/internal/domain/models/task_sample_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/domain/models/task_sample_updater.py -------------------------------------------------------------------------------- /labelu/internal/domain/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/domain/models/user.py -------------------------------------------------------------------------------- /labelu/internal/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/middleware/__init__.py -------------------------------------------------------------------------------- /labelu/internal/middleware/content_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/middleware/content_type.py -------------------------------------------------------------------------------- /labelu/internal/middleware/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/internal/middleware/tracing.py -------------------------------------------------------------------------------- /labelu/internal/statics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/main.py -------------------------------------------------------------------------------- /labelu/scripts/migrate_to_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/scripts/migrate_to_mysql.py -------------------------------------------------------------------------------- /labelu/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/conftest.py -------------------------------------------------------------------------------- /labelu/tests/data/test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/data/test.jsonl -------------------------------------------------------------------------------- /labelu/tests/data/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/data/test.png -------------------------------------------------------------------------------- /labelu/tests/data/test.txt: -------------------------------------------------------------------------------- 1 | this is test file -------------------------------------------------------------------------------- /labelu/tests/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/tests/internal/adapter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/tests/internal/adapter/persistence/test_crud_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/internal/adapter/persistence/test_crud_user.py -------------------------------------------------------------------------------- /labelu/tests/internal/adapter/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/tests/internal/adapter/routers/test_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/internal/adapter/routers/test_attachment.py -------------------------------------------------------------------------------- /labelu/tests/internal/adapter/routers/test_pre_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/internal/adapter/routers/test_pre_annotation.py -------------------------------------------------------------------------------- /labelu/tests/internal/adapter/routers/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/internal/adapter/routers/test_sample.py -------------------------------------------------------------------------------- /labelu/tests/internal/adapter/routers/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/internal/adapter/routers/test_task.py -------------------------------------------------------------------------------- /labelu/tests/internal/adapter/routers/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/internal/adapter/routers/test_user.py -------------------------------------------------------------------------------- /labelu/tests/internal/common/test_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/internal/common/test_converter.py -------------------------------------------------------------------------------- /labelu/tests/internal/common/test_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/internal/common/test_security.py -------------------------------------------------------------------------------- /labelu/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelu/tests/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/labelu/tests/utils/utils.py -------------------------------------------------------------------------------- /labelu/version.py: -------------------------------------------------------------------------------- 1 | version='1.3.2' -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/release-notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/scripts/release-notification.js -------------------------------------------------------------------------------- /scripts/resolve_frontend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/scripts/resolve_frontend.sh -------------------------------------------------------------------------------- /scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendatalab/labelU/HEAD/scripts/utils.js --------------------------------------------------------------------------------