It works, thanks!
Hi everyone! I need to open IFC file from minio S3 storage like a bytes object Ifc file is stored in minio S3 storage. I can read it with minio module and i get file in "bytes type" (see below) ifcfile = minioClient.get_object('nabievtest', 'OPU.ifc') print(type(ifcfile.read())) <class 'bytes'=""></class> The file itself is correct, I check it with traditional way of open But I can't read it this way from storage: ifc_file = ifcopenshell.open(ifcfile.read()) TypeError: in method 'open', argument...