mirror of
https://github.com/logos-co/SimulationsFramework.git
synced 2025-02-23 11:18:16 +00:00
20 lines
535 B
Python
20 lines
535 B
Python
|
"""
|
||
|
|
||
|
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
|