mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
12 lines
382 B
Python
12 lines
382 B
Python
import pyblish.api
|
|
|
|
|
|
class CollectContextDataPremiera(pyblish.api.ContextPlugin):
|
|
"""Collecting data from temp json sent from premiera context"""
|
|
|
|
label = "Collect Premiera Context"
|
|
order = pyblish.api.CollectorOrder + 0.1
|
|
|
|
def process(self, context):
|
|
data_path = context.data['rqst_json_data_path']
|
|
self.log.info("Context is: {}".format(data_path))
|