Skip to content

Instantly share code, notes, and snippets.

View OfWolfAndMan's full-sized avatar

Anthony OfWolfAndMan

View GitHub Profile
@ktbyers
ktbyers / threading_csv.py
Created February 24, 2017 20:10
Netmiko Threading from a CSV file
import csv
import threading
from Queue import Queue
from getpass import getpass
from netmiko import ConnectHandler
from datetime import datetime
USER = 'pyclass'
PASSWORD = getpass()