-
Notifications
You must be signed in to change notification settings - Fork 16
Development
Joachim Metz edited this page Sep 28, 2014
·
3 revisions
import pyexe
pyexe.get_version()
import pyexe
exe_file = pyexe.file()
exe_file.open("cmd.exe")
exe_file.close()
Note that the explicit call to close is not required.
import pyexe
file_object = open("cmd.exe", "rb")
exe_file = pyexe.file()
exe_file.open_file_object(file_object)
exe_file.close()
Note that the explicit call to close is not required.
import pyexe
help(pyexe)
help(pyexe.file)