Skip to content

Commit

Permalink
added nxos/nxos_ssh drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarrosop committed Oct 22, 2017
1 parent aaaf5f3 commit d34fc11
Show file tree
Hide file tree
Showing 180 changed files with 42,964 additions and 11 deletions.
2 changes: 2 additions & 0 deletions napalm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@
"eos",
"ios",
"junos",
"nxos",
"nxos_ssh",
]
29 changes: 29 additions & 0 deletions napalm/nxos/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
# Copyright 2016 Dravetech AB. All rights reserved.
#
# The contents of this file are licensed under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.

"""napalm.nxos package."""

# Import stdlib
import pkg_resources

# Import local modules
from napalm.nxos.nxos import NXOSDriver # noqa

try:
__version__ = pkg_resources.get_distribution('napalm-nxos').version
except pkg_resources.DistributionNotFound:
__version__ = "Not installed"

__all__ = ('NXOSDriver',)
Loading

0 comments on commit d34fc11

Please sign in to comment.