Currently I am trying to automate a process between to computers, and one thing that needs to happen is a file transfer. For whatever reason, this line can't properly output the command I need it to.
for path in filePaths :
os.system('scp Host@host.IP:' + path + ' /save/file/here')
Any and all help is appreciated!