Skip to content

0.8.4

Compare
Choose a tag to compare
@mottosso mottosso released this 13 Feb 12:49
· 46 commits to master since this release

Added new callbacks.

from pyblish import api
import pyblish_lite

def on_published(context):
    print("Context was %s" % context)

def on_validated(context):
    print("Context was %s" % context)

api.register_callback("validated", on_on_validated)
api.register_callback("published", on_on_published)

pyblish_lite.show()