I am working on a project where I have to auto upload an image every time it is triggered.
However, the uploading takes too much time which affects the whole process after it inside my base python script.
Is there any way to call a new terminal window using my currently running python script which will open another python script that will take care of the uploading? They will work together simultaneously, but without affecting each other's process?
I've been seeing the thing subprocess, but can anyone give me an example script of it? Any help would be appreciated.