From: aimeixu on
Hi guys,
I really need help to figure out a way to get someone's calendar from
mail exchange server with python. I have no idea about how to make it
..Or could some nice guys give me some hint?Thank a lot .
From: Tim Golden on
On 15/07/2010 10:38, aimeixu wrote:
> Hi guys,
> I really need help to figure out a way to get someone's calendar from
> mail exchange server with python. I have no idea about how to make it
> .Or could some nice guys give me some hint?Thank a lot .

There's an IMAP-based recipe here:

http://sites.google.com/site/mattpoepping/gcalpython

and an IronPython one here:

http://exchange2ical.codeplex.com/

and an ADO one here:

http://www.codeproject.com/KB/dotnet/Dot_Net_2005.aspx

and a CDO one here (search for "Open another users calendar folder"):

http://www.cdolive.com/cdo5p2.htm

The last two aren't directly Python examples but are easily
translated via win32com.client.

TJG