This is template app for CLI test.
You can make console application by editing app/app.py
This uses argparse module.. See detail in argparse document.
app.py has a function main
def main(args, options):All parameters are passed as args array
If you want to use option parameter, you can use parser.add_argument for your own option in cli.py
You can use print method
print(v)If you want to use external libraries, please do following
- Write library name and version in requirements.txt
- Add following section to codecheck.yml
build:
- pip3 install -r requirements.txt