Search Results

0
votes

Set permissions on a compressed file in python

I had a similar problem to you, so here is the code spinet from my stuff, this I believe should help here. # extract all of the zip for file in zf.filelist: name = file.filename …
2
votes

How do I run “dot” as a command from Python?

Two suggestions Don't use PATH, instead use "which" to just find the executable instead You don't use ";" (semi-colon) to separate paths, but ":" (colon). Once you change thi …
1
vote

How do I know which contract failed with Python’s contract.py?

Without modifying his code, I don't think you can, but since this is python... If you look for where he raises the exception to the user, it I think is possible to push the info you're look …
0
votes

create an array from a txt file

First I'd point out that your first data point appears to be an index, and wonder if the data is therefore important or not, but whichever :-) def parse(line): mch = re.compile( …