hi,Who can help me to write a py script?

hi
Trouble to help write a PostTask Script code.
I need it the output value of the current task rendered sequence of frames range.
For example, 0-100

thank you very much

Here you go:

[code]from Deadline.Scripting import *

def main( *args ):
deadlinePlugin = args[0]

startFrame = deadlinePlugin.GetStartFrame()
endFrame = deadlinePlugin.GetEndFrame()

deadlinePlugin.LogInfo( "%s-%s" % (startFrame, endFrame) )[/code]

Good example here:
docs.thinkboxsoftware.com/produc … ob-scripts

thank you very much