I tried this code where it extract the bundled zip files from compiled qrc but it gives me error:
OSError: [Errno 22] Invalid argument: ':/files/file.zip'
Any help/suggestions?
import zipfile
import resources
zf = zipfile.ZipInfo(":/files/file.zip")
for file in zf.infolist():
zf.extract(file)
zipfile is a module that is not designed to be used with Qt directly, instead you must extract the bytes and use a BytesIO as an intermediary: