dim
                                
                                 dim copied to clipboard
                                
                                    dim copied to clipboard
                            
                            
                            
                        analyze whether simplejson, argparse can be removed from ndcli
ndcli does not use simplejson directly, but via dimclient:
dimclient already falls back to json if simplejson can't be found: https://github.com/1and1/dim/blob/7569eab677dab5a0cf62ed221a51620028f46954/dimclient/dimclient/init.py#L9.L12
simplejson is the externally maintained development version of the json library included with Python (since 2.6). There were not many changes in the external module,
jsonfrom Python 3 should be compatible.
argparse seems to be only in dim-bind, but is also not requires as explicit dependency, as it is included from Python 2.7 and Python 3.2. Currently, the version from PyPi would be installed.
https://pypi.org/project/argparse/
As of Python >= 2.7 and >= 3.2, the argparse module is maintained within the Python standard library.