Netmiko 和 Textfsm 路径和环境问题 Windows

Netmiko and Textfsm Path and Env Issue Windows

我目前正在尝试在 Windows 10 中使用 Netmiko 和 Textfsm 进行测试,但无论我尝试以何种路径设置 textfsm 环境变量,它仍然无法接收并抛出一个错误:

Valid ntc-templates not found, please install https://github.com/networktocode/ntc-templates and then set the NET_TEXTFSM environment variable to point to the ./ntc-templates/templates directory.

我尝试通过系统属性 --> 环境变量手动设置环境变量,但仍然得到相同的消息。我尝试了绝对路径和相对路径,但没有成功。理想情况下,模板文件夹的相对路径将始终位于调用它的脚本旁边。它可能很简单,但我现在完全想念它。

文件夹结构:

我的代码:

import os, json
from netmiko import Netmiko
from netmiko import NetMikoAuthenticationException

templates = os.path.dirname(os.path.abspath(__file__)) + '\ntc-template\templates\'
os.environ['NET_TEXTFSM']= templates
print(os.environ['NET_TEXTFSM'])

###############################################################
#Can i set the env var from within the scirpt using python?
#os.system(f'cmd /c "set NET_TEXTFSM={templates}"')
###############################################################

switch = {'device_type': 'cisco_ios',
            'ip': '192.168.0.20',
            'username': 'cisco',
            'password': 'cisco',
            'secret': 'cisco',
            'timeout': 10000,
            'session_timeout': 10000}

try:
    c = Netmiko(**switch)
    c.enable()
    show_ip_arp = c.send_command('show ip arp', use_textfsm=True)
    print(json.dumps(show_ip_arp))
except Exception as e:
    print(e)

我希望有人指出可能有什么错误或遗漏的地方。我很想避免必须通过 cmd 设置任何环境变量,除非它也可以自动化。这个想法是,无论谁打开这个 py 文件,都可以获得使用 textfsm 所需的一切。

在 netmiko 存储库所有者的帮助下解决了问题:

下面的代码适用于以下库和版本:

netmiko==3.1.0
ntc-templates==1.4.0
textfsm==1.1.0
import os, json
import ntc_templates
from netmiko import Netmiko
from netmiko import NetMikoAuthenticationException

switch = {'device_type': 'cisco_ios',
            'ip': '192.168.0.20',
            'username': 'cisco',
            'password': 'cisco',
            'secret': 'cisco',
            'timeout': 10000,
            'session_timeout': 10000}

try:
    c = Netmiko(**switch)
    c.enable()
    show_ip_arp = c.send_command('show ip arp', use_textfsm=True)
    print(show_ip_arp)
except Exception as e:
    print(e)