python-netmiko
Port variant py310
Summary Simplify CLI connections to network devices (3.10)
Package version 4.2.0
Homepage https://github.com/ktbyers/netmiko
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v11
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 19 MAY 2023, 17:01:37 UTC
Port created 07 JAN 2023, 04:18:24 UTC
Subpackage Descriptions
single [![PyPI - Python Version]](https://img.shields.io/pypi/pyversions/netmiko) [PyPI] [Downloads] [GitHub contributors] [Code Style] [image] Netmiko ======= Multi-vendor library to simplify CLI connections to network devices
## 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 - [Getting Started]
## Examples *You really should look here.* - [Netmiko Examples]
## Supported Platforms [PLATFORMS]
## Installation To install netmiko, simply us pip: ``` $ pip install netmiko ```
## API-Documentation [API-Documentation]
## Common Issues/FAQ Answers to some [common questions]
### Tutorials - [Netmiko Overview] - [Secure Copy] - [Netmiko through SSH Proxy] - [Netmiko and TextFSM] - [Netmiko and what constitutes done]
### Getting Started: #### Create a dictionary representing the device. Supported device_types can be found in [ssh_dispatcher.py], see CLASS_MAPPER keys. ```py 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. ```py
Configuration Switches (platform-specific settings discarded)
PY310 ON Build using Python 3.10 PY311 OFF Build using Python 3.11
Package Dependencies by Type
Build (only) python-pip:single:py310
autoselect-python:single:standard
Build and Runtime python310:single:standard
Runtime (only) python-ntc-templates:single:py310
python-paramiko:single:py310
python-pyserial:single:py310
python-PyYAML:single:py310
python-scp:single:py310
python-textfsm:single:py310
Download groups
main mirror://PYPIWHL/41/26/4801bb11234ee025b71d35289cdc62a0a4f2ad7a532ddff8cd7b4881249b
Distribution File Information
8dae36263edc0b5ca5373d3d9ec428f38efd050ecfddac9c0698d0e65082bb3b 213021 netmiko-4.2.0-py3-none-any.whl
Ports that require python-netmiko:py310
python-napalm:py310 Vendor-agnostic router interaction libary (3.10)
python-netdoc:py310 Network documentation plugin for NetBox (3.10)
python-nornir-netmiko:py310 Netmiko's plugins for Nornir (3.10)