0

I have an existing sqlite db file, on which I need to make some extensive calculations. Doing the calculations from the file is painfully slow, and as the file is not large (~10 MB), so there should be no problem to load it into memory.

Is there a way in Python to load the existing file into memory in order to speed up the calculations?

1 Answers1

-2

You could read all the tables into DataFrames with Pandas, though I'm surprised it's slow. sqlite has always been really fast for me.

SuperStew
  • 2,857
  • 2
  • 15
  • 27