Commandline Interfaces
Commandline Interfaces.
load(p_toml, p_xlsx, p_out, engine=OpenPYXL)
Load configuration to a spreadsheet and save it to a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
p_toml
|
Path
|
Path to the TOML file. |
required |
p_xlsx
|
Path
|
Path to the XLSX file. |
required |
p_out
|
Path
|
Path to the output file. |
required |
engine
|
Engine
|
Workbook engine to use. |
OpenPYXL
|
Returns:
Type | Description |
---|---|
Path to the output file.
|
|
Source code in named_xlsx/cli.py
12 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 42 43 |
|