From 4b5487fb23add8ad97e1bd8f9f4a5f7afbddbe42 Mon Sep 17 00:00:00 2001 From: Esa Kataja Date: Thu, 13 Mar 2025 14:38:16 +0200 Subject: [PATCH] Add Readme --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index e69de29..86b199e 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,26 @@ +# JSON/XML Parser Application + +## Overview +Configuration management utility for One Identity Manager (OIM) PowerShell connectors. Transforms JSON database exports into validated XML configuration files, ensuring consistent deployment of connection specifications. + +## Installation +```bash +pip install -r requirements.txt +``` + +## Usage +```bash +python src/main.py \ + --json \ + --xml \ + --name "Connection Name" \ + --description "Connection Description" \ + [--pretty] +``` + +**Options**: +- `--json/-j`: Path to input JSON file (required) +- `--xml/-x`: Output XML file path (required) +- `--name/-n`: Connection name (required) +- `--description/-d`: Connection description (required) +- `--pretty/-p`: Enable formatted XML output (flag)