Is it possible to run a .html or .exe for example, that is inside a zipfile? I'm using the Zipfile module.
Here's my sample code:
import zipfile
z = zipfile.ZipFile("c:\\test\\test.zip", "r")
x = ""
g = ""
for filename in z.namelist():
#print filename
y = len(filename)
x = str(filename)[y - 5:]
if x == ".html":
g = filename
f = z.open(g)
After f = z.open(g)
, I don't know what to do next. I tried using the .read()
but it only reads whats inside of the html, what I need is for it to run or execute.
Or is there any othere similar ways to do this?
Run the first
.html
file in a zip archive specified at the command line:Example
As an alternative to
webbrowser
you could useos.startfile(os.path.normpath(filename))
on Windows.