Brief summary:
- I have two files: foo1.pyw and foo2.py
- I need to send large amounts of sensitive information to foo2.py from foo1.pyw, and then back again.
- Currently, I am doing this by writing to a .txt file, and then opening it with foo2.py using:
os.system('foo2.py [text file here] [other arguments passing information]')
The problem here is that the .txt file then leaves a trace when it is removed. I need to send information to foo2.py and back without having to write to a temp file. - The information will be formatted text, containing only ASCII characters, including letters, digits, symbols, returns, tabs, and spaces.
I can give more detail if needed.