Projects
add_users_to_project
TagmeClientAdvanced.add_users_to_project(project_id: str, pool_id: str, organization_id: str | None = None, ) → None
Add pool of users to project.
Parameters |
* * * |
archive_project
TagmeClientAdvanced.archive_project(project_name: str, organization_id: str | None = None, ) → None
(deprecated) Archive all projects with given name. Use ‘archive_project_by_name’ instead.
Parameters |
* * |
archive_project_by_name
TagmeClientAdvanced.archive_project_by_name(project_name: str, organization_id: str | None = None, raise_when_not_found: bool = True, ) → None
Archive all projects with given name.
Parameters |
* * * |
archive_projects
TagmeClientAdvanced.archive_projects(uids: List[str], organization_id: str | None = None, ) → dict | None
Archive projects.
Parameters |
* * |
Returns |
empty dict. |
clone_project
TagmeClientAdvanced.clone_project(project_id: str, organization_id: str | None = None, dst_organization_id: str | None = None, name_suffix: str | None = None, ) → Tuple[List[Tuple[TaskData, TaskData]], Project]
Clone project with all its tasks and users.
Parameters |
* * * |
Returns |
list of pairs of old tasks and new tasks, new project. |
clone_project_with_data
TagmeClientAdvanced.clone_project_with_data(project_id: str, organization_id: str | None = None, dst_organization_id: str | None = None, clone_all_files: bool = False, ) → str
Clone project with all its tasks, pools and datasets.
Parameters |
* * * * |
Returns |
id of cloned project. |
create_project
TagmeClientAdvanced.create_project(name: str, description: str | None = None, organization_id: str | None = None, inner_comment: str | None = None, template_id: str | None = None, ) → Project
Create new project.
Parameters |
* * * * * |
Returns |
created project. |
create_project_bookmark
TagmeClientAdvanced.create_project_bookmark(project_id: str, organization_id: str | None = None, ) → None
Add project to bookmarks.
Parameters |
* * |
create_project_by_config
TagmeClientAdvanced.create_project_by_config(config: ProjectConfig, organization_id: str | None = None, ) → str
Create new project.
Parameters |
* * |
Returns |
created project id. |
delete_project_bookmark
TagmeClientAdvanced.delete_project_bookmark(project_id: str, organization_id: str | None = None, ) → None
Remove project from bookmarks.
Parameters |
* * |
delete_users_from_project
TagmeClientAdvanced.delete_users_from_project(project_id: str, pool_id: str, organization_id: str | None = None, ) → None
Delete pool of users from project.
Parameters |
* * * |
get_method
TagmeClientAdvanced.get_method(method_id: str, task_id: str | None = None, organization_id: str | None = None, ) → MethodData
Get methodic by id. It contains brief, interface, specification and config.
Parameters |
* * * |
Returns |
information about methodic. |
get_project
TagmeClientAdvanced.get_project(project_id: str, with_tasks_count: bool = False, organization_id: str | None = None, ) → Project
Get project by id.
Parameters |
* * * |
Returns |
project data. |
get_project_ids_by_status
TagmeClientAdvanced.get_project_ids_by_status(is_archived: bool, organization_id: str | None = None, ) → Set[str]
Get all archived or unarchived project ids.
Parameters |
* * |
Returns |
ids of projects with matched status. |
get_project_names_by_status
TagmeClientAdvanced.get_project_names_by_status(is_archived: bool, organization_id: str | None = None, ) → Set[str]
Get all archived or unarchived projects.
Parameters |
* * |
Returns |
names of projects with matched status. |
get_project_results
TagmeClientAdvanced.get_project_results(project_name: str, task_name: str, is_archived: bool | None = None, ) → List[TaskResult]
Get results for task matched by name.
Parameters |
* * * |
Returns |
list of task results. |
get_project_task
TagmeClientAdvanced.get_project_task(project_id: str, ignore_tasks: Tuple[str, …] = ('Обучение', 'Экзамен'), organization_id: str | None = None, ) → TaskData
(deprecated) Get first task for project. Use ‘get_project_tasks’ instead.
Parameters |
* * * |
Returns |
found task. |
get_project_tasks
TagmeClientAdvanced.get_project_tasks(project_id: str, ignore_tasks: Tuple[str, …] = ('Обучение', 'Экзамен'), organization_id: str | None = None, ) → List[TaskData]
Get tasks for project.
Parameters |
* * * |
Returns |
found tasks. |
get_projects
TagmeClientAdvanced.get_projects(with_tasks_count: bool = False, archived: bool | None = False, with_pipeline: bool | None = False, organization_id: str | None = None, query: str | None = None, page: int | None = None, size: int | None = None, is_bookmarked: bool | None = None, is_pipelined: bool | None = None, update_date_from: str | None = None, ) → List[Project]
Get organization projects.
Parameters |
* * * * * * * * * |
Returns |
list of projects matched. |
get_projects_advanced
TagmeClientAdvanced.get_projects_advanced(project_ids: Collection[str] | None = None, organization_id: str | None = None, with_method: bool = False, with_pipeline: bool | None = False, archived: bool | None = None, is_pipelined: bool | None = None, tqdm_on: bool | str = 'getting methods for projects', ) → List[Project]
Get organization projects.
Parameters |
* * * * * * * |
Returns |
list of projects. |
get_projects_by_name
TagmeClientAdvanced.get_projects_by_name(project_name: str, archived: bool = False, organization_id: str | None = None, with_tasks_count: bool = False, ) → List[Project]
Get projects by text query.
Parameters |
* * * * |
Returns |
list of projects matched. |
load_project_method
TagmeClientAdvanced.load_project_method(project: Project, ) → None
Load project methodic (it contains brief and interface).
Parameters | project – project to load method for. |
---|
restore_projects
TagmeClientAdvanced.restore_projects(uids: List[str], organization_id: str | None = None, ) → dict | None
Restore projects from archive.
Parameters |
* * |
Returns |
empty dict. |
update_method
TagmeClientAdvanced.update_method(method: MethodData | dict, organization_id: str | None = None, ) → MethodData
Update project methodic.
Parameters |
* * |
Returns |
information about updated methodic. |
update_project
TagmeClientAdvanced.update_project(project_id: str, name: str, organization_id: str, description: str | None = None, inner_comment: str | None = None, pipeline: SyncSettings | dict | None = None, is_pipeline_enabled: bool | None = None, ) → Project
Update project info.
Parameters |
* * * * * |
Returns |
updated project. |