Demo Files Installer Sub-Module
t3co.utils.demo_inputs_installer
main()
Requests user inputs for whether and where to copy t3co demo input files from the t3co.resources folder. Calls the copy_demo_input_files function.
Source code in src/t3co/utils/demo_inputs_installer.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
copy_demo_input_files(destination_path)
Copies the t3co.resources folder that includes demo input files to a user input destination_path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
destination_path |
Union[str, Path]
|
Path of destination directory for copying t3co.resources folder. |
required |
Source code in src/t3co/utils/demo_inputs_installer.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | |