Script Collection
Lotus Notes
Manipulate Data in Lotus Notes | Manipulate Data in Lotus Notes |
|
|
|
|
I didn`t test this example. But it shows how to manipulate data in Lotus notes with Python/Pywin32: import win32com.client <pre> import win32com.client sess=win32com.client.Dispatch("Lotus.NotesSession") db=sess.GetDatabase("","log.nsf") print db.Title #>>>u'Notes Log' db.Title='Notes Log (Python)' print db.Title #>>> u'Notes Log (Python)' |
|
| Last Updated ( Thursday, 02 February 2006 ) |
| Next > |
|---|
Hint: For syntax highlighting and correct Python intendation place your code between html tags <pre> and </pre>.