Skip to content

Instantly share code, notes, and snippets.

View perillo's full-sized avatar

Manlio Perillo perillo

  • Avellino, Italy
View GitHub Profile
@perillo
perillo / py_ssh.py
Last active August 22, 2016 16:59 — forked from webs86/py_ssh.py
import paramiko
BUF_SIZE = 8192
TIMEOUT = None
class SSHCommand:
def __init__(self, address, username, password):
print("Connecting to server on ip", str(address) + ".")