Skip to content
This repository has been archived by the owner on Jun 10, 2022. It is now read-only.

Commit

Permalink
Merge into Master branch. (#2)
Browse files Browse the repository at this point in the history
* - Updated README to include basic usage.

* - Collapsed API query into _get_api_query_response method.
- Added add_device command.
- Added show_device_config command.
- Added show_routing command.

* - Added all HP NA methods.

* - Adjusted version to 1.0.0.
  • Loading branch information
spenceation authored Jul 2, 2018
1 parent fc18d50 commit 5cc77cf
Show file tree
Hide file tree
Showing 5 changed files with 864 additions and 60 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ config
#######################
*.log
*.pyc

# Excluded Directories #
##################
.idea
.idea/*
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ HPNAPY
===========
HPNAPY is a Python3 library to access and interface with HP Network Automation's SOAP API.

More information on HP Network Automation can be found at ([Micro Focus](https://software.microfocus.com/en-us/products/network-automation/overview)).

=======
## Usage

Here is an example of connecting through the API and retrieving a list of device groups.
Expand Down
2 changes: 1 addition & 1 deletion hpnapy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""

__title__ = 'HPNA Python Library'
__version__ = '0.0.0'
__version__ = '1.0.0'
__author__ = 'Spencer Ervin'
__license__ = 'GNU General Public License v3.0'

Expand Down
Loading

0 comments on commit 5cc77cf

Please sign in to comment.