I am starting to use python,more. Is there a good way to keep python disk access to a minimum.
Seems to me that everytime a *.py file runs, it hits a hard disk. Is there way to avoid hitting the harddisk, and keep *.py file in memory and access it there.
Would creating a small gui using Wxframe, keep code in memory, and reuse work or is it more pain vs benefit.
If you run a .py file from the harddisk, the harddisk will be accessed.
In your GUI, just
importyour code and it will be loaded once and you can access it later.