using python 3.11 with jupyter notebook, with several notebooks run simultaneously and they all read same csv to pandas file, and use it, none of these notebooks write or change that file. as these file very big and several notebooks use it simultaneously is it possible to only read the file in one notebook and that somehow other notebooks will be able to use without the need to read seperatly in each notebook?
so far each of those notebooks contain line like that:
df = pd.read_csv('/home/data/bigi.csv')
it seems like a big waste of computational sources, memory and time
pandas.read_csv()command among the several notebooks. That has the advantage it will work in pure Python, too, which you'll probably want to be moving to if speed is a concern.