-
Notifications
You must be signed in to change notification settings - Fork 84
Development
Joachim Metz edited this page Oct 2, 2014
·
7 revisions
import pyewf
pyewf.get_version()
import pyewf
ewf_handle = pyewf.handle()
ewf_handle.open("image.E01")
ewf_handle.close()
Note that the explicit call to close is not required.
import pyewf
file_object = open("image.E01", "rb")
ewf_handle = pyewf.handle()
ewf_handle.open_file_object(file_object)
ewf_handle.close()
Note that the explicit call to close is not required.
import pyewf
help(pyewf)
help(pyewf.handle)