Context
Public Functions
Description
# Psuedo-code
for plugin in plugins:
for instance in context:
plugin.process(instance)Examples
# Creating a context
#
# The context is normally created for you by a user interface or
# through convenience functions, but can be helpful to manually
# create for debugging purposes.
import pyblish.api as pyblish
context = pyblish.Context()Last updated