I am wanting to share multiple resources between multiple python scripts. Ideally what I am trying to do is run my main program. It contains some script wide variables. I then want to fork off the exact same program into a new shell and give it access to my script wide variables.
I am looking into multiprocessing but I am not sure if another way would be better such as using pipes?