排列组合生成json

该Python代码读取JSON模板文件和YAML测试数据文件,然后使用itertools.product生成所有可能的数据组合。这些组合被写入新的JSON文件,并在超过150个组合时压缩到一个ZIP文件中。每份JSON文件的内容是模板数据与测试数据的合并结果。
摘要由CSDN通过智能技术生成
import json
import yaml
import itertools
import os
import zipfile

# 读取模板json文件
with open('common/data.json', 'r') as f:
    template = json.load(f)

# 读取测试数据yaml文件
with open('common/data.yml', 'r') as f:
    test_data = yaml.safe_load(f)

# 对测试数据进行组合
combinations = [dict(zip(test_data.keys(), values)) for values in itertools.product(*test_data.values())]

# 生成json文件
output_dir = 'output'
if not os.path.exists(output_dir):
    os.makedirs(output_dir)

if len(combinations) > 150:
    zip_file = zipfile.ZipFile(f'output/output.zip', 'w', zipfile.ZIP_DEFLATED)
    for i, data in enumerate(combinations):
        filename = f'output_{i}.json'
        with open(os.path.join(output_dir, filename), 'w') as f:
            # 使用模板数据覆盖组合后的数据
            result = template.copy()
            result.update(data)
            json.dump(result, f, indent=4)
            print(f'Successfully generated {filename}.')
        # 将文件添加到zip文件中
        zip_file.write(os.path.join(output_dir, filename), filename)
        os.remove(os.path.join(output_dir, filename))
    zip_file.close()
    print('Successfully generated output.zip.')
else:
    for i, data in enumerate(combinations):
        filename = f'output_{i}.json'
        with open(os.path.join(output_dir, filename), 'w') as f:
            # 使用模板数据覆盖组合后的数据
            result = template.copy()
            result.update(data)
            json.dump(result, f, indent=4)
            print(f'Successfully generated {filename}.')
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值