-
Notifications
You must be signed in to change notification settings - Fork 74
Development
Joachim Metz edited this page Oct 2, 2014
·
3 revisions
import pypff
pypff.get_version()
import pypff
pff_file = pypff.file()
pff_file.open("Archive.pst")
pff_file.close()
Note that the explicit call to close is not required.
import pypff
file_object = open("Archive.pst", "rb")
pff_file = pypff.file()
pff_file.open_file_object(file_object)
pff_file.close()
Note that the explicit call to close is not required.
import pypff
help(pypff)
help(pypff.file)