From 064710562f1cfd5f09b4b3cf7842c1d356a8957a Mon Sep 17 00:00:00 2001 From: Kuldeep Date: Thu, 11 Dec 2025 16:55:23 +0530 Subject: [PATCH] fixing the documentation link --- shotgun_api3/shotgun.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/shotgun_api3/shotgun.py b/shotgun_api3/shotgun.py index 9d2d22f26..2d06823c8 100644 --- a/shotgun_api3/shotgun.py +++ b/shotgun_api3/shotgun.py @@ -1885,11 +1885,15 @@ def work_schedule_update( def export_page(self, page_id, format, layout_name=None): """ Export the specified page to the given format. + This method allows you to export a page to CSV. + Respective layout or page should be marked as API Exportable in the Flow Production Tracking UI. - For more information, see documentation_. - .. _documentation: https://help.autodesk.com/view/SGSUB/ENU/?guid=SG_Tutorials_tu_export_csv_html#enable-api-export-for-a-page + If ``layout_name`` is not passed in, the default layout name will be used. + + For more information, see `documentation `_ . + >>> sg.export_page(12345, "csv", layout_name="My Layout") "ID,Name,Status\\n1,Shot 001,ip\\n2, Shot 002,rev\\n" >>> sg.export_page(12345, "csv")