$ pip install templater-cli
tmt -V
| tmt --version
tmt new <template_name> <Dir Path| type:path; Default:current path>
$ ls
main.py
module
requirements.txt
$ tmt new mymodule ./module
/usr/module successfully Init as Template, "mymodule"
tmt load <[project_name | type:non-existing path]> <template_name>
$ ls myprojects
$ tmt load myprojects/new mymodule
template mymodule successfully loaded on myprojects/new dir
$ ls myprojects
new
tmt show
$ tmt show
python
mymodule
tmt remove <template_name> [--confirm -c [yes|no] | required: False]
$ tmt remove mymodule
Confirmation[yes/no]: yes
mymodule template successfully removed