How i can get task obj by name with python lib aspose.tasks?

how i can get task object by name with python lib aspose.tasks? where i can find full docs to this lib with description of every method?

@kmon,

you can use iterate over project’s tasks using Project.enumerate_all_child_tasks() or Project.select_all_child_tasks() method and check task’s name.

you can find API Reference here: Aspose.Tasks for Python via .NET | Aspose.Tasks for Python via .NET API Reference

API Reference for Python is under constuction now and detailed description of some methods is not available yet. In this case you can find the documentation of the similar method in API Reference for Aspose.Tasks for .NET.

For example, for Project class you can refer to Project | Aspose.Tasks for .NET API Reference

1 Like

thank you a lot

1 Like