首页 > 解决方案 > 从 .PST 文件中提取文本

问题描述

我正在尝试提取.pst文件的内容(作为字符串/文本)。

我尝试了不同的答案,但没有找到任何相关的解决方案。

Python 中的 Outlook PST 文件解析

从 win32 或 pypff 读取 PST 文件

使用 pypff / libpff 导出 PST 和 OST

我主要关注库libpff ( https://github.com/libyal/libpff ),但我认为该库对提取 pst 的文本没有帮助。

我的代码:

import pypff
pst = pypff.file()
pst.open("my_pst_file.pst")

该代码打开 pst,但我看不到如何将其内容提取为 txt。

标签: pythonpst

解决方案


是的,您可以使用它pypff来提取文本。我也关注了这个链接(使用 pypff / libpff 导出 PST 和 OST)。

pypff.file()可能会令人困惑,因为开发人员没有为指令提供每个函数和属性的体面文档。我花了一段时间自己探索它。

这是我最近做的。

# path to your pst file
opst = pypff.open(path)
root = opst.get_root_folder()

# 3 subfolders, for me, only 2nd one has content
# Use 'root.get_number_of_sub_folders()' to see which folder is blank
folder = root.get_sub_folder(1)
# 2 subfolders, the 2nd one is my inbox
inbox = folder.get_sub_folder(1)

# mail count in current folder
count = inbox.get_number_of_sub_items()

# Example of extracting info from one email
msg = inbox.get_sub_item(0)

subject = msg.subject
content = msg.plain_text_body.decode()
sender = msg.sender_name
header = msg.transport_headers
sent_time = msg.delivery_time

if msg.number_of_attachments > 0:
    # read from attachment 1
    size = attachment = msg.get_attachment(0).get_size()
    attachment_content = (msg.get_attachment(0).read_buffer(attach_size)).decode('ascii', errors='ignore')

对于那些想使用的人pypff,不要使用 pip install。它仅从版本 20161119 构建,这对我来说崩溃了很多。

从他们网站上的较新版本构建。有一个setup.py,它应该很容易构建。

对于附件,ascii解码器并不理想。我试过python3中的所有98个解码器,没有一个可以解码每个字节。这意味着,单一方法无法全部解码。就我而言,utf_16可以提取内容,这对我来说已经足够了。


推荐阅读