import os
import math
import re
def Generate_Batch_Scripts_mml(sourepath, templatepath, parentnode):
"""
根据模板中的MML,批量生成小区的MML脚本
template:MML模板,UCELLID=XXX,UNODEB=YYY
source:原始数据,如导出的CFGMML,主要是用于提取CELLID,以ADD UCELLSETUP中的小区为准
parentnode:(str)主键从父节点中获取,如CELLID从ADD UCELLSETUP中获取
return:result增量脚本结果
"""
# 1.获取主键
# 环境导出的CFGMML
soure = open(sourepath, 'r', encoding='utf-8')
lines1 = soure.readlines()
keywordlines = []
for l in lines1:
if parentnode.strip() in l:
res = re.search(r'ucellid=\d+', l).group()
keywordlines.append(res)
# print("keywordlines=", keywordlines, type(keywordlines))
soure.close()
# 2.获取模板替换主键并批量生成MML
# MML模板
template = open(templatepath, 'r', encoding='utf-8')
result = open(r"D:\pycharm\01 Get_MML\re
python根据模板中的MML,批量生成小区脚本
最新推荐文章于 2024-07-03 03:50:32 发布
使用Python编程,依据特定的MML模板,高效自动化地生成一系列小区配置脚本,简化了繁琐的手动操作,提高了测试工具的使用效率。
摘要由CSDN通过智能技术生成