import win32com.client
outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
inbox = outlook.GetDefaultFolder(6)
messages = inbox.Items
message = messages.GetFirst()
body_content = message.body
print body_content
I have an outlook email account. The inbox has a sub folder : calls I want to read email messages from this sub folder in python i am using win32com.client here is what i am doing. I can access inbox but not sub folder in that