I created a python script, I want to run this script from my machine to multiple clients without installing it in the client. Is there any packages, or library available in python to do this?
1 Answer
You could try the following:-
ssh = paramiko.SSHClient()
ssh.connect(server, username=username, password=password)
ssh_stdin, ssh_stdout, ssh_stderr = ssh.exec_command(cmd_to_execute)
And you can go through this
pyinstaller.