How to Solve NameError: name 'SSHClient' is not defined -- paramiko

Solution: Import the 'SSHClient' module

To Solve the error, add the following line to the top of your code.

from paramiko import SSHClient

 

For more information:
Python paramiko SSHClient