Deleted argument parser and cleaned runner.py

This commit is contained in:
Alberto 2022-09-22 17:55:31 +02:00
parent 36ee1ec2e6
commit e38cef5b52
3 changed files with 4 additions and 32 deletions

View File

@ -1,13 +0,0 @@
from argparse import ArgumentParser
def parse_arguments(arguments_file):
"""
:param arguments_file:
:return:
"""
parser = ArgumentParser(description='Automatic framework to launch simulations')
parser.add_argument('simulation_config', type=str, help='Simulation file configuration')

View File

@ -0,0 +1,4 @@
def run_simulation():
pass

View File

@ -1,19 +0,0 @@
"""
USAGE:
consensus-simulations.exe [OPTIONS] --input-settings <INPUT_SETTINGS> --output-file <OUTPUT_FILE>
OPTIONS:
-f, --output-format <OUTPUT_FORMAT> Output format selector [default: parquet]
-h, --help Print help information
-i, --input-settings <INPUT_SETTINGS> Json file path, on `SimulationSettings` format
-o, --output-file <OUTPUT_FILE> Output file path
"""
if __name__ == '__main__':
# Parse arguments
# Run simulation with arguments
pass