Skip to content

Data-file-merge (dfm) allows you to merge JSON files into a destination file using a set of rules defined in a configuration file

License

Notifications You must be signed in to change notification settings

ServerlessSam/data-file-merge

Repository files navigation

data-file-merge

This python module/CLI allows you to merge multiple JSON files into a single destination JSON file using a set of rules defined in the dfm config file

Please refer to the project wiki for complete documentation including usage and configuration file syntax.

Hello World Example

You can install the CLI for your operating system from GitHub here.

Using the following config file:

{
    "SourceFiles" : [
        {
            "SourceFileLocation" : {
                "Path" : "foo/bar.json"
            },
            "SourceFileNode" : "$",
            "DestinationFileNode" : "$"
        },
        {
            "SourceFileLocation" : {
                "Path" : "foo/baz.json"
            },
            "SourceFileNode" : "$",
            "DestinationFileNode" : "$"
        },
    ],
    "DestinationFile" : {
        "DestinationFileLocation" : {
            "Path" : "hello/world.json"
        }
    }
}

...you are able to merge the content of foo/bar.json and foo/baz.json into hello/world.json (this can either be an existing or new file). The $s indicate that we are merging from the root node of both foo/*.json files to the root of hello/world.json. This merge can be achieved with the CLI command dfm merge --root-path <path to 'foo' directory> <path to this config file>. The specific rules followed by the merging logic can be found in the wiki.

More examples can be found in the dfm example repo.

Considerations

Development

  • install pre-commit hooks: poetry run pre-commit install
  • check and fix linting issues: make format

Contributing to the project

You are welcome to help us rid the world of monolithic data files! Reach out to ServerlessSam to either find some tickets to complete or bring up any ideas you have.

About

Data-file-merge (dfm) allows you to merge JSON files into a destination file using a set of rules defined in a configuration file

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published