I have had success with jython using the notes.jar classes, for example: import lotus.domino import java.io import java.net import java.lang import java.util
lotus.notes.NotesThread.sinitThread()
S = lotus.notes.Session.newInstance();
db=S.getDatabase("server/domain","domlog.nsf")
agent=db.getAgent("DeleteOldDocs")
for x in range(50):
print x
result=agent.runOnServer()
print "res %d" % result
--
http://mail.python.org/mailman/listinfo/python-list
