Hi!
In several cases, Notes is not registred as COM server.
Depending of installation.
@-salutations
--
MCi
--
http://mail.python.org/mailman/listinfo/python-list
Peter Dembinski <[EMAIL PROTECTED]> writes:
> "Sateesh" <[EMAIL PROTECTED]> writes:
>
>> Hi,
>> Is it possible to access Lotus notes using Python? Can anyone
>> provide me some pointers?
>
> jython + LN Java bindings may be usable
Yes. I do this all the time.
--
Dan Poirier -- Email: my last n
Lotus Domino Designer 6.5.1 Help (instaled by notesdesigner)
see section LotusScript/COM/OLE Classes & LotusScript Classes A-Z
--
http://mail.python.org/mailman/listinfo/python-list
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
<[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> try this
>
> import win32com.client
> session = win32com.client.Dispatch(
try this
import win32com.client
session = win32com.client.Dispatch('Lotus.NotesSession')
session.Initialize(r'')
db = session.GetDatabase('',r'.nsf')
view = db.GetView(r'')
doc = view.GetFirstDocument()
print doc.GetFirstItem('ii').Values
domino return string as unicod
try this
import win32com.client
session = win32com.client.Dispatch('Lotus.NotesSession')
session.Initialize(r'')
db = session.GetDatabase('',r'.nsf')
view = db.GetView(r'')
doc = view.GetFirstDocument()
print doc.GetFirstItem('ii').Values
domino return string as unicod
Sateesh wrote:
> Hi,
> Is it possible to access Lotus notes using Python? Can anyone provide me
> some pointers?
>
> Thanks
> Sateesh
>
>
NotesSQL is an ODBC driver for Notes.
Using NotesSQL and a python odbc connection you can use the standard
python db-api2 to access tables.
(Examples of o
Hi,
What I am trying to do is to retrieve data from Lotus Notes Domino server
and display the results in some specific format. I initially thought of
doing it using Java JDBC (specifically thru JdbcDomino.jar file), but was
not successful in getting the jar file (looks like IBM has removed the
supp
> >>The Great 'Sateesh' uttered these words on 5/23/2005 7:14 AM:
> >>>Is it possible to access Lotus notes using Python? Can anyone provide
me
> >>>some pointers?
This might help you get started once you've installed the win32 modules.
http://tinyurl.com/a9ocy
--
http://mail.python.org/mail
The Great 'Michael Ströder' uttered these words on 5/23/2005 2:43 PM:
> Kartic wrote:
>
>>The Great 'Sateesh' uttered these words on 5/23/2005 7:14 AM:
>>
>>
>>>Is it possible to access Lotus notes using Python? Can anyone provide me
>>>some pointers?
>>
>>Yes, you can... You need the win32all dis
Kartic wrote:
> The Great 'Sateesh' uttered these words on 5/23/2005 7:14 AM:
>
>> Is it possible to access Lotus notes using Python? Can anyone provide me
>> some pointers?
>
> Yes, you can... You need the win32all distribution installed and you can
> access Notes using the COM interface (win32c
"Sateesh" <[EMAIL PROTECTED]> writes:
> Hi,
> Is it possible to access Lotus notes using Python? Can anyone
> provide me some pointers?
jython + LN Java bindings may be usable
--
http://www.peter.dembinski.prv.pl
--
http://mail.python.org/mailman/listinfo/python-list
The Great 'Sateesh' uttered these words on 5/23/2005 7:14 AM:
> Hi,
> Is it possible to access Lotus notes using Python? Can anyone provide me
> some pointers?
>
> Thanks
> Sateesh
>
>
Yes, you can... You need the win32all distribution installed and you can
access Notes using the COM interface
On 5/23/05, Sateesh <[EMAIL PROTECTED]> wrote:
> Hi,
> Is it possible to access Lotus notes using Python? Can anyone provide me
> some pointers?
http://www.google.com/search?q=python+lotus+notes&btnI=Lucky
--
Cheers,
Simon B,
[EMAIL PROTECTED],
http://www.brunningonline.net/simon/blog/
--
http:
14 matches
Mail list logo