Skip to content

FormGroup and Form

Contained within this file are experimental interfaces for working with the Synapse Python Client. Unless otherwise noted these interfaces are subject to change at any time. Use at your own risk.

API Reference

synapseclient.models.FormGroup dataclass

Bases: FormGroup, FormGroupProtocol

Dataclass representing a FormGroup.

Source code in synapseclient/models/form.py
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
@dataclass
@async_to_sync
class FormGroup(FormGroupMixin, FormGroupProtocol):
    """Dataclass representing a FormGroup."""

    async def create_async(
        self,
        *,
        synapse_client: Optional["Synapse"] = None,
    ) -> "FormGroup":
        """
        Create a FormGroup with the provided name. This method is idempotent. If a group with the provided name already exists and the caller has ACCESS_TYPE.READ permission the existing FormGroup will be returned.

        Arguments:
            synapse_client: Optional Synapse client instance for authentication.

        Returns:
            A FormGroup object containing the details of the created group.

        Examples: create a form group

        ```python
        from synapseclient import Synapse
        from synapseclient.models import FormGroup
        import asyncio

        async def create_my_form_group():
            syn = Synapse()
            syn.login()

            form_group = FormGroup(name="my_unique_form_group_name")
            form_group = await form_group.create_async()
            print(form_group)

        asyncio.run(create_my_form_group())
        ```
        """
        if not self.name:
            raise ValueError("FormGroup 'name' must be provided to create a FormGroup.")

        from synapseclient.api.form_services import create_form_group

        response = await create_form_group(
            synapse_client=synapse_client,
            name=self.name,
        )
        return self.fill_from_dict(response)

Functions

create

create(*, synapse_client: Optional[Synapse] = None) -> FormGroup

Create a FormGroup with the provided name. This method is idempotent. If a group with the provided name already exists and the caller has ACCESS_TYPE.READ permission the existing FormGroup will be returned.

PARAMETER DESCRIPTION
synapse_client

Optional Synapse client instance for authentication.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
FormGroup

A FormGroup object containing the details of the created group.

Examples: create a form group

from synapseclient import Synapse
from synapseclient.models import FormGroup

syn = Synapse()
syn.login()

form_group = FormGroup(name="my_unique_form_group_name")
form_group = form_group.create()
print(form_group)
Source code in synapseclient/models/protocols/form_protocol.py
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
def create(
    self,
    *,
    synapse_client: Optional["Synapse"] = None,
) -> "FormGroup":
    """
    Create a FormGroup with the provided name. This method is idempotent. If a group with the provided name already exists and the caller has ACCESS_TYPE.READ permission the existing FormGroup will be returned.

    Arguments:
        synapse_client: Optional Synapse client instance for authentication.

    Returns:
        A FormGroup object containing the details of the created group.

    Examples: create a form group

    ```python
    from synapseclient import Synapse
    from synapseclient.models import FormGroup

    syn = Synapse()
    syn.login()

    form_group = FormGroup(name="my_unique_form_group_name")
    form_group = form_group.create()
    print(form_group)
    ```
    """
    return FormGroup()

synapseclient.models.FormData dataclass

Bases: FormData, FormDataProtocol

Dataclass representing a FormData.

Source code in synapseclient/models/form.py
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
@dataclass
@async_to_sync
class FormData(FormDataMixin, FormDataProtocol):
    """Dataclass representing a FormData."""

    def _validate_filter_by_state(
        self,
        filter_by_state: List["StateEnum"],
        as_reviewer: bool = False,
    ) -> None:
        """
        Validate filter_by_state values.

        Arguments:
            filter_by_state: List of StateEnum values to validate.
            as_reviewer: If True, uses the POST POST /form/data/list/reviewer endpoint to review submission. If False (default), use POST /form/data/list endpoint to list only FormData owned by the caller.
        """
        # Define valid states based on as_reviewer
        if as_reviewer:
            valid_states = {
                StateEnum.SUBMITTED_WAITING_FOR_REVIEW,
                StateEnum.ACCEPTED,
                StateEnum.REJECTED,
            }
        else:
            valid_states = {
                StateEnum.WAITING_FOR_SUBMISSION,
                StateEnum.SUBMITTED_WAITING_FOR_REVIEW,
                StateEnum.ACCEPTED,
                StateEnum.REJECTED,
            }

        # Check each state
        for state in filter_by_state:
            if not isinstance(state, StateEnum):
                valid_values = ", ".join(s.value for s in valid_states)
                raise ValueError(
                    f"Invalid state type. Expected StateEnum. Valid values are: {valid_values}"
                )

            if state not in valid_states:
                valid_values = ", ".join(s.value for s in valid_states)
                raise ValueError(
                    f"StateEnum.{state.value} is not allowed. Valid values are: {valid_values}"
                )

    async def create_async(
        self,
        *,
        synapse_client: Optional["Synapse"] = None,
    ) -> "FormData":
        """
        Create a new FormData object. The caller will own the resulting object and will have access to read, update, and delete the FormData object.

        Arguments:
            synapse_client: The Synapse client to use for the request.

        Returns:
            A FormData object containing the details of the created form data.

        Examples: create a form data

        ```python
        from synapseclient import Synapse
        from synapseclient.models import FormData, File
        import asyncio

        async def create_my_form_data():
            syn = Synapse()
            syn.login()

            file = await File(id="syn123", download_file=True).get_async()
            file_handle_id = file.file_handle.id

            form_data = FormData(
                group_id="123",
                name="my_form_data_name",
                data_file_handle_id=file_handle_id
            )
            form_data = await form_data.create_async()

            print(f"Created FormData: {form_data.form_data_id}")
            print(f"Name: {form_data.name}")
            print(f"Group ID: {form_data.group_id}")
            print(f"Created By: {form_data.created_by}")
            print(f"Created On: {form_data.created_on}")
            print(f"Data File Handle ID: {form_data.data_file_handle_id}")

            if form_data.submission_status:
                print(f"Submission State: {form_data.submission_status.state.value}")

        asyncio.run(create_my_form_data())
        ```

        """
        from synapseclient.api import create_form_data

        if not self.group_id or not self.name or not self.data_file_handle_id:
            raise ValueError(
                "Missing required fields: 'group_id', 'name', and 'data_file_handle_id' are required to create a FormData."
            )

        form_change_request = FormChangeRequest(
            name=self.name, file_handle_id=self.data_file_handle_id
        ).to_dict()
        response = await create_form_data(
            synapse_client=synapse_client,
            group_id=self.group_id,
            form_change_request=form_change_request,
        )
        return self.fill_from_dict(response)

    @skip_async_to_sync
    async def list_async(
        self,
        *,
        filter_by_state: List["StateEnum"],
        synapse_client: Optional["Synapse"] = None,
        as_reviewer: bool = False,
    ) -> AsyncGenerator["FormData", None]:
        """
        List FormData objects in a FormGroup.

        Arguments:
            filter_by_state: list of StateEnum to filter the results.
                When as_reviewer=False (default), valid values are:
                - StateEnum.WAITING_FOR_SUBMISSION
                - StateEnum.SUBMITTED_WAITING_FOR_REVIEW
                - StateEnum.ACCEPTED
                - StateEnum.REJECTED

                When as_reviewer=True, valid values are:
                - StateEnum.SUBMITTED_WAITING_FOR_REVIEW (default if None)
                - StateEnum.ACCEPTED
                - StateEnum.REJECTED
                Note: WAITING_FOR_SUBMISSION is NOT allowed when as_reviewer=True.
            synapse_client: The Synapse client to use for the request.

            as_reviewer: If True, uses the POST POST /form/data/list/reviewer endpoint to review submission. If False (default), use POST /form/data/list endpoint to list only FormData owned by the caller.

        Yields:
            FormData objects matching the request.

        Raises:
            ValueError: If group_id is not set or filter_by_state contains invalid values.

        Examples: List your own form data

        ```python
        from synapseclient import Synapse
        from synapseclient.models import FormData
        from synapseclient.models.mixins.form import StateEnum
        import asyncio

        async def list_my_form_data():
            syn = Synapse()
            syn.login()

            async for form_data in FormData(group_id="123").list_async(
                filter_by_state=[StateEnum.SUBMITTED_WAITING_FOR_REVIEW]
            ):
                status = form_data.submission_status
                print(f"Form name: {form_data.name}")
                print(f"State: {status.state.value}")
                print(f"Submitted on: {status.submitted_on}")

        asyncio.run(list_my_form_data())
        ```

        Examples: List all form data as a reviewer

        ```python
        from synapseclient import Synapse
        from synapseclient.models import FormData
        from synapseclient.models.mixins.form import StateEnum
        import asyncio

        async def list_for_review():
            syn = Synapse()
            syn.login()

            # List all submissions waiting for review (reviewer mode)
            async for form_data in FormData(group_id="123").list_async(
                as_reviewer=True,
                filter_by_state=[StateEnum.SUBMITTED_WAITING_FOR_REVIEW]
            ):
                status = form_data.submission_status
                print(f"Form name: {form_data.name}")
                print(f"State: {status.state.value}")
                print(f"Submitted on: {status.submitted_on}")

        asyncio.run(list_for_review())
        ```
        """
        from synapseclient.api import list_form_data

        if not self.group_id:
            raise ValueError("'group_id' must be provided to list FormData.")

        # Validate filter_by_state based on reviewer mode
        self._validate_filter_by_state(
            filter_by_state=filter_by_state,
            as_reviewer=as_reviewer,
        )

        gen = list_form_data(
            synapse_client=synapse_client,
            group_id=self.group_id,
            filter_by_state=filter_by_state,
            as_reviewer=as_reviewer,
        )
        async for item in gen:
            yield FormData().fill_from_dict(item)

    def list(
        self,
        *,
        filter_by_state: List["StateEnum"],
        synapse_client: Optional["Synapse"] = None,
        as_reviewer: bool = False,
    ) -> Generator["FormData", None, None]:
        """
        List FormData objects in a FormGroup.

        Arguments:
            filter_by_state: Optional list of StateEnum to filter the results.
                When as_reviewer=False (default), valid values are:
                - StateEnum.WAITING_FOR_SUBMISSION
                - StateEnum.SUBMITTED_WAITING_FOR_REVIEW
                - StateEnum.ACCEPTED
                - StateEnum.REJECTED

                When as_reviewer=True, valid values are:
                - StateEnum.SUBMITTED_WAITING_FOR_REVIEW (default if None)
                - StateEnum.ACCEPTED
                - StateEnum.REJECTED
                Note: WAITING_FOR_SUBMISSION is NOT allowed when as_reviewer=True.

            as_reviewer: If True, uses the reviewer endpoint (requires READ_PRIVATE_SUBMISSION
                permission). If False (default), lists only FormData owned by the caller.
            synapse_client: The Synapse client to use for the request.

        Yields:
            FormData objects matching the request.

        Raises:
            ValueError: If group_id is not set or filter_by_state contains invalid values.

        Examples: List your own form data

        ```python
        from synapseclient import Synapse
        from synapseclient.models import FormData
        from synapseclient.models.mixins.form import StateEnum

        syn = Synapse()
        syn.login()

        for form_data in FormData(group_id="123").list(
            filter_by_state=[StateEnum.SUBMITTED_WAITING_FOR_REVIEW]
        ):
            status = form_data.submission_status
            print(f"Form name: {form_data.name}")
            print(f"State: {status.state.value}")
            print(f"Submitted on: {status.submitted_on}")
        ```

        Examples: List all form data as a reviewer

        ```python
        from synapseclient import Synapse
        from synapseclient.models import FormData
        from synapseclient.models.mixins.form import StateEnum

        syn = Synapse()
        syn.login()

        # List all submissions waiting for review (reviewer mode)
        for form_data in FormData(group_id="123").list(
            as_reviewer=True,
            filter_by_state=[StateEnum.SUBMITTED_WAITING_FOR_REVIEW]
        ):
            status = form_data.submission_status
            print(f"Form name: {form_data.name}")
            print(f"State: {status.state.value}")
            print(f"Submitted on: {status.submitted_on}")
        ```
        """
        yield from wrap_async_generator_to_sync_generator(
            async_gen_func=self.list_async,
            synapse_client=synapse_client,
            filter_by_state=filter_by_state,
            as_reviewer=as_reviewer,
        )

    async def download_async(
        self,
        synapse_id: str,
        download_location: Optional[str] = None,
        *,
        synapse_client: Optional["Synapse"] = None,
    ) -> str:
        """
        Download the data file associated with this FormData object.

        Arguments:
            synapse_id: The Synapse ID of the entity that owns the file handle (e.g., "syn12345678").
            download_location: The directory where the file should be downloaded.
            synapse_client: The Synapse client to use for the request.

        Returns:
            The path to the downloaded file.

        Examples: Download form data file

        ```python
        import asyncio
        from synapseclient import Synapse
        from synapseclient.models import File, FormData

        async def download_form_data():
            syn = Synapse()
            syn.login()

            file = await File(id="syn123", download_file=True).get_async()
            file_handle_id = file.file_handle.id

            path = await FormData(data_file_handle_id=file_handle_id).download_async(synapse_id="syn123")

            print(f"Downloaded to: {path}")


        asyncio.run(download_form_data())
        ```
        """

        from synapseclient.core.download.download_functions import (
            download_by_file_handle,
            ensure_download_location_is_directory,
        )

        client = Synapse.get_client(synapse_client=synapse_client)

        if not self.data_file_handle_id:
            raise ValueError("data_file_handle_id must be set to download the file.")

        if download_location:
            download_dir = ensure_download_location_is_directory(
                download_location=download_location
            )
        else:
            download_dir = client.cache.get_cache_dir(
                file_handle_id=self.data_file_handle_id
            )

        filename = f"SYNAPSE_FORM_{self.data_file_handle_id}.csv"

        path = await download_by_file_handle(
            file_handle_id=self.data_file_handle_id,
            synapse_id=synapse_id,
            entity_type="FileEntity",
            destination=os.path.join(download_dir, filename),
            synapse_client=client,
        )
        return path

Functions

create

create(*, synapse_client: Optional[Synapse] = None) -> FormData

Create a new FormData object. The caller will own the resulting object and will have access to read, update, and delete the FormData object.

PARAMETER DESCRIPTION
synapse_client

The Synapse client to use for the request.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
FormData

A FormData object containing the details of the created form data.

Note

The name attribute must be set on the FormData instance before calling create().

Examples: create a form data

from synapseclient import Synapse
from synapseclient.models import FormData, File

syn = Synapse()
syn.login()

file = File(id="syn123", download_file=True).get()
file_handle_id = file.file_handle.id

form_data = FormData(
    group_id="123",
    name="my_form_data_name",
    data_file_handle_id=file_handle_id
)
form_data = form_data.create()

print(f"Created FormData: {form_data.form_data_id}")
print(f"Name: {form_data.name}")
print(f"Group ID: {form_data.group_id}")
print(f"Created By: {form_data.created_by}")
print(f"Created On: {form_data.created_on}")
print(f"Data File Handle ID: {form_data.data_file_handle_id}")

if form_data.submission_status:
    print(f"Submission State: {form_data.submission_status.state.value}")
Source code in synapseclient/models/protocols/form_protocol.py
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
def create(
    self,
    *,
    synapse_client: Optional["Synapse"] = None,
) -> "FormData":
    """
    Create a new FormData object. The caller will own the resulting object and will have access to read, update, and delete the FormData object.

    Arguments:
        synapse_client: The Synapse client to use for the request.

    Returns:
        A FormData object containing the details of the created form data.

    Note:
        The `name` attribute must be set on the FormData instance before calling `create()`.

    Examples: create a form data

    ```python
    from synapseclient import Synapse
    from synapseclient.models import FormData, File

    syn = Synapse()
    syn.login()

    file = File(id="syn123", download_file=True).get()
    file_handle_id = file.file_handle.id

    form_data = FormData(
        group_id="123",
        name="my_form_data_name",
        data_file_handle_id=file_handle_id
    )
    form_data = form_data.create()

    print(f"Created FormData: {form_data.form_data_id}")
    print(f"Name: {form_data.name}")
    print(f"Group ID: {form_data.group_id}")
    print(f"Created By: {form_data.created_by}")
    print(f"Created On: {form_data.created_on}")
    print(f"Data File Handle ID: {form_data.data_file_handle_id}")

    if form_data.submission_status:
        print(f"Submission State: {form_data.submission_status.state.value}")
    ```
    """
    return FormData()

list

list(*, filter_by_state: List[StateEnum], synapse_client: Optional[Synapse] = None, as_reviewer: bool = False) -> Generator[FormData, None, None]

List FormData objects in a FormGroup.

PARAMETER DESCRIPTION
filter_by_state

Optional list of StateEnum to filter the results. When as_reviewer=False (default), valid values are: - StateEnum.WAITING_FOR_SUBMISSION - StateEnum.SUBMITTED_WAITING_FOR_REVIEW - StateEnum.ACCEPTED - StateEnum.REJECTED

When as_reviewer=True, valid values are: - StateEnum.SUBMITTED_WAITING_FOR_REVIEW (default if None) - StateEnum.ACCEPTED - StateEnum.REJECTED Note: WAITING_FOR_SUBMISSION is NOT allowed when as_reviewer=True.

TYPE: List[StateEnum]

as_reviewer

If True, uses the reviewer endpoint (requires READ_PRIVATE_SUBMISSION permission). If False (default), lists only FormData owned by the caller.

TYPE: bool DEFAULT: False

synapse_client

The Synapse client to use for the request.

TYPE: Optional[Synapse] DEFAULT: None

YIELDS DESCRIPTION
FormData

FormData objects matching the request.

RAISES DESCRIPTION
ValueError

If group_id is not set or filter_by_state contains invalid values.

Examples: List your own form data

from synapseclient import Synapse
from synapseclient.models import FormData
from synapseclient.models.mixins.form import StateEnum

syn = Synapse()
syn.login()

for form_data in FormData(group_id="123").list(
    filter_by_state=[StateEnum.SUBMITTED_WAITING_FOR_REVIEW]
):
    status = form_data.submission_status
    print(f"Form name: {form_data.name}")
    print(f"State: {status.state.value}")
    print(f"Submitted on: {status.submitted_on}")

Examples: List all form data as a reviewer

from synapseclient import Synapse
from synapseclient.models import FormData
from synapseclient.models.mixins.form import StateEnum

syn = Synapse()
syn.login()

# List all submissions waiting for review (reviewer mode)
for form_data in FormData(group_id="123").list(
    as_reviewer=True,
    filter_by_state=[StateEnum.SUBMITTED_WAITING_FOR_REVIEW]
):
    status = form_data.submission_status
    print(f"Form name: {form_data.name}")
    print(f"State: {status.state.value}")
    print(f"Submitted on: {status.submitted_on}")
Source code in synapseclient/models/form.py
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
def list(
    self,
    *,
    filter_by_state: List["StateEnum"],
    synapse_client: Optional["Synapse"] = None,
    as_reviewer: bool = False,
) -> Generator["FormData", None, None]:
    """
    List FormData objects in a FormGroup.

    Arguments:
        filter_by_state: Optional list of StateEnum to filter the results.
            When as_reviewer=False (default), valid values are:
            - StateEnum.WAITING_FOR_SUBMISSION
            - StateEnum.SUBMITTED_WAITING_FOR_REVIEW
            - StateEnum.ACCEPTED
            - StateEnum.REJECTED

            When as_reviewer=True, valid values are:
            - StateEnum.SUBMITTED_WAITING_FOR_REVIEW (default if None)
            - StateEnum.ACCEPTED
            - StateEnum.REJECTED
            Note: WAITING_FOR_SUBMISSION is NOT allowed when as_reviewer=True.

        as_reviewer: If True, uses the reviewer endpoint (requires READ_PRIVATE_SUBMISSION
            permission). If False (default), lists only FormData owned by the caller.
        synapse_client: The Synapse client to use for the request.

    Yields:
        FormData objects matching the request.

    Raises:
        ValueError: If group_id is not set or filter_by_state contains invalid values.

    Examples: List your own form data

    ```python
    from synapseclient import Synapse
    from synapseclient.models import FormData
    from synapseclient.models.mixins.form import StateEnum

    syn = Synapse()
    syn.login()

    for form_data in FormData(group_id="123").list(
        filter_by_state=[StateEnum.SUBMITTED_WAITING_FOR_REVIEW]
    ):
        status = form_data.submission_status
        print(f"Form name: {form_data.name}")
        print(f"State: {status.state.value}")
        print(f"Submitted on: {status.submitted_on}")
    ```

    Examples: List all form data as a reviewer

    ```python
    from synapseclient import Synapse
    from synapseclient.models import FormData
    from synapseclient.models.mixins.form import StateEnum

    syn = Synapse()
    syn.login()

    # List all submissions waiting for review (reviewer mode)
    for form_data in FormData(group_id="123").list(
        as_reviewer=True,
        filter_by_state=[StateEnum.SUBMITTED_WAITING_FOR_REVIEW]
    ):
        status = form_data.submission_status
        print(f"Form name: {form_data.name}")
        print(f"State: {status.state.value}")
        print(f"Submitted on: {status.submitted_on}")
    ```
    """
    yield from wrap_async_generator_to_sync_generator(
        async_gen_func=self.list_async,
        synapse_client=synapse_client,
        filter_by_state=filter_by_state,
        as_reviewer=as_reviewer,
    )

download

download(synapse_id: str, download_location: Optional[str] = None, *, synapse_client: Optional[Synapse] = None) -> str

Download the data file associated with this FormData object.

PARAMETER DESCRIPTION
synapse_id

The Synapse ID of the entity that owns the file handle (e.g., "syn12345678").

TYPE: str

download_location

The directory where the file should be downloaded.

TYPE: Optional[str] DEFAULT: None

synapse_client

The Synapse client to use for the request.

TYPE: Optional[Synapse] DEFAULT: None

RETURNS DESCRIPTION
str

The path to the downloaded file.

Examples: Download form data file

from synapseclient import Synapse
from synapseclient.models import File, FormData

syn = Synapse()
syn.login()

file = File(id="syn123", download_file=True).get()
file_handle_id = file.file_handle.id

path = FormData(data_file_handle_id=file_handle_id).download(synapse_id="syn123")

print(f"Downloaded to: {path}")
Source code in synapseclient/models/protocols/form_protocol.py
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
def download(
    self,
    synapse_id: str,
    download_location: Optional[str] = None,
    *,
    synapse_client: Optional["Synapse"] = None,
) -> str:
    """
    Download the data file associated with this FormData object.

    Arguments:
        synapse_id: The Synapse ID of the entity that owns the file handle (e.g., "syn12345678").
        download_location: The directory where the file should be downloaded.
        synapse_client: The Synapse client to use for the request.

    Returns:
        The path to the downloaded file.

    Examples: Download form data file

    ```python
    from synapseclient import Synapse
    from synapseclient.models import File, FormData

    syn = Synapse()
    syn.login()

    file = File(id="syn123", download_file=True).get()
    file_handle_id = file.file_handle.id

    path = FormData(data_file_handle_id=file_handle_id).download(synapse_id="syn123")

    print(f"Downloaded to: {path}")
    ```
    """
    return str()