Query the bootstrap engine

Hay guys how will i go about querying the Boot strap engine i started new topic because cant find eni thing on this

So what i want two do is query the bootstrap engine of shotgun and if it isent there start it up from there

Hello – Can you give a little more information about what you’re trying to achieve or the context around it? Thanks!

Nvm i figured out how im gone check if the bootstrap engine of shotgun is running or not

I know you’ve found a solution, but for anyone else who comes across this thread, the way to check for an engine would be:

import sgtk
# This will return None if an engine is not running.
engine = sgtk.platform.current_engine()
if engine is not None:
    ...
1 Like