RootCauseunvalidated
continuous interaction between the two files — Whenever two programs need to run in parallel and interact with each other. Tension: If you try to run something like `python3 brute_forcer.py | lock1.bat`, I believe it would redirect all the output of the python script to the batch file at once after the python is done. Outcome: we need the subprocess module.
c1d8e74a-d3ec-45a1-a00d-3c03625e77bd
continuous interaction between the two files — Whenever two programs need to run in parallel and interact with each other. Tension: If you try to run something like python3 brute_forcer.py | lock1.bat, I believe it would redirect all the output of the python script to the batch file at once after the python is done. Outcome: we need the subprocess module.