In Python, can I store an integer into RAM in a certain addressand access it from another Python script? It doesn't necessarily have to be an integer,just any kind of data I can interpret from another Python script.
Also, the script that does the storing doesn't have to be closed after writing. It will be running in the background.
I am willing to use shared memory.