Basics of running Python scripts from bash shell

Download a nice free open software called ATOM, create a file called text.py from __future__ import absolute_import, division, print_function print ('hello') Navigate to the directory that you just created and try to python script: [delanajero@DELAN Documents]$ python text.py hello If you want to run just the script without typing python before the file perform the … Continue reading Basics of running Python scripts from bash shell

Connecting to a Cisco device with Netmiko

UPDATE: If you are installing netmiko on ubuntu, I would recommend to install pip first then install netmiko. $sudo apt install python-pip Then once this is done, you can execute: pip install netmiko Now lets continue with exploring Netmiko. I don't intend to write long blogs and will try to keep each one as short … Continue reading Connecting to a Cisco device with Netmiko