SimulationsFramework/SimulationRunner/simulation_runner.py

20 lines
535 B
Python
Raw Normal View History

2022-09-21 10:42:16 +02:00
"""
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