answered 2016-09-21 01:27:10 -0500
The next free bus number can be found in this easy way:
def nextfreebus(ibus): """ Returns the first unused bus number, starting from ibus """ while psspy.busexs(ibus)==0: ibus += 1 return ibus