After you have created the action you can add it to any object as many times as you want.
#Create an action that will fade an object in, wait for 2 seconds, then fade it back out.
fadeInOut = vizact.sequence(vizact.fadeTo(1,time=1),vizact.waittime(2),vizact.fadeTo(0,time=1))
object.add(fadeInOut)