Currently, you'd need to run your project as a Python script. Ideally, CLI tools are better suited to run as executable binary files. There are tools like PyInstaller or p2exe that can help create a binary file for your Python script.
How cli2cloud presently runs on the terminal:
$ python app.py -del file_name
How cli2cloud would runs on the terminal post Change:
Note: Taking c2c as an example for this cli tool. You can name it anything.
Once implemented, it'll be much cleaner to set up and use this CLI tool.
@thekaranatic
Currently, you'd need to run your project as a Python script. Ideally, CLI tools are better suited to run as executable binary files. There are tools like PyInstaller or p2exe that can help create a binary file for your Python script.
How cli2cloud presently runs on the terminal:
$ python app.py -del file_nameHow cli2cloud would runs on the terminal post Change:
$ c2c -del file_nameOnce implemented, it'll be much cleaner to set up and use this CLI tool.
@thekaranatic