Statistics
export_org_stats
TagmeClientAdvanced.export_org_stats(from_date: Tuple[int, int, int] | str, to_date: Tuple[int, int, int] | str, types: List[ExportTypes | str] = None, file_format: ExportFormat = ExportFormat.CSV, organization_id: str | None = None, hourly: bool | None = None, ) → Tuple[List[TasksStatistic], List[MarkersStatistic]]
Export organization statistics to file.
Parameters |
* * * * * * |
Returns |
list of organization statistics items. |
export_project_stats
TagmeClientAdvanced.export_project_stats(project_id: str, from_date: Tuple[int, int, int] | str, to_date: Tuple[int, int, int] | str, types: List[ExportTypes | str] = None, file_format: ExportFormat = ExportFormat.CSV, organization_id: str | None = None, ) → Tuple[List[TasksStatistic], List[MarkersStatistic]]
Export project statistics to file.
Parameters |
* * * * * * |
Returns |
list of project statistics items. |
get_list_tasks_statistics
TagmeClientAdvanced.get_list_tasks_statistics(task_ids: List[str], update_date_from: str | None = None, organization_id: str | None = None, ) → List[TaskStatisticsItem]
Get statistics for selected tasks.
Parameters |
* * * |
Returns |
task statistics. |
get_marker_project_stats
TagmeClientAdvanced.get_marker_project_stats(project_id: str, from_date: Tuple[int, int, int] | str, to_date: Tuple[int, int, int] | str, types: Iterable[str] = ('markers',), stats_format: str = 'csv', organization_id: str | None = None, ) → AsyncGenerator[Tuple[str, TextIOWrapper], None]
Get statistics for marker in project.
Parameters |
* * * * * * |
Returns |
marker statistics. |
get_marker_stats
TagmeClientAdvanced.get_marker_stats(date_from: str, date_to: str, types: Iterable[str] = ('markers',), stats_format: str = 'csv', organization_id: str | None = None, ) → AsyncGenerator[Tuple[str, TextIOWrapper], None]
Get statistics for marker in organization.
Parameters |
* * * * * |
Returns |
marker statistics. |
get_markup_marker_statistics
TagmeClientAdvanced.get_markup_marker_statistics(page: int | None = None, size: int | None = None, query: str | None = None, start_date: date | None = None, end_date: date | None = None, sort_field: MarkupMarkerStatisticsSortField | None = None, sort_order: SortOrder | None = None, ) → MarkupMarkerStatistics
Get marker statistics.
Parameters |
* * * * * * * |
Returns |
marker statistics. |
get_project_stats
TagmeClientAdvanced.get_project_stats(project_id: str, organization_id: str | None = None, ) → ProjectStatistic
Get project statistics.
Parameters |
* * |
Returns |
project statistics. |
get_quality_stats
TagmeClientAdvanced.get_quality_stats(organization_id: str, output: StatsOutputType, task_ids: Tuple[str] | None = None, project_ids: Tuple[str] | None = None, ) → List[TaskQuality | List[ItemQuality]]
Get quality statistics for tasks.
Parameters |
* * * * |
Returns |
list of quality statistics items. If output is TASK, returns list of TaskQuality. If output is ITEM, returns list of ItemQuality. |
get_task_stats
TagmeClientAdvanced.get_task_stats(task_id: str, organization_id: str | None = None, ) → TaskStats
Get statistics for task.
Parameters |
* * |
Returns |
task statistics. |
get_task_stats_advanced
TagmeClientAdvanced.get_task_stats_advanced(task_id: str, organization_id: str | None = None, ) → TaskStatsAdvanced
Get estimation date and number of assignments in progress for task.
Parameters |
* * |
Returns |
task statistics. |