Jump to content

Elemente mit bestimmtem Fähnchen finden


---
 Share

Recommended Posts

Hallo allerseits...

Gibt es beim Skripting eine Möglichkeit alle Elemente in einem Projekt herauszufinden bzw. herauszufiltern, welchen ein bestimmtes Fähnchen (Fähnchenname) zugewiesen ist?

Vielen Dank im voraus für jede Antwort!

 

Link to comment
Share on other sites

import gom

getInspectionsByLabelName = lambda label_name: [insp for insp in gom.app.project.inspection if insp.label.name == label_name]

if __name__ == "__main__":
	inspections_with_label_template_results = getInspectionsByLabelName ("Results")
	print (inspections_with_label_template_results)

 

Link to comment
Share on other sites

 Share

×
×
  • Create New...