-
Notifications
You must be signed in to change notification settings - Fork 28
Development
Joachim Metz edited this page Aug 19, 2016
·
7 revisions
import pyvshadow
pyvshadow.get_version()
import pyvshadow
vshadow_volume = pyvshadow.volume()
vshadow_volume.open("image.raw")
vshadow_volume.close()
The explicit call to vshadow_volume.close() is not required.
import pyvshadow
file_object = open("image.raw", "rb")
vshadow_volume = pyvshadow.volume()
vshadow_volume.open_file_object(file_object)
vshadow_volume.close()
The explicit call to vshadow_volume.close() is not required.
import pyvshadow
help(pyvshadow)
help(pyvshadow.volume)