api
Public API
Anything that isn't defined here is INTERNAL and unreliable for external use.
 BackdropBaseLoader 
  Bases: LoaderPlugin
Load nodes into a backdrop.
Source code in client/ayon_harmony/api/base_loaders.py
 | 9 10 11 12 13 14 15 16 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 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 |  | 
 load(context, name=None, namespace=None, data=None) 
 Plugin entry point.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| context ( | class: | required | |
| name | str | Container name. | None | 
| namespace | str | Container namespace. | None | 
| data | dict | Additional data passed into loader. | None | 
Source code in client/ayon_harmony/api/base_loaders.py
 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |  | 
 remove(container) 
 Remove container.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| container | dict | container definition. | required | 
Source code in client/ayon_harmony/api/base_loaders.py
 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |  | 
 switch(container, context) 
 Switch representation containers.
Source code in client/ayon_harmony/api/base_loaders.py
 | 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 |  | 
 update(container, context) 
 Update loaded containers.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| container | dict | Container data. | required | 
| context | dict | Representation context data. | required | 
Source code in client/ayon_harmony/api/base_loaders.py
 | 57 58 59 60 61 62 63 64 65 |  | 
 HarmonyHost 
  Bases: HostBase, IWorkfileHost, ILoadHost, IPublishHost
Source code in client/ayon_harmony/api/pipeline.py
 | 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 |  | 
 install() 
 Install Pype as host config.
Source code in client/ayon_harmony/api/pipeline.py
 | 52 53 54 55 56 57 58 59 60 61 |  | 
 application_launch(event) 
 Event that is executed after Harmony is launched.
Source code in client/ayon_harmony/api/pipeline.py
 | 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |  | 
 check_inventory() 
 Check is scene contains outdated containers.
If it does it will colorize outdated nodes and display warning message in Harmony.
Source code in client/ayon_harmony/api/pipeline.py
 | 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |  | 
 containerise(name, namespace, node, context, loader=None, suffix=None, nodes=None) 
 Imprint node with metadata.
Containerisation enables a tracking of version, author and origin for loaded product representations.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| name | str | Name of resulting assembly. | required | 
| namespace | str | Namespace under which to host container. | required | 
| node | str | Node to containerise. | required | 
| context | dict | Loaded representation full context information. | required | 
| loader | str | Name of loader used to produce this container. | None | 
| suffix | str | Suffix of container, defaults to  | None | 
Returns:
| Name | Type | Description | 
|---|---|---|
| container | str | Path of container assembly. | 
Source code in client/ayon_harmony/api/pipeline.py
 | 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 |  | 
 current_file() 
 Returning None to make Workfiles app look at first file extension.
Source code in client/ayon_harmony/api/workio.py
 | 71 72 73 |  | 
 delete_node(node) 
 Physically delete node from scene.
Source code in client/ayon_harmony/api/lib.py
 | 511 512 513 514 515 516 517 518 |  | 
 ensure_scene_settings() 
 Validate if Harmony scene has valid settings.
Source code in client/ayon_harmony/api/pipeline.py
 | 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |  | 
 export_backdrop_as_template(backdrop, filepath) 
 Export Backdrop as Template (.tpl) file.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| backdrop | list | Backdrop to export. | required | 
| filepath | str | Path where to save Template. | required | 
Source code in client/ayon_harmony/api/pipeline.py
 | 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |  | 
 find_backdrop_by_name(name) 
 Find backdrop by its name.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| name | str | Name of the backdrop. | required | 
Returns:
| Name | Type | Description | 
|---|---|---|
| dict | Optional[dict] | Backdrop. | 
Source code in client/ayon_harmony/api/lib.py
 | 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 |  | 
 find_node_by_name(name, node_type) 
 Find node by its name.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| name | str | Name of the Node. (without part before '/') | required | 
| node_type | str | Type of the Node. 'READ' - for loaded data with Loaders (background) 'GROUP' - for loaded data with Loaders (templates) 'WRITE' - render nodes | required | 
Returns:
| Name | Type | Description | 
|---|---|---|
| str | FQ Node name. | 
Source code in client/ayon_harmony/api/lib.py
 | 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 |  | 
 get_all_top_names() 
 Get all top node and backdrop names in the scene.
Returns:
| Name | Type | Description | 
|---|---|---|
| set | set | Set of top node names. | 
Source code in client/ayon_harmony/api/lib.py
 | 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 |  | 
 get_current_context_settings() 
 Get settings on current task from server.
Returns:
| Type | Description | 
|---|---|
| dict[str, Any]: Scene data. | 
Source code in client/ayon_harmony/api/pipeline.py
 | 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 |  | 
 get_palettes_paths() 
 Get all palettes paths in the scene.
Returns:
| Name | Type | Description | 
|---|---|---|
| set | set | Set of palettes paths. | 
Source code in client/ayon_harmony/api/lib.py
 | 538 539 540 541 542 543 544 545 546 |  | 
 imprint(node_id, data, remove=False) 
 Write data to the node as json.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| node_id | str | Path to node or id of object. | required | 
| data | dict | Dictionary of key/value pairs. | required | 
| remove | bool | Removes the data from the scene. | False | 
Example
from ayon_harmony.api import lib node = "Top/Display" data = {"str": "something", "int": 1, "float": 0.32, "bool": True} lib.imprint(layer, data)
Source code in client/ayon_harmony/api/lib.py
 | 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 |  | 
 inject_ayon_js() 
 Inject AyonHarmonyAPI.js into Harmony.
Source code in client/ayon_harmony/api/pipeline.py
 | 233 234 235 236 237 238 |  | 
 launch(application_path, *args) 
 Set Harmony for launch.
Launches Harmony and the server, then starts listening on the main thread for callbacks from the server. This is to have Qt applications run in the main thread.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| application_path | str | Path to Harmony. | required | 
Source code in client/ayon_harmony/api/lib.py
 | 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 |  | 
 ls() 
 Yields containers from Harmony scene.
Clean up scene data from orphaned containers.
Yields:
| Name | Type | Description | 
|---|---|---|
| dict | container | 
Source code in client/ayon_harmony/api/pipeline.py
 | 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 |  | 
 maintained_nodes_state(nodes) 
 Maintain nodes states during context.
Source code in client/ayon_harmony/api/lib.py
 | 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 |  | 
 read(node_id) 
 Read object metadata in to a dictionary.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| node_id | str | Path to node or id of object. | required | 
Returns:
| Type | Description | 
|---|---|
| dict | 
Source code in client/ayon_harmony/api/lib.py
 | 483 484 485 486 487 488 489 490 491 492 493 494 495 496 |  | 
 remove(node_id) 
 Remove node data from scene metadata.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| node_id | str | full name (eg. 'Top/renderAnimation') | required | 
Source code in client/ayon_harmony/api/lib.py
 | 499 500 501 502 503 504 505 506 507 508 |  | 
 rename_node(node_name, new_name) 
 Rename node name
Source code in client/ayon_harmony/api/lib.py
 | 730 731 732 733 734 735 736 737 |  | 
 save_scene(zip_and_move=True) 
 Save the Harmony scene safely.
The built-in (to AYON) background zip and moving of the Harmony scene folder, interferes with server/client communication by sending two requests at the same time. This only happens when sending "scene.saveAll()". This method prevents this double request and safely saves the scene.
Source code in client/ayon_harmony/api/lib.py
 | 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 |  | 
 save_scene_as(filepath) 
 Save Harmony scene as filepath.
Source code in client/ayon_harmony/api/lib.py
 | 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 |  | 
 select_nodes(nodes) 
 Selects nodes in Node View
Source code in client/ayon_harmony/api/lib.py
 | 581 582 583 584 585 586 587 588 |  | 
 send(request) 
 Public method for sending requests to Harmony.
Source code in client/ayon_harmony/api/lib.py
 | 576 577 578 |  | 
 set_scene_data(data) 
 Write scene data to metadata.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| data | dict | Data to write. | required | 
Source code in client/ayon_harmony/api/lib.py
 | 468 469 470 471 472 473 474 475 476 477 478 479 480 |  | 
 set_scene_settings(settings) 
 Set correct scene settings in Harmony.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| settings | dict | Scene settings. | required | 
Returns:
| Name | Type | Description | 
|---|---|---|
| dict | Dictionary of settings to set. | 
Source code in client/ayon_harmony/api/pipeline.py
 | 99 100 101 102 103 104 105 106 107 108 109 110 |  | 
 signature(postfix='func') 
 Return random ECMA6 compatible function name.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| postfix | str | name to append to random string. | 'func' | 
Returns: str: random function name.
Source code in client/ayon_harmony/api/lib.py
 | 64 65 66 67 68 69 70 71 72 73 |  | 
 unzip_scene_file(filepath) 
 Unzip a Harmony scene file and return the path to the .xstage file.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| filepath | str | Path to the zip file. | required | 
Returns:
| Name | Type | Description | 
|---|---|---|
| str | str | Path to the .xstage file. | 
Raises:
| Type | Description | 
|---|---|
| Exception | If no .xstage file is found or if the working folder cannot be deleted. | 
Source code in client/ayon_harmony/api/lib.py
 | 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 |  |