I have a small trouble with file option - executable, after using extractall.
This is my part of code:
import zipfile
archive = zipfile.ZipFile(path_to_local_folder+file, 'r')
archive.extractall(path_to_local_folder)
os.remove(path_to_local_folder+file)
In my zip archive I have a file, which should have an option - executable. Of course I can add operation "make file as executable", but I think it's not a good idea.
P.S. I use Mac OS and Python 3.5