Two python programs are running locally in my local computer. One program fetch the "price" of share in real-time, and other program need this information asap. The data that I want to share is very small in size (just some numbers).
I tried using SQLite, as it is very fast but it do not support multithreading insert/write etc. What other way I can use to share this information?
Is there some way, I can create a local API or store share prices in "RAM" and access it from another program or something like that?