The following code should do the trick for you and limit the amount of typing that you need to do while making use of the standard jython library.
import os,glob,sys
directories=['/path/to/jars/','/different/path/to/more/jars/']
for directory in directories:
for jar in glob.glob(os.path.join(directory,'*.jar')):
sys.path.append(jar)
Better answer:
You can create a .pth file in the jython site-packages and include within it all of the full paths to the jars you want included on the path. Here is what I did to include poi jars(contents of .pth file):
/home/kris/jython2.5.3/poi-3.11/poi-3.11-20141221.jar
/home/kris/jython2.5.3/poi-3.11/poi-ooxml-3.11-20141221.jar
/home/kris/jython2.5.3/poi-3.11/poi-ooxml-schemas-3.11-20141221.jar
/home/kris/jython2.5.3/poi-3.11/ooxml-lib/xmlbeans-2.6.0.jar
After doing that I can then import without having to append to path:
from org.apache.poi.xssf.usermodel import XSSFWorkbook