transform_csv ¶
CLI module for transforming CSV data files.
Functions:
-
get_args
–Get the arguments when using from the commandline.
-
main
–Connect CSV and YAML configuration and handle sanity checks.
-
run
–Run the CSV transformation script.
get_args ¶
get_args() -> Namespace
Get the arguments when using from the commandline.
Source code in src/stimulus/cli/transform_csv.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|
main ¶
Connect CSV and YAML configuration and handle sanity checks.
This launcher will be the connection between the csv and one YAML configuration. It should also handle some sanity checks.
Source code in src/stimulus/cli/transform_csv.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
|
run ¶
run() -> None
Run the CSV transformation script.
Source code in src/stimulus/cli/transform_csv.py
68 69 70 71 |
|