Skip to main content

PyPI - Python Version PyPI Downloads GitHub contributors Ruff

Netmiko

Multi-vendor library to simplify CLI connections to network devices


Contributing to Netmiko

CONTRIBUTING.md


Why Netmiko?

Network automation to screen-scraping devices is primarily concerned with gathering output from show commands and with making configuration changes.

Netmiko aims to accomplish both of these operations and to do it across a very broad set of platforms. It seeks to do this while abstracting away low-level state control (i.e. eliminate low-level regex pattern matching to the extent practical).


Getting Started


Examples

You really should look here.


Supported Platforms

PLATFORMS


Installation

To install netmiko, simply use pip:

$ pip install netmiko

To install with Paramiko 4 compatibility:

$ pip install "netmiko[par4]"

To install the bulk-encryption CLI and its optional dependency:

$ pip install "netmiko[bulk-encrypt]"

API-Documentation

API-Documentation


Common Issues/FAQ

Answers to some common_questions


Tutorials


Getting Started:

Create a dictionary representing the device.

Supported device_types can be found in ssh_dispatcher.py, see CLASS_MAPPER keys.

from netmiko import ConnectHandler

cisco_881 = {
    "device_type": "cisco_ios",
    "host": "10.10.10.10",
    "username": "test",
    "password": "password",
    "port": 8022,  # optional, defaults to 22
    "secret": "secret",  # optional, defaults to ''
}

Establish an SSH connection to the device by passing in the device dictionary.

net_connect = ConnectHandler(**cisco_881)

Execute show commands.

output = net_connect.send_command("show ip int brief")
print(output)
Interface                  IP-Address      OK? Method Status                Protocol
FastEthernet0              unassigned      YES unset  down                  down
FastEthernet1              unassigned      YES unset  down                  down
FastEthernet2              unassigned      YES unset  down                  down
FastEthernet3              unassigned      YES unset  down                  down
FastEthernet4              10.10.10.10     YES manual up                    up
Vlan1                      unassigned      YES unset  down                  down

Execute configuration change commands (will automatically enter into config mode)

config_commands = ["logging buffered 20000", "logging buffered 20010", "no logging console"]
output = net_connect.send_config_set(config_commands)
print(output)
pynet-rtr1#config term
Enter configuration commands, one per line.  End with CNTL/Z.
pynet-rtr1(config)#logging buffered 20000
pynet-rtr1(config)#logging buffered 20010
pynet-rtr1(config)#no logging console
pynet-rtr1(config)#end
pynet-rtr1#

API-Documentation

API Documentation

Below are some of the particularly handy Classes/functions for easy reference:


Contributing

Contributors are welcome.

You can contribute to Netmiko in a variety of ways: answering questions on Slack (see below in Questions/Discussions), responding to issues, adding to the common issues, reporting/fixing bugs, or even adding your own device type.

Before contributing a new vendor/platform device type, remember that any code added needs to be supported in some fashion. To add a vendor/platform you can follow the outline here. Once you've worked on your first pass of your driver and have it functional, you'll need to include test data in order for it to be merged into develop, you can see the general flow of how to do that here.

For all code contributions, please ensure that you have ran ruff format against the code or your code will fail CI-CD checks.


Questions/Discussion

If you find an issue with Netmiko, then you can open an issue on this projects issue page here: https://github.com/ktbyers/netmiko/issues. Please make sure you've read through the common issues and examples prior to opening an issue. Please only open issues for bugs, feature requests, or other topics related to development of Netmiko. If you simply have a question, join us on Slack...

If you have questions or would like to discuss Netmiko, a #netmiko channel exists in this Slack workspace. To join, use this invitation. Once you have entered the workspace, then you can join the #netmiko channel.


Sponsors 2025

Special thanks to organizations and people that have helped support Netmiko development. In particular, these organizations have made meaningful contributions that help Netmiko keep moving forward:

Slurp'it Logo Netpicker Logo



Kirk Byers
Python for Network Engineers
https://pynet.twb-tech.com

Release files for netmiko 4.8.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for netmiko 4.8.0
File Size Uploaded
netmiko-4.8.0.tar.gz 2.4 MB Details

Built distribution (wheel)

Table of built distributions (wheels) for netmiko 4.8.0
File Interpreter ABI Platform
netmiko-4.8.0-py3-none-any.whl Python 3 none any Details

Total release size: 2.7 MB

Release files / netmiko-4.8.0.tar.gz

Download URL netmiko-4.8.0.tar.gz
Size 2.4 MB
Tags Source
SHA-256 checksum
How to use checksums
6264cf8afcbd9c10efb832bacabb9a89370452d522f6c20532d2ad0fefcbdd69
BLAKE2b-256 checksum
How to use checksums
68efbe7a36c15a8772d3cd3e7e7b289debe8c6b0f1a94a719cea75820c8d68ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.6

Release files / netmiko-4.8.0-py3-none-any.whl

Download URL netmiko-4.8.0-py3-none-any.whl
Size 294.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
b4875b36604bcc7a72339f3b4d3091ce545ce0b4629f77f7844413b1c380d0e6
BLAKE2b-256 checksum
How to use checksums
0c0d796ef54d10e5af8a9af12a431ad278d74d9139c4888599c2073b2eec814d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.11.6

Release history Release notifications | RSS feed

This release

4.8.0 This release

2 release files

4.7.0

2 release files

4.6.0

2 release files

4.5.0

2 release files

4.4.0

2 release files

4.3.0

2 release files

4.2.0

2 release files

4.1.2

2 release files

4.1.1

2 release files

4.1.0

2 release files

4.0.0

2 release files

3.4.0

2 release files

3.3.3

2 release files

3.3.2

2 release files

3.3.0

2 release files

3.2.0

2 release files

3.1.1

2 release files

3.1.0

2 release files

3.0.0

2 release files

2.4.2

2 release files

2.4.1

2 release files

2.4.0

2 release files

2.3.3

1 release file

2.3.2

1 release file

2.3.0

1 release file

2.2.2

1 release file

2.1.1

1 release file

2.1.0

1 release file

2.0.2

1 release file

2.0.1

1 release file

2.0.0

1 release file

1.4.3

1 release file

1.4.2

1 release file

1.4.1

1 release file

1.4.0

1 release file

1.3.0

1 release file

1.2.8

1 release file

1.2.7

1 release file

1.2.5

1 release file

1.1.0

1 release file

1.0.0

1 release file

0.5.6

1 release file

0.5.1

1 release file

0.5.0

1 release file

0.4.3

1 release file

0.3.4

1 release file

0.3.0

1 release file

0.2.5

3 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page