Skills
create_skill
TagmeClientAdvanced.create_skill(name: str, organization_id: str | None = None, is_public: bool = False, ) → Skill
Create new skill with given name.
Parameters |
* * * |
Returns |
created skill. |
disable_skill
TagmeClientAdvanced.disable_skill(skill_id: str, organization_id: str | None = None, ) → None
Disable skill.
Parameters |
* * |
enable_skill
TagmeClientAdvanced.enable_skill(skill_id: str, organization_id: str | None = None, ) → None
Enable skill.
Parameters |
* * |
get_markers_skills_list
TagmeClientAdvanced.get_markers_skills_list(query: str | None = None, size: int | None = None, page: int | None = None, organization_id: str | None = None, with_info: bool | None = None, ) → List[MarkerSkill]
Get list of markers’ skills and their values.
Parameters |
* * |
Returns |
markers with their skills and skills’ values. |
get_public_skills_list
TagmeClientAdvanced.get_public_skills_list(query: str | None = None, size: int | None = None, page: int | None = None, ) → List[PublicSkill]
Get list of markers’ skills and their values.
Parameters |
* * * |
Returns |
markers with their skills and skills’ values. |
get_skill
TagmeClientAdvanced.get_skill(skill_id: str, organization_id: str | None = None, ) → Skill
Get information about skill by skill id.
Parameters |
* * |
Returns |
information about skill. |
get_skills_list
TagmeClientAdvanced.get_skills_list(query: str | None = None, with_markers_count: bool | None = None, organization_id: str | None = None, size: int | None = None, page: int | None = None, ) → List[Skill]
Get all available skills.
Parameters |
* * * * * |
Returns |
list of skills. |
rename_skill
TagmeClientAdvanced.rename_skill(skill_name: str, target_name: str, organization_id: str | None = None, ) → Skill
Find skill by name and rename it. Only first found skill will be updated.
Parameters |
* * * |
Returns |
information about updated skill. |
set_marker_skill
TagmeClientAdvanced.set_marker_skill(marker_id: str, skill_id: str, value: int, organization_id: str | None = None, ) → SetMarkerSkillResponse
Add skill and its value to marker.
Parameters |
* * * * |
Returns |
object which contains person_id, skill_id and skill value. |
set_markers_skills
TagmeClientAdvanced.set_markers_skills(table_path: Path | str, organization_id: str | None = None, ) → SetMarkersSkillsResponse
Add skills to markers from table with columns ‘person’, ‘skill’, ‘value’.
Parameters | table_path – path to table with markers skill data to import. |
---|---|
Returns |
object which contains information about successfull updates and errors. |
set_markers_skills_json
TagmeClientAdvanced.set_markers_skills_json(json_data: List[Dict[str, Any]], organization_id: str | None = None, ) → SetMarkersSkillsResponse
Add skills to markers via list with objects inside.
Parameters | json_data – list of dicts with fields ‘person’, ‘skill’, ‘value’. |
---|---|
Returns |
object which contains information about successfull updates and errors. |
update_skill
TagmeClientAdvanced.update_skill(skill_id: str, name: str, window_size: int = 10, is_public: bool = False, organization_id: str | None = None, ) → Skill
Update information about skill.
Parameters |
* * * * * |
Returns |
information about updated skill. |