This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| # Jimmy Taylor | |
| # https://www.consentfactory.com/python-threading-queuing-netmiko/ | |
| # This method will spin up threads and process IP addresses in a queue | |
| # Importing Netmiko modules | |
| from netmiko import Netmiko | |
| from netmiko.ssh_exception import NetMikoAuthenticationException, NetMikoTimeoutException |