最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

outlook - How to Extract Emails from .pst Files Using Python? - Stack Overflow

programmeradmin2浏览0评论

I have .pst file of outlook emails from which i want to extract the emails. what approach should I follow to extract the emails from this. i'm writing python code for it.

data extraction from .pst file without using third party library. is it possible or not?

I have .pst file of outlook emails from which i want to extract the emails. what approach should I follow to extract the emails from this. i'm writing python code for it.

data extraction from .pst file without using third party library. is it possible or not?

Share Improve this question asked Feb 14 at 15:37 Sushant Singh NegiSushant Singh Negi 1
Add a comment  | 

1 Answer 1

Reset to default 0

If you don't want any third part libraries, then Outlook Object Model is your only choice - use Namespace.AddStore/AddStoreEX. Keep in mind that it does not return the newly added store, you'd need to get it from the Namespace.Stores collection. Once you have the Store object, you can recursively drill down the folder hierarchy (starting with Store.GetRootFolder()) to access folder messages.

发布评论

评论列表(0)

  1. 暂无评论