Access lotus notes using Python

Sateesh sateeshkavuri at yahoo.com
Tue May 24 04:56:56 EDT 2005


Hi,
Thanks very much for the input. Could you please tell me where I could get
the API reference for these COM classes to access Lotus Notes?

Thanks again
Sateesh
<jmgouzit at gmail.com> wrote in message
news:1116921752.615735.187040 at g47g2000cwa.googlegroups.com...
> try this
>
> import win32com.client
> session = win32com.client.Dispatch('Lotus.NotesSession')
> session.Initialize(r'pppppppp')
> db = session.GetDatabase('',r'dddddddd.nsf')
> view = db.GetView(r'vvvvvvvv')
> doc = view.GetFirstDocument()
> print doc.GetFirstItem('iiiiii').Values
>
> domino return string as unicode
>





More information about the Python-list mailing list