Files
clone_task_files
TagmeClientAdvanced.clone_task_files(src_task_id: str, dst_task_id: str, ignore_files_ids: Set[str], organization_id: str | None = None, dst_organization_id: str | None = None, tqdm_on: bool | str = False, ) → int
Clone task files from one task to another.
Parameters |
* * * * * |
Returns |
number of files cloned successfully. |
delete_file
TagmeClientAdvanced.delete_file(file_id: str, organization_id: str | None = None, ) → None
delete_items_from_task
TagmeClientAdvanced.delete_items_from_task(task_id: str, organization_id: str | None = None, ) → None
Delete all files from tasks. (warning) May not work. Hope it will be fixed soon.
Parameters |
* * |
delete_some_items_from_task
TagmeClientAdvanced.delete_some_items_from_task(task_id: str, files: List[str], organization_id: str | None = None, ) → None
Delete selected task files from task.
Parameters |
* * * |
disable_control_task
TagmeClientAdvanced.disable_control_task(task_id: str, file_uid: str, organization_id: str | None = None, ) → None
Disable control task.
Parameters |
* * * |
download_file
TagmeClientAdvanced.download_file(task_id: str, file_id: str, organization_id: str | None = None, ) → bytes
Download file by id.
Parameters |
* * * |
Returns |
file content. |
download_task_data
TagmeClientAdvanced.download_task_data(task_id: str, destination_dir: str | Path, organization_id: str | None = None, ) → int
Download all files from task.
Parameters |
* * * |
Returns |
number of files downloaded successfully. |
get_file
TagmeClientAdvanced.get_file(task_id: str, file_uid: str, organization_id: str | None = None, ) → TaskFile
Get information about task file.
Parameters |
* * * |
Returns |
information about task file. |
get_meta_data
TagmeClientAdvanced.get_meta_data(task_id: str, file_uid: str, types: List[MetaType] | None = None, organization_id: str | None = None, ) → MetaData
Get controls, premarkup and explanation for task file.
Parameters |
* * * * |
Returns |
object which contains controls, premarkup and explanation. |
get_task_files
TagmeClientAdvanced.get_task_files(task_id: str, query: str | None = None, types: List[FileType | str] | None = None, page: int | None = None, size: int | None = None, enabled: bool | None = True, organization_id: str | None = None, ) → List[TaskFile]
Get information about files in task.
Parameters |
* * * * * * * |
Returns |
list of task file objects. |
get_task_files_meta
TagmeClientAdvanced.get_task_files_meta(task_id: str, organization_id: str | None = None, ) → List[FileMetaData]
Get metadata for all files in task.
Parameters |
* * |
Returns |
list of task files metadata. |
remove_control
TagmeClientAdvanced.remove_control(task: TaskData, file_id: str, ) → None
Remove control item from task.
Parameters |
* * |
replace_file
TagmeClientAdvanced.replace_file(task_id: str, file_id: str, filepath: str | Path, organization_id: str | None = None, ) → UploadFilesResult
Replace file in task.
Parameters |
* * * * |
Returns |
object which contains uploaded files and errors. |
update_meta_data
TagmeClientAdvanced.update_meta_data(task_id: str, data: List[Dict] | List[UpdateMetaDataRequest], organization_id: str | None = None, ) → dict
Update information about controls, premarkup and explanation.
Parameters |
* * * |
Returns |
dict |
upload_files
TagmeClientAdvanced.upload_files(task_id: str, filepaths: Sequence[str | Path], batch_size: int = 16, organization_id: str | None = None, tqdm_on: bool | str = False, ) → UploadFilesResult
Upload files to task.
Parameters |
* * * * |
Returns |
object which contains uploaded files and errors. |
upload_folder
TagmeClientAdvanced.upload_folder(task: TaskData, folder: str | Path, organization_id: str | None = None, tqdm_on: bool | str = False, ) → UploadFilesResult
Upload all files from folder to task.
Parameters |
* * * |
Returns |
uploaded files and errors. |
upload_folder_to_task
TagmeClientAdvanced.upload_folder_to_task(task_id: str, folder: str | Path, exclude_ext_filter: Set[str] | None = None, organization_id: str | None = None, tqdm_on: bool | str = False, ) → UploadFilesResult
Upload all files from folder to task.
Parameters |
* * * * |
Returns |
object which contains uploaded files and errors. |
upload_folders_to_task
TagmeClientAdvanced.upload_folders_to_task(upload_data: List[Tuple[str, str | Path]], exclude_ext_filter: Set[str] | None = None, start: bool = False, organization_id: str | None = None, tqdm_on: bool | str = False, ) → Dict[str, None | bool | TaskData]
Upload many folders to many tasks.
Parameters |
* * * * |
Returns |
object which contains uploaded files and errors. * key: - task_id * value: None - if the folder for the task is empty TaskData - if the task was started True - if the task didn’t need to be started False - if the task was not started due to the problems with task constraints or an exception. |
upload_folders_to_task_and_start
TagmeClientAdvanced.upload_folders_to_task_and_start(upload_data: List[Tuple[str, str | Path]], exclude_ext_filter: Set[str] | None = None, organization_id: str | None = None, tqdm_on: bool | str = False, ) → Dict[str, None | bool | TaskData]
Upload many folders to many tasks and start them.
Parameters |
* * * |
Returns |
object which contains uploaded files and errors. * key: - task_id * value: None - if the folder for the task is empty TaskData - if the task was started True - if the task didn’t need to be started False - if the task was not started due to the problems with task constraints or an exception. |
upload_json_data
TagmeClientAdvanced.upload_json_data(task_id: str, json_data: Iterable[Any], base_path: str | Path | None = None, organization_id: str | None = None, tqdm_on: bool | str = False, ) → None
Upload data in json format to task. Each json object can contain fields:
-
‘file_path’: name of destination file (ends with .json).
-
‘file_id’: name of destination file
-
‘task’: dict which contains input data for task. Can also contain field ‘id’ for name of destination file.
-
‘upload_file’: file with input data for task.
-
‘premarkup’: premarkup for task.
-
‘control’: control for task.
-
‘hint’: explanation for task.
Parameters |
* * * * |
upload_methodics_file
TagmeClientAdvanced.upload_methodics_file(method_id: str, filepath: str | Path, file_type: MethodFileType, organization_id: str | None = None, ) → UploadFilesResult
Upload methodics file for method.
Parameters |
* * * * |
Returns |
uid and url of file. |
upload_table
TagmeClientAdvanced.upload_table(task_id: str, file: Path, delimeter: str | None = None, quotechar: str | None = None, escapechar: str | None = None, organization_id: str | None = None, ) → None
Upload task data table. See more information at https://tagme.sberdevices.ru/docs/customer/uploading-data.html
Parameters |
* * * * * * |
upload_tsv_data
TagmeClientAdvanced.upload_tsv_data(task_id: str, filepath: str | Path, organization_id: str | None = None, ) → None
Upload TSV data in toloka-format, INPUT:<input-fields> GOLDEN:<meta-fields> Read the doc: https://tagme.sberdevices.ru/docs/customer/uploading-data.html
Parameters |
* * * |