Metadata-Version: 2.1
Name: HPmiko
Version: 1.0.1
Summary: HPmiko is a middle-man script to simplify extracting data from HP/Aruba Procurve switches using Netmiko
Home-page: https://github.com/andytruett/HPmiko
Author: Andy Truett
Author-email: andrew.truett@gmail.com
License: MIT License
Download-URL: https://github.com/andytruett/HPmiko/archive/1.0.0.tar.gz
Keywords: HP Aruba Procurve netmiko
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/x-rst
Requires-Dist: netmiko (>=2.4.0)

========
HPmiko
========

HPmiko is a middle-man script to simplify extracting data from HP/Aruba Procurve switches using Netmiko

Installation
------------

To install HPmiko, simply use pip:

.. code-block::

  $ pip install HPmiko

HPmiko has the following requirements (which pip will install for you)

- netmiko >= 2.4.0

Documentation
-------------

https://andytruett.github.io/HPmiko/

Usage
-----

.. code-block::

  import HPmiko

  ip = 127.0.0.1
  username = "admin"
  password = "password"

  my_switch = HPmiko.HP(ip, username, password)

  my_switch.connect()

  hostname = my_switch.get_hostname()
  print(hostname)


