Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
Questions asking us to
recommend or find a tool, library or favorite off-site resource
are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead,
describe the problem
and what has been done so far to solve it.
Closed
8 years ago
.
–
–
pypff
is a python wrapper for the C library libpff that allows you to access email and the directory structure of Pst files within python.
Do a make of the library with the specified command to install the python bindings. Then you should be able to open up the python console and browse through Pst files.
import pypff
pst = pypff.file()
pst.open("MyPst.pst")
pst.close()
There are more examples on the libraries website. However, I found that there wasn't enough functionality in the library yet. For instance, you can read emails and the directories, but there isn't anything for attachments yet.
–
–