Skip to content

Commit d34fc11

Browse files
committed
added nxos/nxos_ssh drivers
1 parent aaaf5f3 commit d34fc11

File tree

180 files changed

+42964
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

180 files changed

+42964
-11
lines changed

napalm/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@
1919
"eos",
2020
"ios",
2121
"junos",
22+
"nxos",
23+
"nxos_ssh",
2224
]

napalm/nxos/__init__.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2016 Dravetech AB. All rights reserved.
3+
#
4+
# The contents of this file are licensed under the Apache License, Version 2.0
5+
# (the "License"); you may not use this file except in compliance with the
6+
# License. You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13+
# License for the specific language governing permissions and limitations under
14+
# the License.
15+
16+
"""napalm.nxos package."""
17+
18+
# Import stdlib
19+
import pkg_resources
20+
21+
# Import local modules
22+
from napalm.nxos.nxos import NXOSDriver # noqa
23+
24+
try:
25+
__version__ = pkg_resources.get_distribution('napalm-nxos').version
26+
except pkg_resources.DistributionNotFound:
27+
__version__ = "Not installed"
28+
29+
__all__ = ('NXOSDriver',)

0 commit comments

Comments
 (0)