i have this code for copy data :
from subprocess import call, check_call
call(["robocopy",'\\\\127.0.0.1\\Backup', '\\\\127.0.0.2\\h\\SQL BACKUP\\a',"/S"])
How can I access the data inside the terminal ????
I need to have access to the values that run after executing the above code snippet