I'm trying to use python to compute and experiment on some datas from some files.
The parsing and computation of those files can take up to 20 minutes and always lead to the exact same result. I want to experiment on that result.
Is there a way (programatically or with spyder) to only compute these datas once per python console and to keep them in memory so the script dont have to compute them again each time I run my code ?
Am I clear ? ^^'
you can use pickles. by using them you can store the modified and parsed data on disk and then load it when you need
1.4m articles
1.4m replys
5 comments
57.0k users