Recent Posts

Python: Reading and Writing Files

2 minute read

Reading and Writing Files Python has several functions for creating, reading, updating, and deleting files.

Python: Network Automation with Netmiko

1 minute read

What is Netmiko? Netmiko is a multi-vendor library to simplify Paramiko SSH connections to network devices. Netmiko supports a wide range of devices. These devices fall into three categories, see supported platforms on Github.

Python: List

1 minute read

Lists Python knows a number of compound data types, used to group together other values. The most versatile is the list, which can be written as a list of comma-separated values (items) between square brackets. Lists might contain items of different types, but usually the items all have the same type.

Python: for loop

1 minute read

for loop in python Python’s for statement iterates over the items of any sequence (a list or a string), in the order that they appear in the sequence. For example:

Python: Network Automation with Paramiko

1 minute read

Paramiko Using telnet in a lab environment for practice or in a fully isolated private network is recommended, but in a production or public network, telnet is vulnerable to cyber attack.

Python: Network Automation with Telnetlib

3 minute read

What is Network Automation? Network automation is the process of automating the configuration, management and operations of a computer network. The tasks that are normally done by the network or system administrator can be automated using a number of tools and technologies such as Python and Ansible.