diff --git a/Plotter/run_plotter.py b/Plotter/run_plotter.py new file mode 100644 index 0000000..515eefb --- /dev/null +++ b/Plotter/run_plotter.py @@ -0,0 +1,24 @@ +# Python Imports +import typer + + +def main( + input_data: str = typer.Option(..., "--input-data", "-i"), + plot_type: str = typer.Option(..., "--plot-type", "-p"), + plot_settings: str = typer.Option(..., "--plot-settings", "-s"), +): + # Parse data file + print("") + # Accept plot type + + # Handle Plot arguments + + +''' +import foo +bar = getattr(foo, 'bar') +result = bar() +''' + +if __name__ == '__main__': + typer.run(main) diff --git a/Plotter/simulation_data.py b/Plotter/simulation_data.py new file mode 100644 index 0000000..d93a766 --- /dev/null +++ b/Plotter/simulation_data.py @@ -0,0 +1,6 @@ + + +class SimulationData: + + def __init__(self, dataframe): + self._dataframe = dataframe