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 | |
Functions¶
create
¶
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. |
| 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 | |
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 | |
Functions¶
create
¶
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. |
| 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 | |
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:
|
as_reviewer
|
If True, uses the reviewer endpoint (requires READ_PRIVATE_SUBMISSION permission). If False (default), lists only FormData owned by the caller.
TYPE:
|
synapse_client
|
The Synapse client to use for the request. |
| 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 | |
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:
|
download_location
|
The directory where the file should be downloaded. |
synapse_client
|
The Synapse client to use for the request. |
| 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 | |