prefect.artifacts
Interface for creating and reading artifacts.
Artifact
Bases: ArtifactCreate
An artifact is a piece of data that is created by a flow or task run. https://docs.prefect.io/latest/develop/artifacts
Parameters:
Name | Type | Description | Default |
---|---|---|---|
type
|
A string identifying the type of artifact. |
required | |
key
|
A user-provided string identifier. The key must only contain lowercase letters, numbers, and dashes. |
required | |
description
|
A user-specified description of the artifact. |
required | |
data
|
A JSON payload that allows for a result to be retrieved. |
required |
Source code in src/prefect/artifacts.py
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 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 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 |
|
create(client=None)
async
A method to create an artifact.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client
|
Optional['PrefectClient']
|
The PrefectClient |
None
|
Returns:
Type | Description |
---|---|
'ArtifactResponse'
|
|
Source code in src/prefect/artifacts.py
44 45 46 47 48 49 50 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 |
|
get(key=None, client=None)
async
classmethod
A method to get an artifact.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
str
|
The key of the artifact to get. |
None
|
client
|
PrefectClient
|
The PrefectClient |
None
|
Returns:
Type | Description |
---|---|
(Artifact, optional)
|
The artifact (if found). |
Source code in src/prefect/artifacts.py
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 |
|
get_or_create(key=None, description=None, data=None, client=None, **kwargs)
async
classmethod
A method to get or create an artifact.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
str
|
The key of the artifact to get or create. |
None
|
description
|
str
|
The description of the artifact to create. |
None
|
data
|
Union[Dict[str, Any], Any]
|
The data of the artifact to create. |
None
|
client
|
PrefectClient
|
The PrefectClient |
None
|
Returns:
Type | Description |
---|---|
Artifact
|
The artifact, either retrieved or created. |
Source code in src/prefect/artifacts.py
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 |
|
ImageArtifact
Bases: Artifact
An artifact that will display an image from a publicly accessible URL in the UI.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image_url
|
The URL of the image to display. |
required |
Source code in src/prefect/artifacts.py
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
|
format()
async
This method is used to format the artifact data so it can be properly sent to the API when the .create() method is called. It is async because the method is awaited in the parent class.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The image URL. |
Source code in src/prefect/artifacts.py
221 222 223 224 225 226 227 228 229 230 |
|
TableArtifact
Bases: Artifact
Source code in src/prefect/artifacts.py
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
|
create_image_artifact(image_url, key=None, description=None)
async
Create an image artifact.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image_url
|
str
|
The URL of the image to display. |
required |
key
|
Optional[str]
|
A user-provided string identifier. Required for the artifact to show in the Artifacts page in the UI. The key must only contain lowercase letters, numbers, and dashes. |
None
|
description
|
Optional[str]
|
A user-specified description of the artifact. |
None
|
Returns:
Type | Description |
---|---|
UUID
|
The image artifact ID. |
Source code in src/prefect/artifacts.py
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 |
|
create_link_artifact(link, link_text=None, key=None, description=None, client=None)
async
Create a link artifact.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
link
|
str
|
The link to create. |
required |
link_text
|
Optional[str]
|
The link text. |
None
|
key
|
Optional[str]
|
A user-provided string identifier. Required for the artifact to show in the Artifacts page in the UI. The key must only contain lowercase letters, numbers, and dashes. |
None
|
description
|
Optional[str]
|
A user-specified description of the artifact. |
None
|
Returns:
Type | Description |
---|---|
UUID
|
The table artifact ID. |
Source code in src/prefect/artifacts.py
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 |
|
create_markdown_artifact(markdown, key=None, description=None)
async
Create a markdown artifact.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
markdown
|
str
|
The markdown to create. |
required |
key
|
Optional[str]
|
A user-provided string identifier. Required for the artifact to show in the Artifacts page in the UI. The key must only contain lowercase letters, numbers, and dashes. |
None
|
description
|
Optional[str]
|
A user-specified description of the artifact. |
None
|
Returns:
Type | Description |
---|---|
UUID
|
The table artifact ID. |
Source code in src/prefect/artifacts.py
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 |
|
create_progress_artifact(progress, key=None, description=None)
async
Create a progress artifact.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
progress
|
float
|
The percentage of progress represented by a float between 0 and 100. |
required |
key
|
Optional[str]
|
A user-provided string identifier. Required for the artifact to show in the Artifacts page in the UI. The key must only contain lowercase letters, numbers, and dashes. |
None
|
description
|
Optional[str]
|
A user-specified description of the artifact. |
None
|
Returns:
Type | Description |
---|---|
UUID
|
The progress artifact ID. |
Source code in src/prefect/artifacts.py
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 |
|
create_table_artifact(table, key=None, description=None)
async
Create a table artifact.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
table
|
Union[Dict[str, List[Any]], List[Dict[str, Any]], List[List[Any]]]
|
The table to create. |
required |
key
|
Optional[str]
|
A user-provided string identifier. Required for the artifact to show in the Artifacts page in the UI. The key must only contain lowercase letters, numbers, and dashes. |
None
|
description
|
Optional[str]
|
A user-specified description of the artifact. |
None
|
Returns:
Type | Description |
---|---|
UUID
|
The table artifact ID. |
Source code in src/prefect/artifacts.py
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 |
|
update_progress_artifact(artifact_id, progress, description=None, client=None)
async
Update a progress artifact.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
artifact_id
|
UUID
|
The ID of the artifact to update. |
required |
progress
|
float
|
The percentage of progress represented by a float between 0 and 100. |
required |
description
|
Optional[str]
|
A user-specified description of the artifact. |
None
|
Returns:
Type | Description |
---|---|
UUID
|
The progress artifact ID. |
Source code in src/prefect/artifacts.py
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 |
|