As it stands, the main envman code for CLI interaction uses a bunch of if-elif-else statements to handle the various user commands.
It would be much cleaner (and more maintainable) if we used something like the click third-party library or argparse to handle command-line argument parsing and user interaction.
As it stands, the main
envmancode for CLI interaction uses a bunch ofif-elif-elsestatements to handle the various user commands.It would be much cleaner (and more maintainable) if we used something like the
clickthird-party library orargparseto handle command-line argument parsing and user interaction.