[An...] Posted May 4, 2022 Share Posted May 4, 2022 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 More sharing options...
[Th...] Posted May 5, 2022 Share Posted May 5, 2022 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 More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in