Hi ThoughtfulGrasshopper59 !
You're right, we should probably add the convenient  allow_archived  function in  .get_task s ()  as well.
That said, for now this can be a workaround:
` from clearml import Task
print([task.name for task in Task.get_tasks(
project_name="TAO Toolkit ClearML Demo",
task_filter=dict(system_tags=['archived'])
)]) Specifically task_filter=dict(system_tags=['archived']) `  should be what you need.
 
				