On 16 dic, 17:39, "The Night Blogger" <[EMAIL PROTECTED]>
wrote:
> Is there a way to pull & push data (Tasks, Notes, Calendar Items ...) into
> Microsoft Oulook from Python ?

You will need the pywin32 package.
Then you get the Outlook Application object using:

import win32com.client
Outlook = win32com.client.Dispatch("Outlook.Application")

Now, you have to know the methods and properties of that object. Look
for the Outlook object model in MSDN. Usually it's easier with google:
http://www.google.com/search?q=outlook+application+site:msdn.microsoft.com

Googling with "outlook application python" will give you more help.

-- 
Gabriel Genellina

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to