I essentially have two pythons scripts running on two local computers (one on each computer) that need to communicate when each of their jobs are done so the other script/computer can continue its job.
To be more specific I need to let one computer know when a file is done copying to the other so it can run a command on said file.
I know little to nothing about networks, but would the correct way to implement this a socket? If not what is?
Thank you!