I need to extract a zip file in RAM with my python script. I have searched about Ramdisk in linux and I have some experiences in using Ramdisk. It's Ok for me but it has a big problem. Everyone who access my directories can see the unzipped file that I extracted them there (in Mounted Ramdisk), I need to access those unzipped files but it is necessary that only my python script can read and write file in RAM. Do you have a better way for my program? Or a solution for this problem? Thanks.
edit: It has to be possible to interact with extracted files like normal files in a directory. not just open and read them.