Skip to content

Instantly share code, notes, and snippets.

View Lyuu17's full-sized avatar
🙃
tired and sleepy

lucx ☆ Lyuu17

🙃
tired and sleepy
View GitHub Profile
@Lyuu17
Lyuu17 / ssh_client.py
Created September 8, 2016 11:50 — forked from ghawkgu/ssh_client.py
Python ssh client sample
#!/usr/bin/env python
import paramiko
hostname = 'localhost'
port = 22
username = 'foo'
password = 'xxxYYYxxx'
if __name__ == "__main__":