網(wǎng)站首頁 編程語言 正文
1、用for循環(huán)把一個(gè)字典合并到另一個(gè)字典
把a(bǔ)字典合并到b字典中,相當(dāng)于用for循環(huán)遍歷a字典,然后取出a字典的鍵值對(duì),放進(jìn)b字典,這種方法python中進(jìn)行了簡(jiǎn)化,封裝成b.update(a)實(shí)現(xiàn)
>>> a = {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'} >>> b = {'name': 'r1'} >>> for k, v in a.items(): ... b[k] = v ... >>> a {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'} >>> b {'name': 'r1', 'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}
2、用dict(b, **a)方法構(gòu)造一個(gè)新字典
使用**a的方法,可以快速的打開字典a的數(shù)據(jù),可以使用這個(gè)方法來構(gòu)造一個(gè)新的字典
>>> a = {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'} >>> b = {'name': 'r1'} >>> c = dict(b, **a) >>> c {'name': 'r1', 'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'} >>> a {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'} >>> b {'name': 'r1'}
3、用b.update(a)的方法,更新字典
>>> a = {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'} >>> b = {'name': 'r1'} >>> b.update(a) >>> a {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'} >>> b {'name': 'r1', 'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}
4、把字典轉(zhuǎn)換成列表合并后,再轉(zhuǎn)換成字典
利用a.items()的方法把字典拆分成鍵值對(duì)元組,然后強(qiáng)制轉(zhuǎn)換成列表,合并list(a.items())和list(b.items()),并使用dict把合并后的列表轉(zhuǎn)換成一個(gè)新字典
(1)利用a.items()、b.items()把a(bǔ)、b兩個(gè)字典轉(zhuǎn)換成元組鍵值對(duì)列表
>>> a = {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'} >>> b = {'name': 'r1'} >>> a.items() dict_items([('device_type', 'cisco_ios'), ('username', 'admin'), ('password', 'cisco')]) >>> b.items() dict_items([('name', 'r1')]) >>> list(a.items()) [('device_type', 'cisco_ios'), ('username', 'admin'), ('password', 'cisco')] >>> list(b.items()) [('name', 'r1')]
(2)合并列表并且把合并后的列表轉(zhuǎn)換成字典
>>> dict(list(a.items()) + list(b.items())) {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco', 'name': 'r1'}
5、實(shí)例,netmiko使用json格式的數(shù)據(jù)進(jìn)行自動(dòng)化操作
(1)json格式的處理
#! /usr/bin/env python3 # _*_ coding: utf-8 _*_ import json ? def creat_net_device_info(net_name, device, hostname, user, passwd): dict_device_info = { 'device_type': device, 'ip': hostname, 'username': user, 'password': passwd } dict_connection = {'connect': dict_device_info} dict_net_name = {'name': net_name} data = dict(dict_net_name, **dict_connection) data = json.dumps(data) return print(f'生成的json列表如下:\n{data}') ? ? if __name__ == '__main__': net_name = input('輸入網(wǎng)絡(luò)設(shè)備名稱R1或者SW1的形式:') device = input('輸入設(shè)備類型cisco_ios/huawei: ') hostname = input('輸入管理IP地址: ') user = input('輸入設(shè)備登錄用戶名: ') passwd = input('輸入設(shè)備密碼: ') json_founc = creat_net_device_info json_founc(net_name, device, hostname, user, passwd)
(2)json格式的設(shè)備信息列表
[ { "name": "R1", "connect":{ "device_type": "cisco_ios", "ip": "192.168.47.10", "username": "admin", "password": "cisco" } }, { "name": "R2", "connect":{ "device_type": "cisco_ios", "ip": "192.168.47.20", "username": "admin", "password": "cisco" } }, { "name": "R3", "connect":{ "device_type": "cisco_ios", "ip": "192.168.47.30", "username": "admin", "password": "cisco" } }, { "name": "R4", "connect":{ "device_type": "cisco_ios", "ip": "192.168.47.40", "username": "admin", "password": "cisco" } }, { "name": "R5", "connect":{ "device_type": "cisco_ios", "ip": "192.168.47.50", "username": "admin", "password": "cisco" } } ]
(3)netmiko讀取json類型信息示例
#! /usr/bin/env python3 # _*_ coding: utf-8 _*_ ? import os import sys import json from datetime import datetime from netmiko import ConnectHandler from concurrent.futures import ThreadPoolExecutor as Pool ? def write_config_file(filename, config_list): with open(filename, 'w+') as f: for config in config_list: f.write(config) ? def auto_config(net_dev_info, config_file): ssh_client = ConnectHandler(**net_dev_info['connect']) #把json格式的字典傳入 hostname = net_dev_info['name'] hostips = net_dev_info['connect'] hostip = hostips['ip'] print('login ' + hostname + ' success !') output = ssh_client.send_config_from_file(config_file) file_name = f'{hostname} + {hostip}.txt' print(output) write_config_file(file_name, output) def main(net_info_file_path, net_eveng_config_path): this_time = datetime.now() this_time = this_time.strftime('%F %H-%M-%S') foldername = this_time old_folder_name = os.path.exists(foldername) if old_folder_name == True: print('文件夾名字沖突,程序終止\n') sys.exit() else: os.mkdir(foldername) print(f'正在創(chuàng)建目錄 {foldername}') os.chdir(foldername) print(f'進(jìn)入目錄 {foldername}') ? net_configs = [] ? with open(net_info_file_path, 'r') as f: devices = json.load(f) #載入一個(gè)json格式的列表,json.load必須傳入一個(gè)別表 ? with open(net_eveng_config_path, 'r') as config_path_list: for config_path in config_path_list: config_path = config_path.strip() net_configs.append(config_path) ? with Pool(max_workers=6) as t: for device, net_config in zip(devices, net_configs): task = t.submit(auto_config, device, net_config) print(task.result()) ? ? if __name__ == '__main__': #net_info_file_path = '~/net_dev_info.json' #net_eveng_config_path = '~/eve_config_path.txt' net_info_file_path = input('請(qǐng)輸入設(shè)備json_inventory文件路徑: ') net_eveng_config_path = input('請(qǐng)輸入記錄設(shè)備config路徑的配置文件路徑: ') main(net_info_file_path, net_eveng_config_path)
原文鏈接:https://blog.csdn.net/m0_64355682/article/details/123679785
相關(guān)推薦
- 2023-02-04 詳解如何在C#中接受或拒絕Excel中的修訂_C#教程
- 2022-07-30 Linux文件管理命令行
- 2022-04-20 C++的運(yùn)算符你真的了解嗎_C 語言
- 2022-07-08 一文詳解C++中運(yùn)算符的使用_C 語言
- 2022-04-19 Python的閉包和裝飾器你真的了解嗎_python
- 2022-09-23 Shell腳本函數(shù)傳遞參數(shù)的實(shí)現(xiàn)方法_linux shell
- 2023-06-05 最新python?字符串?dāng)?shù)組互轉(zhuǎn)問題_python
- 2022-06-02 C++超詳細(xì)講解單鏈表的實(shí)現(xiàn)_C 語言
- 最近更新
-
- window11 系統(tǒng)安裝 yarn
- 超詳細(xì)win安裝深度學(xué)習(xí)環(huán)境2025年最新版(
- Linux 中運(yùn)行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲(chǔ)小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎(chǔ)操作-- 運(yùn)算符,流程控制 Flo
- 1. Int 和Integer 的區(qū)別,Jav
- spring @retryable不生效的一種
- Spring Security之認(rèn)證信息的處理
- Spring Security之認(rèn)證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權(quán)
- redisson分布式鎖中waittime的設(shè)
- maven:解決release錯(cuò)誤:Artif
- restTemplate使用總結(jié)
- Spring Security之安全異常處理
- MybatisPlus優(yōu)雅實(shí)現(xiàn)加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務(wù)發(fā)現(xiàn)-Nac
- Spring Security之基于HttpR
- Redis 底層數(shù)據(jù)結(jié)構(gòu)-簡(jiǎn)單動(dòng)態(tài)字符串(SD
- arthas操作spring被代理目標(biāo)對(duì)象命令
- Spring中的單例模式應(yīng)用詳解
- 聊聊消息隊(duì)列,發(fā)送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠(yuǎn)程分支