├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 01-question.md │ ├── 02-bug.md │ ├── 03-install.md │ └── 04-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── mkdocs-deployment.yml │ └── package-installation.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── doccano_client ├── __init__.py ├── beta │ ├── README.md │ ├── __init__.py │ ├── client.py │ ├── controllers │ │ ├── __init__.py │ │ ├── annotation.py │ │ ├── category.py │ │ ├── category_type.py │ │ ├── comment.py │ │ ├── example.py │ │ ├── label.py │ │ ├── member.py │ │ ├── project.py │ │ ├── relation.py │ │ ├── relation_type.py │ │ ├── span.py │ │ ├── span_type.py │ │ └── text.py │ ├── models │ │ ├── __init__.py │ │ ├── annotations.py │ │ ├── category.py │ │ ├── category_type.py │ │ ├── comments.py │ │ ├── examples.py │ │ ├── labels.py │ │ ├── members.py │ │ ├── projects.py │ │ ├── relation.py │ │ ├── relation_type.py │ │ ├── span.py │ │ ├── span_type.py │ │ └── text.py │ ├── py.typed │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── controllers │ │ │ ├── __init__.py │ │ │ ├── mock_api_responses │ │ │ │ ├── __init__.py │ │ │ │ ├── annotations.py │ │ │ │ ├── bad.py │ │ │ │ ├── categories.py │ │ │ │ ├── category_types.py │ │ │ │ ├── comments.py │ │ │ │ ├── examples.py │ │ │ │ ├── labels.py │ │ │ │ ├── members.py │ │ │ │ ├── projects.py │ │ │ │ ├── relation_types.py │ │ │ │ ├── relations.py │ │ │ │ ├── span_types.py │ │ │ │ ├── spans.py │ │ │ │ └── texts.py │ │ │ ├── test_annotation.py.unused.bak │ │ │ ├── test_category.py │ │ │ ├── test_category_type.py │ │ │ ├── test_comment.py │ │ │ ├── test_example.py │ │ │ ├── test_label.py.unused.bak │ │ │ ├── test_member.py │ │ │ ├── test_project.py │ │ │ ├── test_relation.py │ │ │ ├── test_relation_type.py │ │ │ ├── test_span.py │ │ │ ├── test_span_type.py │ │ │ └── test_text.py │ │ ├── test_client.py │ │ ├── test_full_integration_tests.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── test_response.py │ └── utils │ │ ├── __init__.py │ │ └── response.py ├── cli │ ├── __init__.py │ ├── active_learning │ │ ├── __init__.py │ │ ├── languages.py │ │ ├── manager.py │ │ ├── models.py │ │ ├── preparation.py │ │ ├── strategies.py │ │ └── trainer.py │ ├── commands.py │ ├── entity.py │ ├── estimators.py │ └── usecases.py ├── client.py ├── exceptions.py ├── models │ ├── __init__.py │ ├── comment.py │ ├── data_download.py │ ├── data_upload.py │ ├── example.py │ ├── label.py │ ├── label_type.py │ ├── member.py │ ├── metrics.py │ ├── project.py │ ├── role.py │ ├── task_status.py │ ├── user.py │ └── user_details.py ├── repositories │ ├── __init__.py │ ├── base.py │ ├── comment.py │ ├── data_download.py │ ├── data_upload.py │ ├── example.py │ ├── label.py │ ├── label_type.py │ ├── member.py │ ├── metrics.py │ ├── project.py │ ├── role.py │ ├── task_status.py │ ├── user.py │ └── user_details.py ├── services │ └── label_type.py └── usecase │ ├── __init__.py │ ├── comment.py │ ├── data_download.py │ ├── data_upload.py │ ├── example.py │ ├── label.py │ ├── label_type.py │ ├── member.py │ ├── project.py │ ├── role.py │ └── user_details.py ├── docs ├── cli.md ├── index.md ├── install.md ├── mkdocs.yml ├── requirements.txt └── usage.md ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── integration ├── __init__.py ├── data │ ├── classification.jsonl │ └── labels.json ├── repositories │ ├── __init__.py │ ├── fixtures │ │ ├── comment │ │ │ ├── create.yaml │ │ │ ├── delete.yaml │ │ │ ├── login.yaml │ │ │ └── update.yaml │ │ ├── data_download │ │ │ ├── download.yaml │ │ │ ├── login.yaml │ │ │ ├── options.yaml │ │ │ └── schedule_download.yaml │ │ ├── data_upload │ │ │ ├── delete.yaml │ │ │ ├── ingest.yaml │ │ │ ├── login.yaml │ │ │ ├── options.yaml │ │ │ └── upload.yaml │ │ ├── example │ │ │ ├── create.yaml │ │ │ ├── delete.yaml │ │ │ ├── login.yaml │ │ │ └── update.yaml │ │ ├── label │ │ │ ├── create.yaml │ │ │ ├── delete.yaml │ │ │ ├── login.yaml │ │ │ └── update.yaml │ │ ├── label_type │ │ │ ├── create.yaml │ │ │ ├── delete.yaml │ │ │ ├── list.yaml │ │ │ ├── login.yaml │ │ │ ├── update.yaml │ │ │ └── upload.yaml │ │ ├── member │ │ │ ├── create.yaml │ │ │ ├── login.yaml │ │ │ └── update.yaml │ │ ├── metrics │ │ │ ├── category_distribution.yaml │ │ │ ├── login.yaml │ │ │ ├── member_progress.yaml │ │ │ └── progress.yaml │ │ ├── role │ │ │ ├── list.yaml │ │ │ └── login.yaml │ │ ├── task_status │ │ │ ├── list.yaml │ │ │ └── login.yaml │ │ └── user │ │ │ ├── get_profile.yaml │ │ │ ├── list.yaml │ │ │ └── login.yaml │ ├── test_comment.py │ ├── test_data_download.py │ ├── test_data_upload.py │ ├── test_example.py │ ├── test_label.py │ ├── test_label_types.py │ ├── test_member.py │ ├── test_metrics.py │ ├── test_project.py │ ├── test_role.py │ ├── test_task_status.py │ └── test_user.py └── usecase │ ├── __init__.py │ ├── fixtures │ ├── comment │ │ ├── create.yaml │ │ ├── delete.yaml │ │ └── update.yaml │ ├── data_download │ │ └── download.yaml │ ├── data_upload │ │ └── upload.yaml │ ├── example │ │ ├── create.yaml │ │ ├── delete.yaml │ │ ├── delete_all.yaml │ │ └── update.yaml │ ├── label │ │ ├── create.yaml │ │ ├── delete.yaml │ │ └── update.yaml │ ├── label_type │ │ ├── create.yaml │ │ ├── delete.yaml │ │ ├── update.yaml │ │ └── upload.yaml │ ├── login.yaml │ ├── member │ │ ├── add.yaml │ │ ├── delete.yaml │ │ └── update.yaml │ ├── project │ │ ├── delete.yaml │ │ ├── find_by_id.yaml │ │ ├── list.yaml │ │ └── update.yaml │ ├── role │ │ └── list.yaml │ ├── user │ │ ├── find_by_name.yaml │ │ ├── get_profile.yaml │ │ └── search.yaml │ └── user_details │ │ ├── change_password.yaml │ │ ├── get.yaml │ │ ├── login.yaml │ │ └── update_user_details.yaml │ ├── test_comment.py │ ├── test_data_download.py │ ├── test_data_upload.py │ ├── test_example.py │ ├── test_label.py │ ├── test_label_type.py │ ├── test_member.py │ ├── test_project.py │ ├── test_role.py │ └── test_user_details.py └── unit ├── __init__.py ├── models ├── __init__.py └── test_user_details.py ├── repositories └── test_base.py ├── services ├── __init__.py └── test_label_type.py └── usecase ├── __init__.py ├── test_comment.py ├── test_data_download.py ├── test_data_upload.py ├── test_example.py ├── test_label.py ├── test_label_type.py ├── test_member.py ├── test_project.py └── test_role.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Hironsan 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.github/ISSUE_TEMPLATE/01-question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.github/ISSUE_TEMPLATE/02-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.github/ISSUE_TEMPLATE/03-install.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.github/ISSUE_TEMPLATE/04-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/mkdocs-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.github/workflows/mkdocs-deployment.yml -------------------------------------------------------------------------------- /.github/workflows/package-installation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.github/workflows/package-installation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/README.md -------------------------------------------------------------------------------- /doccano_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/__init__.py -------------------------------------------------------------------------------- /doccano_client/beta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/README.md -------------------------------------------------------------------------------- /doccano_client/beta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/__init__.py -------------------------------------------------------------------------------- /doccano_client/beta/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/client.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/__init__.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/annotation.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/category.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/category_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/category_type.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/comment.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/example.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/label.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/member.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/project.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/relation.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/relation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/relation_type.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/span.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/span.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/span_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/span_type.py -------------------------------------------------------------------------------- /doccano_client/beta/controllers/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/controllers/text.py -------------------------------------------------------------------------------- /doccano_client/beta/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/__init__.py -------------------------------------------------------------------------------- /doccano_client/beta/models/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/annotations.py -------------------------------------------------------------------------------- /doccano_client/beta/models/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/category.py -------------------------------------------------------------------------------- /doccano_client/beta/models/category_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/category_type.py -------------------------------------------------------------------------------- /doccano_client/beta/models/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/comments.py -------------------------------------------------------------------------------- /doccano_client/beta/models/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/examples.py -------------------------------------------------------------------------------- /doccano_client/beta/models/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/labels.py -------------------------------------------------------------------------------- /doccano_client/beta/models/members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/members.py -------------------------------------------------------------------------------- /doccano_client/beta/models/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/projects.py -------------------------------------------------------------------------------- /doccano_client/beta/models/relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/relation.py -------------------------------------------------------------------------------- /doccano_client/beta/models/relation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/relation_type.py -------------------------------------------------------------------------------- /doccano_client/beta/models/span.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/span.py -------------------------------------------------------------------------------- /doccano_client/beta/models/span_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/span_type.py -------------------------------------------------------------------------------- /doccano_client/beta/models/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/models/text.py -------------------------------------------------------------------------------- /doccano_client/beta/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doccano_client/beta/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doccano_client/beta/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/conftest.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/__init__.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/annotations.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/bad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/bad.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/categories.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/category_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/category_types.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/comments.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/examples.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/labels.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/members.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/projects.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/relation_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/relation_types.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/relations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/relations.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/span_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/span_types.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/spans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/spans.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/mock_api_responses/texts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/mock_api_responses/texts.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_annotation.py.unused.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_annotation.py.unused.bak -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_category.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_category_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_category_type.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_comment.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_example.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_label.py.unused.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_label.py.unused.bak -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_member.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_project.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_relation.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_relation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_relation_type.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_span.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_span.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_span_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_span_type.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/controllers/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/controllers/test_text.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/test_client.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/test_full_integration_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/test_full_integration_tests.py -------------------------------------------------------------------------------- /doccano_client/beta/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doccano_client/beta/tests/utils/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/tests/utils/test_response.py -------------------------------------------------------------------------------- /doccano_client/beta/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doccano_client/beta/utils/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/beta/utils/response.py -------------------------------------------------------------------------------- /doccano_client/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doccano_client/cli/active_learning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doccano_client/cli/active_learning/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/cli/active_learning/languages.py -------------------------------------------------------------------------------- /doccano_client/cli/active_learning/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/cli/active_learning/manager.py -------------------------------------------------------------------------------- /doccano_client/cli/active_learning/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/cli/active_learning/models.py -------------------------------------------------------------------------------- /doccano_client/cli/active_learning/preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/cli/active_learning/preparation.py -------------------------------------------------------------------------------- /doccano_client/cli/active_learning/strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/cli/active_learning/strategies.py -------------------------------------------------------------------------------- /doccano_client/cli/active_learning/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/cli/active_learning/trainer.py -------------------------------------------------------------------------------- /doccano_client/cli/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/cli/commands.py -------------------------------------------------------------------------------- /doccano_client/cli/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/cli/entity.py -------------------------------------------------------------------------------- /doccano_client/cli/estimators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/cli/estimators.py -------------------------------------------------------------------------------- /doccano_client/cli/usecases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/cli/usecases.py -------------------------------------------------------------------------------- /doccano_client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/client.py -------------------------------------------------------------------------------- /doccano_client/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/exceptions.py -------------------------------------------------------------------------------- /doccano_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doccano_client/models/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/comment.py -------------------------------------------------------------------------------- /doccano_client/models/data_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/data_download.py -------------------------------------------------------------------------------- /doccano_client/models/data_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/data_upload.py -------------------------------------------------------------------------------- /doccano_client/models/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/example.py -------------------------------------------------------------------------------- /doccano_client/models/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/label.py -------------------------------------------------------------------------------- /doccano_client/models/label_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/label_type.py -------------------------------------------------------------------------------- /doccano_client/models/member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/member.py -------------------------------------------------------------------------------- /doccano_client/models/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/metrics.py -------------------------------------------------------------------------------- /doccano_client/models/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/project.py -------------------------------------------------------------------------------- /doccano_client/models/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/role.py -------------------------------------------------------------------------------- /doccano_client/models/task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/task_status.py -------------------------------------------------------------------------------- /doccano_client/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/user.py -------------------------------------------------------------------------------- /doccano_client/models/user_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/models/user_details.py -------------------------------------------------------------------------------- /doccano_client/repositories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doccano_client/repositories/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/base.py -------------------------------------------------------------------------------- /doccano_client/repositories/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/comment.py -------------------------------------------------------------------------------- /doccano_client/repositories/data_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/data_download.py -------------------------------------------------------------------------------- /doccano_client/repositories/data_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/data_upload.py -------------------------------------------------------------------------------- /doccano_client/repositories/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/example.py -------------------------------------------------------------------------------- /doccano_client/repositories/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/label.py -------------------------------------------------------------------------------- /doccano_client/repositories/label_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/label_type.py -------------------------------------------------------------------------------- /doccano_client/repositories/member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/member.py -------------------------------------------------------------------------------- /doccano_client/repositories/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/metrics.py -------------------------------------------------------------------------------- /doccano_client/repositories/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/project.py -------------------------------------------------------------------------------- /doccano_client/repositories/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/role.py -------------------------------------------------------------------------------- /doccano_client/repositories/task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/task_status.py -------------------------------------------------------------------------------- /doccano_client/repositories/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/user.py -------------------------------------------------------------------------------- /doccano_client/repositories/user_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/repositories/user_details.py -------------------------------------------------------------------------------- /doccano_client/services/label_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/services/label_type.py -------------------------------------------------------------------------------- /doccano_client/usecase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doccano_client/usecase/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/usecase/comment.py -------------------------------------------------------------------------------- /doccano_client/usecase/data_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/usecase/data_download.py -------------------------------------------------------------------------------- /doccano_client/usecase/data_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/usecase/data_upload.py -------------------------------------------------------------------------------- /doccano_client/usecase/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/usecase/example.py -------------------------------------------------------------------------------- /doccano_client/usecase/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/usecase/label.py -------------------------------------------------------------------------------- /doccano_client/usecase/label_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/usecase/label_type.py -------------------------------------------------------------------------------- /doccano_client/usecase/member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/usecase/member.py -------------------------------------------------------------------------------- /doccano_client/usecase/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/usecase/project.py -------------------------------------------------------------------------------- /doccano_client/usecase/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/usecase/role.py -------------------------------------------------------------------------------- /doccano_client/usecase/user_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/doccano_client/usecase/user_details.py -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/docs/usage.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/data/classification.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/data/classification.jsonl -------------------------------------------------------------------------------- /tests/integration/data/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/data/labels.json -------------------------------------------------------------------------------- /tests/integration/repositories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/comment/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/comment/create.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/comment/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/comment/delete.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/comment/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/comment/login.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/comment/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/comment/update.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/data_download/download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/data_download/download.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/data_download/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/data_download/login.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/data_download/options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/data_download/options.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/data_download/schedule_download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/data_download/schedule_download.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/data_upload/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/data_upload/delete.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/data_upload/ingest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/data_upload/ingest.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/data_upload/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/data_upload/login.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/data_upload/options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/data_upload/options.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/data_upload/upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/data_upload/upload.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/example/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/example/create.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/example/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/example/delete.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/example/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/example/login.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/example/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/example/update.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/label/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/label/create.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/label/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/label/delete.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/label/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/label/login.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/label/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/label/update.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/label_type/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/label_type/create.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/label_type/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/label_type/delete.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/label_type/list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/label_type/list.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/label_type/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/label_type/login.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/label_type/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/label_type/update.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/label_type/upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/label_type/upload.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/member/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/member/create.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/member/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/member/login.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/member/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/member/update.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/metrics/category_distribution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/metrics/category_distribution.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/metrics/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/metrics/login.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/metrics/member_progress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/metrics/member_progress.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/metrics/progress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/metrics/progress.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/role/list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/role/list.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/role/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/role/login.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/task_status/list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/task_status/list.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/task_status/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/task_status/login.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/user/get_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/user/get_profile.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/user/list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/user/list.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/fixtures/user/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/fixtures/user/login.yaml -------------------------------------------------------------------------------- /tests/integration/repositories/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_comment.py -------------------------------------------------------------------------------- /tests/integration/repositories/test_data_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_data_download.py -------------------------------------------------------------------------------- /tests/integration/repositories/test_data_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_data_upload.py -------------------------------------------------------------------------------- /tests/integration/repositories/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_example.py -------------------------------------------------------------------------------- /tests/integration/repositories/test_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_label.py -------------------------------------------------------------------------------- /tests/integration/repositories/test_label_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_label_types.py -------------------------------------------------------------------------------- /tests/integration/repositories/test_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_member.py -------------------------------------------------------------------------------- /tests/integration/repositories/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_metrics.py -------------------------------------------------------------------------------- /tests/integration/repositories/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_project.py -------------------------------------------------------------------------------- /tests/integration/repositories/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_role.py -------------------------------------------------------------------------------- /tests/integration/repositories/test_task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_task_status.py -------------------------------------------------------------------------------- /tests/integration/repositories/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/repositories/test_user.py -------------------------------------------------------------------------------- /tests/integration/usecase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/comment/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/comment/create.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/comment/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/comment/delete.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/comment/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/comment/update.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/data_download/download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/data_download/download.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/data_upload/upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/data_upload/upload.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/example/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/example/create.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/example/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/example/delete.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/example/delete_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/example/delete_all.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/example/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/example/update.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/label/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/label/create.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/label/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/label/delete.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/label/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/label/update.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/label_type/create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/label_type/create.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/label_type/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/label_type/delete.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/label_type/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/label_type/update.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/label_type/upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/label_type/upload.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/login.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/member/add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/member/add.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/member/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/member/delete.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/member/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/member/update.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/project/delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/project/delete.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/project/find_by_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/project/find_by_id.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/project/list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/project/list.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/project/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/project/update.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/role/list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/role/list.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/user/find_by_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/user/find_by_name.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/user/get_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/user/get_profile.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/user/search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/user/search.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/user_details/change_password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/user_details/change_password.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/user_details/get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/user_details/get.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/user_details/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/user_details/login.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/fixtures/user_details/update_user_details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/fixtures/user_details/update_user_details.yaml -------------------------------------------------------------------------------- /tests/integration/usecase/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/test_comment.py -------------------------------------------------------------------------------- /tests/integration/usecase/test_data_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/test_data_download.py -------------------------------------------------------------------------------- /tests/integration/usecase/test_data_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/test_data_upload.py -------------------------------------------------------------------------------- /tests/integration/usecase/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/test_example.py -------------------------------------------------------------------------------- /tests/integration/usecase/test_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/test_label.py -------------------------------------------------------------------------------- /tests/integration/usecase/test_label_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/test_label_type.py -------------------------------------------------------------------------------- /tests/integration/usecase/test_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/test_member.py -------------------------------------------------------------------------------- /tests/integration/usecase/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/test_project.py -------------------------------------------------------------------------------- /tests/integration/usecase/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/test_role.py -------------------------------------------------------------------------------- /tests/integration/usecase/test_user_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/integration/usecase/test_user_details.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/models/test_user_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/models/test_user_details.py -------------------------------------------------------------------------------- /tests/unit/repositories/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/repositories/test_base.py -------------------------------------------------------------------------------- /tests/unit/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/services/test_label_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/services/test_label_type.py -------------------------------------------------------------------------------- /tests/unit/usecase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/usecase/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/usecase/test_comment.py -------------------------------------------------------------------------------- /tests/unit/usecase/test_data_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/usecase/test_data_download.py -------------------------------------------------------------------------------- /tests/unit/usecase/test_data_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/usecase/test_data_upload.py -------------------------------------------------------------------------------- /tests/unit/usecase/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/usecase/test_example.py -------------------------------------------------------------------------------- /tests/unit/usecase/test_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/usecase/test_label.py -------------------------------------------------------------------------------- /tests/unit/usecase/test_label_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/usecase/test_label_type.py -------------------------------------------------------------------------------- /tests/unit/usecase/test_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/usecase/test_member.py -------------------------------------------------------------------------------- /tests/unit/usecase/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/usecase/test_project.py -------------------------------------------------------------------------------- /tests/unit/usecase/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doccano/doccano-client/HEAD/tests/unit/usecase/test_role.py --------------------------------------------------------------------------------