A Python library for SSH connections and remote command execution using Paramiko.
pip install sshconnection
from sshconnection.sshconnection import SshConnection
ssh = SshConnection(server='your_server', username='your_username', password='your_password')
result = ssh.run_cmd('ls -l')
print(result["output"])
from sshconnection.sshconnection import LocalFileReader
MY_FReader = LocalFileReader()
output, error = ssh.run_cmd('ls -l')
print(result["output"])
python -m build
pip install .
``