Add help texts to cli interface

This commit is contained in:
Esa Kataja
2025-03-13 14:26:46 +02:00
parent af9e576fc5
commit 89ebeef1ee
+4 -4
View File
@@ -6,10 +6,10 @@ from xml_parser import get_xml_data, add_connection, write_xml_data
@click.command
@click.option('-j', '--json', type=Path, required=True)
@click.option('-x', '--xml', type=Path, required=True)
@click.option('-n', '--name', type=str, required=True)
@click.option('-d', '--description', type=str, required=True)
@click.option('-j', '--json', type=Path, required=True, help='Path to the JSON file')
@click.option('-x', '--xml', type=Path, required=True, help='Path to the XML file. If the file does not exist, a default configuration will be generated.')
@click.option('-n', '--name', type=str, required=True, help='Name of the connection')
@click.option('-d', '--description', type=str, required=True, help='Description of the connection')
@click.option('-p', '--pretty', is_flag=True, default=False, help='Enable pretty output')
def main(json: Path, xml: Path, name: str, description: str, pretty: bool):
xml_data = get_xml_data(xml)