hi DizzyHippopotamus13
Yes you can generate a link to the experiments using this format.
However I would suggest you to use the SDK for more safety :task = Task.get_task(project_name=xxx, task_name=xxx)
url = task.get_output_log_web_page()
Or in one lineurl = Task.get_task(project_name=xxx, task_name=xxx).get_output_log_web_page()
Thanks, I dir()ed the task object, but I missed the get_output_log_web_page() probably.. this is better!