I trying write .zip file, what i getting from HTTP
decode data from base 64:
dataFile = base64.b64decode(b64DataString)
make zipfile from bytes:
zf = zipfile.ZipFile(io.BytesIO(dataFile), "w")
trying to write my .zip file:
zf.write('C:\temp\file.zip')
and here, on "write('C:\temp\file.zip')" i allways get "OSError". What i am doing wrong?