Learn Python: Dissecting Netmiko - Part 2
This is the second post in this series. If you missed Part 1, you can find it here. Dissecting ConnectHandler Let’s continue our ConnectHandler investigation. When we look at the code, the first thing we if statement: 1 2 3 4 5 if kwargs["device_type"] not in platforms: raise ValueError( "Unsupported device_type: " "curre...