cmd2 3.0.0b1__tar.gz → 3.0.0rc1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/.pre-commit-config.yaml +3 -3
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/CHANGELOG.md +8 -1
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/MANIFEST.in +1 -1
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/Makefile +0 -1
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/PKG-INFO +3 -2
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/README.md +2 -1
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/cmd2.py +1 -1
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/plugin.py +1 -1
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2.egg-info/PKG-INFO +3 -2
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2.egg-info/SOURCES.txt +9 -40
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/codecov.yml +0 -5
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/modular_commands.md +11 -9
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/index.md +2 -2
- cmd2-3.0.0rc1/docs/mixins/index.md +7 -0
- cmd2-3.0.0rc1/docs/mixins/mixin_template.md +170 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/testing.md +4 -3
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/upgrades.md +33 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/README.md +2 -0
- cmd2-3.0.0rc1/examples/custom_types.py +165 -0
- cmd2-3.0.0b1/plugins/template/cmd2_myplugin/myplugin.py → cmd2-3.0.0rc1/examples/mixin.py +29 -11
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/mkdocs.yml +3 -3
- cmd2-3.0.0rc1/pyproject.toml +121 -0
- cmd2-3.0.0b1/pyproject.toml → cmd2-3.0.0rc1/ruff.toml +6 -136
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tasks.py +9 -24
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/conftest.py +85 -0
- {cmd2-3.0.0b1/tests_isolated/test_commandset → cmd2-3.0.0rc1/tests}/test_commandset.py +128 -127
- cmd2-3.0.0b1/docs/plugins/external_test.md +0 -74
- cmd2-3.0.0b1/docs/plugins/index.md +0 -7
- cmd2-3.0.0b1/plugins/README.txt +0 -1
- cmd2-3.0.0b1/plugins/ext_test/CHANGELOG.md +0 -22
- cmd2-3.0.0b1/plugins/ext_test/README.md +0 -82
- cmd2-3.0.0b1/plugins/ext_test/build-pyenvs.sh +0 -53
- cmd2-3.0.0b1/plugins/ext_test/cmd2_ext_test/__init__.py +0 -18
- cmd2-3.0.0b1/plugins/ext_test/cmd2_ext_test/cmd2_ext_test.py +0 -67
- cmd2-3.0.0b1/plugins/ext_test/cmd2_ext_test/py.typed +0 -1
- cmd2-3.0.0b1/plugins/ext_test/cmd2_ext_test/pylintrc +0 -10
- cmd2-3.0.0b1/plugins/ext_test/examples/example.py +0 -37
- cmd2-3.0.0b1/plugins/ext_test/noxfile.py +0 -7
- cmd2-3.0.0b1/plugins/ext_test/pyproject.toml +0 -180
- cmd2-3.0.0b1/plugins/ext_test/setup.py +0 -49
- cmd2-3.0.0b1/plugins/ext_test/tasks.py +0 -209
- cmd2-3.0.0b1/plugins/ext_test/tests/__init__.py +0 -2
- cmd2-3.0.0b1/plugins/ext_test/tests/pylintrc +0 -19
- cmd2-3.0.0b1/plugins/ext_test/tests/test_ext_test.py +0 -74
- cmd2-3.0.0b1/plugins/tasks.py +0 -144
- cmd2-3.0.0b1/plugins/template/CHANGELOG.md +0 -12
- cmd2-3.0.0b1/plugins/template/LICENSE +0 -21
- cmd2-3.0.0b1/plugins/template/README.md +0 -290
- cmd2-3.0.0b1/plugins/template/build-pyenvs.sh +0 -53
- cmd2-3.0.0b1/plugins/template/cmd2_myplugin/__init__.py +0 -17
- cmd2-3.0.0b1/plugins/template/cmd2_myplugin/pylintrc +0 -10
- cmd2-3.0.0b1/plugins/template/examples/example.py +0 -20
- cmd2-3.0.0b1/plugins/template/noxfile.py +0 -7
- cmd2-3.0.0b1/plugins/template/setup.py +0 -50
- cmd2-3.0.0b1/plugins/template/tasks.py +0 -198
- cmd2-3.0.0b1/plugins/template/tests/__init__.py +0 -2
- cmd2-3.0.0b1/plugins/template/tests/pylintrc +0 -19
- cmd2-3.0.0b1/plugins/template/tests/test_myplugin.py +0 -69
- cmd2-3.0.0b1/tests_isolated/__init__.py +0 -0
- cmd2-3.0.0b1/tests_isolated/test_commandset/__init__.py +0 -0
- cmd2-3.0.0b1/tests_isolated/test_commandset/conftest.py +0 -144
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/.prettierignore +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/.prettierrc +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/GEMINI.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/LICENSE +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/__init__.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/argparse_completer.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/argparse_custom.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/clipboard.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/colors.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/command_definition.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/constants.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/decorators.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/exceptions.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/history.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/parsing.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/py.typed +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/py_bridge.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/rich_utils.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/rl_utils.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/string_utils.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/styles.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/terminal_utils.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/transcript.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2/utils.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2.egg-info/dependency_links.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2.egg-info/requires.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2.egg-info/top_level.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/cmd2.png +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/argparse_completer.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/argparse_custom.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/clipboard.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/cmd.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/colors.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/command_definition.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/constants.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/decorators.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/exceptions.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/history.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/index.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/parsing.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/plugin.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/py_bridge.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/rich_utils.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/rl_utils.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/string_utils.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/styles.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/terminal_utils.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/transcript.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/api/utils.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/doc_conventions.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/examples/alternate_event_loops.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/examples/examples.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/examples/getting_started.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/examples/index.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/argument_processing.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/builtin_commands.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/clipboard.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/commands.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/completion.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/disable_commands.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/embedded_python_shells.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/generating_output.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/help.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/history.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/hooks.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/index.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/initialization.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/misc.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/multiline_commands.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/os.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/packaging.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/plugins.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/prompt.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/redirection.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/scripting.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/settings.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/shortcuts_aliases_macros.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/startup_commands.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/table_creation.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/theme.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/features/transcripts.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/javascripts/readthedocs.js +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/migrating/incompatibilities.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/migrating/index.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/migrating/minimum.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/migrating/next_steps.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/migrating/why.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/overrides/main.html +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/overview/alternatives.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/overview/index.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/overview/installation.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/overview/integrating.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/overview/resources.md +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/stylesheets/cmd2.css +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/docs/stylesheets/readthedocs.css +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.cmd2rc +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/@plugins_snapshot.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/_ast.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/_ast.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/_codecs.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/_codecs.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/_collections_abc.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/_collections_abc.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/_typeshed/__init__.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/_typeshed/__init__.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/_typeshed/importlib.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/_typeshed/importlib.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/abc.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/abc.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/argparse.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/argparse.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/builtins.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/builtins.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/codecs.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/codecs.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/collections/__init__.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/collections/__init__.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/collections/abc.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/collections/abc.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/contextlib.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/contextlib.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/dataclasses.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/dataclasses.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/__init__.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/__init__.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/_policybase.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/_policybase.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/charset.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/charset.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/contentmanager.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/contentmanager.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/errors.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/errors.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/header.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/header.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/message.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/message.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/policy.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/email/policy.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/enum.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/enum.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/genericpath.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/genericpath.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/__init__.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/__init__.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/_abc.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/_abc.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/abc.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/abc.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/machinery.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/machinery.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/metadata/__init__.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/metadata/__init__.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/metadata/_meta.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/metadata/_meta.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/readers.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/readers.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/resources/__init__.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/resources/__init__.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/resources/abc.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/importlib/resources/abc.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/io.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/io.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/os/__init__.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/os/__init__.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/os/path.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/os/path.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/pathlib.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/pathlib.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/posixpath.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/posixpath.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/re.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/re.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/resource.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/resource.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/sre_compile.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/sre_compile.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/sre_constants.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/sre_constants.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/sre_parse.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/sre_parse.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/subprocess.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/subprocess.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/sys/__init__.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/sys/__init__.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/sys/_monitoring.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/sys/_monitoring.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/types.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/types.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/typing.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/typing.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/typing_extensions.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/typing_extensions.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/zipfile/__init__.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/zipfile/__init__.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/zipfile/_path.data.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/3.12/zipfile/_path.meta.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/.mypy_cache/CACHEDIR.TAG +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/argparse_completion.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/argparse_example.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/async_printing.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/basic_completion.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/cmd2_history.dat +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/cmd_as_argument.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/color.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/command_sets.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/custom_parser.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/default_categories.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/dynamic_commands.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/environment.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/event_loops.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/exit_code.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/getting_started.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/hello_cmd2.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/help_categories.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/hooks.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/migrating.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/modular_commands/__init__.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/modular_commands/commandset_basic.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/modular_commands/commandset_complex.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/modular_commands/commandset_custominit.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/modular_commands.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/paged_output.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/persistent_history.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/pretty_print.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/python_scripting.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/read_input.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/remove_builtin_commands.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/remove_settable.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/rich_tables.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/rich_theme.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/scripts/arg_printer.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/scripts/conditional.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/scripts/nested.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/scripts/quit.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/scripts/save_help_text.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/scripts/script.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/scripts/script.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/tmux_launch.sh +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/tmux_split.sh +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/transcript_example.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/transcripts/exampleSession.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/transcripts/pirate.transcript +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/transcripts/quit.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/transcripts/transcript_regex.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/examples/unicode_commands.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/package.json +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/setup.cfg +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/.cmd2rc +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/__init__.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/pyscript/echo.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/pyscript/environment.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/pyscript/help.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/pyscript/py_locals.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/pyscript/pyscript_dir.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/pyscript/raises_exception.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/pyscript/recursive.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/pyscript/self_in_py.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/pyscript/stdout_capture.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/pyscript/stop.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/relative_multiple.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/script.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/script.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/scripts/binary.bin +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/scripts/empty.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/scripts/help.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/scripts/nested.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/scripts/one_down.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/scripts/postcmds.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/scripts/precmds.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/scripts/utf8.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_argparse.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_argparse_completer.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_argparse_custom.py +0 -0
- {cmd2-3.0.0b1/tests_isolated/test_commandset → cmd2-3.0.0rc1/tests}/test_argparse_subcommands.py +0 -0
- {cmd2-3.0.0b1/tests_isolated/test_commandset → cmd2-3.0.0rc1/tests}/test_categories.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_cmd2.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_completion.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_future_annotations.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_history.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_parsing.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_plugin.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_rich_utils.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_run_pyscript.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_string_utils.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_terminal_utils.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_transcript.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_utils.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/test_utils_defining_class.py +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/bol_eol.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/characterclass.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/dotstar.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/extension_notation.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/failure.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/from_cmdloop.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/multiline_no_regex.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/multiline_regex.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/no_output.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/no_output_last.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/singleslash.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/slashes_escaped.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/slashslash.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/spaces.txt +0 -0
- {cmd2-3.0.0b1 → cmd2-3.0.0rc1}/tests/transcripts/word_boundaries.txt +0 -0
|
@@ -9,12 +9,12 @@ repos:
|
|
|
9
9
|
- id: trailing-whitespace
|
|
10
10
|
|
|
11
11
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
12
|
-
rev: "v0.13.
|
|
12
|
+
rev: "v0.13.2"
|
|
13
13
|
hooks:
|
|
14
14
|
- id: ruff-format
|
|
15
|
-
args: [--config=
|
|
15
|
+
args: [--config=ruff.toml]
|
|
16
16
|
- id: ruff-check
|
|
17
|
-
args: [--config=
|
|
17
|
+
args: [--config=ruff.toml, --fix, --exit-non-zero-on-fix]
|
|
18
18
|
|
|
19
19
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
20
20
|
rev: "v3.1.0"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## 3.0.0 (TBD, 2025)
|
|
1
|
+
## 3.0.0 (October TBD, 2025)
|
|
2
2
|
|
|
3
3
|
### Summary
|
|
4
4
|
|
|
@@ -24,6 +24,7 @@ time reading the [rich documentation](https://rich.readthedocs.io/).
|
|
|
24
24
|
`value` property
|
|
25
25
|
- Removed redundant setting of a parser's `prog` value in the `with_argparser()` decorator, as
|
|
26
26
|
this is now handled centrally in `Cmd._build_parser()`
|
|
27
|
+
- The `auto_load_commands` argument to `cmd2.Cmd.__init__` now defaults to `False`
|
|
27
28
|
|
|
28
29
|
- Enhancements
|
|
29
30
|
- Enhanced all print methods (`poutput()`, `perror()`, `ppaged()`, etc.) to natively render
|
|
@@ -51,6 +52,12 @@ time reading the [rich documentation](https://rich.readthedocs.io/).
|
|
|
51
52
|
- Fixed a redirection bug where `cmd2` could unintentionally overwrite an application's
|
|
52
53
|
`sys.stdout`
|
|
53
54
|
|
|
55
|
+
- Migration Aids - these will help you iteratively migrate to `cmd2` 3.x in stages
|
|
56
|
+
- Published new [cmd2-ansi](https://pypi.org/project/cmd2-ansi/) module which is a backport of
|
|
57
|
+
the `cmd2.ansi` module present in `cmd2` 2.7.0
|
|
58
|
+
- Published new [cmd2-table](https://pypi.org/project/cmd2-table/) module which is a backport of
|
|
59
|
+
the `cmd2.table_creator` module present in `cmd2` 2.7.0
|
|
60
|
+
|
|
54
61
|
## 2.7.0 (June 30, 2025)
|
|
55
62
|
|
|
56
63
|
- Enhancements
|
|
@@ -34,7 +34,6 @@ typecheck: ## Perform type checking
|
|
|
34
34
|
test: ## Test the code with pytest.
|
|
35
35
|
@echo "🚀 Testing code: Running pytest"
|
|
36
36
|
@uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
|
|
37
|
-
@uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests_isolated
|
|
38
37
|
|
|
39
38
|
.PHONY: docs-test
|
|
40
39
|
docs-test: ## Test if documentation can be built without warnings or errors
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cmd2
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.0rc1
|
|
4
4
|
Summary: cmd2 - quickly build feature-rich and user-friendly interactive command line applications in Python
|
|
5
5
|
Author: cmd2 Contributors
|
|
6
6
|
License-Expression: MIT
|
|
@@ -58,7 +58,8 @@ when using cmd.
|
|
|
58
58
|
|
|
59
59
|
> :warning: **cmd2 is now "feature complete" for the `2.x` branch and is actively working on the
|
|
60
60
|
> 3.0.0 release on the `main` branch. New features will only be addressed in 3.x moving forwards. If
|
|
61
|
-
> need be, we will still fix bugs in 2.x
|
|
61
|
+
> need be, we will still fix bugs in 2.x. A beta version, 3.0.0b2, is available for testing and we
|
|
62
|
+
> would appreciate feedback.**
|
|
62
63
|
|
|
63
64
|
## The developers toolbox
|
|
64
65
|
|
|
@@ -27,7 +27,8 @@ when using cmd.
|
|
|
27
27
|
|
|
28
28
|
> :warning: **cmd2 is now "feature complete" for the `2.x` branch and is actively working on the
|
|
29
29
|
> 3.0.0 release on the `main` branch. New features will only be addressed in 3.x moving forwards. If
|
|
30
|
-
> need be, we will still fix bugs in 2.x
|
|
30
|
+
> need be, we will still fix bugs in 2.x. A beta version, 3.0.0b2, is available for testing and we
|
|
31
|
+
> would appreciate feedback.**
|
|
31
32
|
|
|
32
33
|
## The developers toolbox
|
|
33
34
|
|
|
@@ -323,7 +323,7 @@ class Cmd(cmd.Cmd):
|
|
|
323
323
|
terminators: list[str] | None = None,
|
|
324
324
|
shortcuts: dict[str, str] | None = None,
|
|
325
325
|
command_sets: Iterable[CommandSet] | None = None,
|
|
326
|
-
auto_load_commands: bool =
|
|
326
|
+
auto_load_commands: bool = False,
|
|
327
327
|
allow_clipboard: bool = True,
|
|
328
328
|
suggest_similar_command: bool = False,
|
|
329
329
|
) -> None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cmd2
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.0rc1
|
|
4
4
|
Summary: cmd2 - quickly build feature-rich and user-friendly interactive command line applications in Python
|
|
5
5
|
Author: cmd2 Contributors
|
|
6
6
|
License-Expression: MIT
|
|
@@ -58,7 +58,8 @@ when using cmd.
|
|
|
58
58
|
|
|
59
59
|
> :warning: **cmd2 is now "feature complete" for the `2.x` branch and is actively working on the
|
|
60
60
|
> 3.0.0 release on the `main` branch. New features will only be addressed in 3.x moving forwards. If
|
|
61
|
-
> need be, we will still fix bugs in 2.x
|
|
61
|
+
> need be, we will still fix bugs in 2.x. A beta version, 3.0.0b2, is available for testing and we
|
|
62
|
+
> would appreciate feedback.**
|
|
62
63
|
|
|
63
64
|
## The developers toolbox
|
|
64
65
|
|
|
@@ -12,6 +12,7 @@ codecov.yml
|
|
|
12
12
|
mkdocs.yml
|
|
13
13
|
package.json
|
|
14
14
|
pyproject.toml
|
|
15
|
+
ruff.toml
|
|
15
16
|
tasks.py
|
|
16
17
|
cmd2/__init__.py
|
|
17
18
|
cmd2/argparse_completer.py
|
|
@@ -103,14 +104,14 @@ docs/migrating/index.md
|
|
|
103
104
|
docs/migrating/minimum.md
|
|
104
105
|
docs/migrating/next_steps.md
|
|
105
106
|
docs/migrating/why.md
|
|
107
|
+
docs/mixins/index.md
|
|
108
|
+
docs/mixins/mixin_template.md
|
|
106
109
|
docs/overrides/main.html
|
|
107
110
|
docs/overview/alternatives.md
|
|
108
111
|
docs/overview/index.md
|
|
109
112
|
docs/overview/installation.md
|
|
110
113
|
docs/overview/integrating.md
|
|
111
114
|
docs/overview/resources.md
|
|
112
|
-
docs/plugins/external_test.md
|
|
113
|
-
docs/plugins/index.md
|
|
114
115
|
docs/stylesheets/cmd2.css
|
|
115
116
|
docs/stylesheets/readthedocs.css
|
|
116
117
|
examples/.cmd2rc
|
|
@@ -124,6 +125,7 @@ examples/cmd_as_argument.py
|
|
|
124
125
|
examples/color.py
|
|
125
126
|
examples/command_sets.py
|
|
126
127
|
examples/custom_parser.py
|
|
128
|
+
examples/custom_types.py
|
|
127
129
|
examples/default_categories.py
|
|
128
130
|
examples/dynamic_commands.py
|
|
129
131
|
examples/environment.py
|
|
@@ -134,6 +136,7 @@ examples/hello_cmd2.py
|
|
|
134
136
|
examples/help_categories.py
|
|
135
137
|
examples/hooks.py
|
|
136
138
|
examples/migrating.py
|
|
139
|
+
examples/mixin.py
|
|
137
140
|
examples/modular_commands.py
|
|
138
141
|
examples/paged_output.py
|
|
139
142
|
examples/persistent_history.py
|
|
@@ -265,37 +268,6 @@ examples/transcripts/exampleSession.txt
|
|
|
265
268
|
examples/transcripts/pirate.transcript
|
|
266
269
|
examples/transcripts/quit.txt
|
|
267
270
|
examples/transcripts/transcript_regex.txt
|
|
268
|
-
plugins/README.txt
|
|
269
|
-
plugins/tasks.py
|
|
270
|
-
plugins/ext_test/CHANGELOG.md
|
|
271
|
-
plugins/ext_test/README.md
|
|
272
|
-
plugins/ext_test/build-pyenvs.sh
|
|
273
|
-
plugins/ext_test/noxfile.py
|
|
274
|
-
plugins/ext_test/pyproject.toml
|
|
275
|
-
plugins/ext_test/setup.py
|
|
276
|
-
plugins/ext_test/tasks.py
|
|
277
|
-
plugins/ext_test/cmd2_ext_test/__init__.py
|
|
278
|
-
plugins/ext_test/cmd2_ext_test/cmd2_ext_test.py
|
|
279
|
-
plugins/ext_test/cmd2_ext_test/py.typed
|
|
280
|
-
plugins/ext_test/cmd2_ext_test/pylintrc
|
|
281
|
-
plugins/ext_test/examples/example.py
|
|
282
|
-
plugins/ext_test/tests/__init__.py
|
|
283
|
-
plugins/ext_test/tests/pylintrc
|
|
284
|
-
plugins/ext_test/tests/test_ext_test.py
|
|
285
|
-
plugins/template/CHANGELOG.md
|
|
286
|
-
plugins/template/LICENSE
|
|
287
|
-
plugins/template/README.md
|
|
288
|
-
plugins/template/build-pyenvs.sh
|
|
289
|
-
plugins/template/noxfile.py
|
|
290
|
-
plugins/template/setup.py
|
|
291
|
-
plugins/template/tasks.py
|
|
292
|
-
plugins/template/cmd2_myplugin/__init__.py
|
|
293
|
-
plugins/template/cmd2_myplugin/myplugin.py
|
|
294
|
-
plugins/template/cmd2_myplugin/pylintrc
|
|
295
|
-
plugins/template/examples/example.py
|
|
296
|
-
plugins/template/tests/__init__.py
|
|
297
|
-
plugins/template/tests/pylintrc
|
|
298
|
-
plugins/template/tests/test_myplugin.py
|
|
299
271
|
tests/.cmd2rc
|
|
300
272
|
tests/__init__.py
|
|
301
273
|
tests/conftest.py
|
|
@@ -305,7 +277,10 @@ tests/script.txt
|
|
|
305
277
|
tests/test_argparse.py
|
|
306
278
|
tests/test_argparse_completer.py
|
|
307
279
|
tests/test_argparse_custom.py
|
|
280
|
+
tests/test_argparse_subcommands.py
|
|
281
|
+
tests/test_categories.py
|
|
308
282
|
tests/test_cmd2.py
|
|
283
|
+
tests/test_commandset.py
|
|
309
284
|
tests/test_completion.py
|
|
310
285
|
tests/test_future_annotations.py
|
|
311
286
|
tests/test_history.py
|
|
@@ -350,10 +325,4 @@ tests/transcripts/singleslash.txt
|
|
|
350
325
|
tests/transcripts/slashes_escaped.txt
|
|
351
326
|
tests/transcripts/slashslash.txt
|
|
352
327
|
tests/transcripts/spaces.txt
|
|
353
|
-
tests/transcripts/word_boundaries.txt
|
|
354
|
-
tests_isolated/__init__.py
|
|
355
|
-
tests_isolated/test_commandset/__init__.py
|
|
356
|
-
tests_isolated/test_commandset/conftest.py
|
|
357
|
-
tests_isolated/test_commandset/test_argparse_subcommands.py
|
|
358
|
-
tests_isolated/test_commandset/test_categories.py
|
|
359
|
-
tests_isolated/test_commandset/test_commandset.py
|
|
328
|
+
tests/transcripts/word_boundaries.txt
|
|
@@ -5,13 +5,8 @@ component_management:
|
|
|
5
5
|
name: cmd2 # this is a display name, and can be changed freely
|
|
6
6
|
paths:
|
|
7
7
|
- cmd2/**
|
|
8
|
-
- component_id: plugins
|
|
9
|
-
name: plugins
|
|
10
|
-
paths:
|
|
11
|
-
- plugins/**
|
|
12
8
|
|
|
13
9
|
# Ignore certain paths, all files under these paths will be skipped during processing
|
|
14
10
|
ignore:
|
|
15
11
|
- "examples" # ignore example code folder
|
|
16
12
|
- "tests" # ignore unit test code folder
|
|
17
|
-
- "tests_isolated" # ignore integration test code folder
|
|
@@ -4,18 +4,20 @@
|
|
|
4
4
|
|
|
5
5
|
Cmd2 also enables developers to modularize their command definitions into
|
|
6
6
|
[CommandSet][cmd2.CommandSet] objects. CommandSets represent a logical grouping of commands within a
|
|
7
|
-
`cmd2` application. By default,
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
`cmd2` application. By default, `CommandSet` objects need to be manually registered. However, it is
|
|
8
|
+
possible for all `CommandSet` objects to be discovered and loaded automatically when the
|
|
9
|
+
[cmd2.Cmd][] class is instantiated with this mixin by setting `auto_load_commands=True`. This also
|
|
10
|
+
enables the developer to dynamically add/remove commands from the `cmd2` application. This could be
|
|
11
|
+
useful for loadable plugins that add additional capabilities. Additionally, it allows for
|
|
12
|
+
object-oriented encapsulation and garbage collection of state that is specific to a CommandSet.
|
|
12
13
|
|
|
13
14
|
### Features
|
|
14
15
|
|
|
15
16
|
- Modular Command Sets - Commands can be broken into separate modules rather than in one god class
|
|
16
17
|
holding all commands.
|
|
17
18
|
- Automatic Command Discovery - In your application, merely defining and importing a CommandSet is
|
|
18
|
-
sufficient for `cmd2` to discover and load your command
|
|
19
|
+
sufficient for `cmd2` to discover and load your command if you set `auto_load_commands=True`. No
|
|
20
|
+
manual registration is necessary.
|
|
19
21
|
- Dynamically Loadable/Unloadable Commands - Command functions and CommandSets can both be loaded
|
|
20
22
|
and unloaded dynamically during application execution. This can enable features such as
|
|
21
23
|
dynamically loaded modules that add additional commands.
|
|
@@ -71,7 +73,7 @@ class ExampleApp(cmd2.Cmd):
|
|
|
71
73
|
CommandSets are automatically loaded. Nothing needs to be done.
|
|
72
74
|
"""
|
|
73
75
|
def __init__(self, *args, **kwargs):
|
|
74
|
-
super().__init__(*args, **kwargs)
|
|
76
|
+
super().__init__(*args, auto_load_commands=True, **kwargs)
|
|
75
77
|
|
|
76
78
|
def do_something(self, arg):
|
|
77
79
|
self.poutput('this is the something command')
|
|
@@ -106,7 +108,7 @@ class ExampleApp(cmd2.Cmd):
|
|
|
106
108
|
"""
|
|
107
109
|
def __init__(self, *args, **kwargs):
|
|
108
110
|
# gotta have this or neither the plugin or cmd2 will initialize
|
|
109
|
-
super().__init__(*args, **kwargs)
|
|
111
|
+
super().__init__(*args, auto_load_commands=True, **kwargs)
|
|
110
112
|
|
|
111
113
|
def do_something(self, arg):
|
|
112
114
|
self.last_result = 5
|
|
@@ -289,7 +291,7 @@ class LoadableVegetables(CommandSet):
|
|
|
289
291
|
|
|
290
292
|
class ExampleApp(cmd2.Cmd):
|
|
291
293
|
"""
|
|
292
|
-
CommandSets are
|
|
294
|
+
CommandSets are loaded dynamically at runtime via other commands.
|
|
293
295
|
"""
|
|
294
296
|
|
|
295
297
|
def __init__(self, *args, **kwargs):
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
# cmd2 Mixin Template
|
|
2
|
+
|
|
3
|
+
## Mixin Classes in General
|
|
4
|
+
|
|
5
|
+
In Python, a mixin is a class designed to provide a specific set of functionalities to other classes
|
|
6
|
+
through multiple inheritance. Mixins are not intended to be instantiated on their own; rather, they
|
|
7
|
+
serve as a way to "mix in" or compose behaviors into a base class without creating a rigid "is-a"
|
|
8
|
+
relationship.
|
|
9
|
+
|
|
10
|
+
For more information about Mixin Classes, we recommend this `Real Python` article on
|
|
11
|
+
[What Are Mixin Classes in Python?](https://realpython.com/python-mixin/).
|
|
12
|
+
|
|
13
|
+
## Overview of cmd2 mixins
|
|
14
|
+
|
|
15
|
+
If you have some set of re-usable behaviors that you wish to apply to multiple different `cmd2`
|
|
16
|
+
applications, then creating a mixin class to encapsulate this behavior can be a great idea. It is
|
|
17
|
+
one way to extend `cmd2` by relying on multiple inheritance. It is quick and easy, but there are
|
|
18
|
+
some potential pitfalls you should be aware of so you know how to do it correctly.
|
|
19
|
+
|
|
20
|
+
The [mixins.py](https://github.com/python-cmd2/cmd2/blob/main/examples/mixins.py) example is a
|
|
21
|
+
general example that shows you how you can develop a mixin class for `cmd2` applicaitons. In the
|
|
22
|
+
past we have referred to these as "Plugins", but in retrospect that probably isn't the best name for
|
|
23
|
+
them. They are generally mixin classes that add some extra functionality to your class which
|
|
24
|
+
inherits from [cmd2.Cmd][].
|
|
25
|
+
|
|
26
|
+
## Using this template
|
|
27
|
+
|
|
28
|
+
This file provides a very basic template for how you can create your own cmd2 Mixin class to
|
|
29
|
+
encapsulate re-usable behavior that can be applied to multiple `cmd2` applications via multiple
|
|
30
|
+
inheritance.
|
|
31
|
+
|
|
32
|
+
## Naming
|
|
33
|
+
|
|
34
|
+
If you decide to publish your Mixin as a Python package, you should consider prefixing the name of
|
|
35
|
+
your project with `cmd2-`. If you take this approach, then within that project, you should have a
|
|
36
|
+
package with a prefix of `cmd2_`.
|
|
37
|
+
|
|
38
|
+
## Adding functionality
|
|
39
|
+
|
|
40
|
+
There are many ways to add functionality to `cmd2` using a mixin. A mixin is a class that
|
|
41
|
+
encapsulates and injects code into another class. Developers who use a mixin in their `cmd2`
|
|
42
|
+
project, will inject the mixin's code into their subclass of [cmd2.Cmd][].
|
|
43
|
+
|
|
44
|
+
### Mixin and Initialization
|
|
45
|
+
|
|
46
|
+
The following short example shows how to create a mixin class and how everything gets initialized.
|
|
47
|
+
|
|
48
|
+
Here's the mixin:
|
|
49
|
+
|
|
50
|
+
```python
|
|
51
|
+
class MyMixin:
|
|
52
|
+
def __init__(self, *args, **kwargs):
|
|
53
|
+
# code placed here runs before cmd2.Cmd initializes
|
|
54
|
+
super().__init__(*args, **kwargs)
|
|
55
|
+
# code placed here runs after cmd2.Cmd initializes
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
and an example app which uses the mixin:
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
import cmd2
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
class Example(MyMixin, cmd2.Cmd):
|
|
65
|
+
"""A cmd2 application class to show how to use a mixin class."""
|
|
66
|
+
|
|
67
|
+
def __init__(self, *args, **kwargs):
|
|
68
|
+
# code placed here runs before cmd2.Cmd or
|
|
69
|
+
# any mixins initialize
|
|
70
|
+
super().__init__(*args, **kwargs)
|
|
71
|
+
# code placed here runs after cmd2.Cmd and
|
|
72
|
+
# all mixins have initialized
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Note how the mixin must be inherited (or mixed in) before `cmd2.Cmd`. This is required for two
|
|
76
|
+
reasons:
|
|
77
|
+
|
|
78
|
+
- The `cmd.Cmd.__init__()` method in the python standard library does not call `super().__init__()`.
|
|
79
|
+
Because of this oversight, if you don't inherit from `MyMixin` first, the `MyMixin.__init__()`
|
|
80
|
+
method will never be called.
|
|
81
|
+
- You may want your mixin to be able to override methods from `cmd2.Cmd`. If you mixin the mixin
|
|
82
|
+
class after `cmd2.Cmd`, the python method resolution order will call `cmd2.Cmd` methods before it
|
|
83
|
+
calls those in your mixin.
|
|
84
|
+
|
|
85
|
+
### Add commands
|
|
86
|
+
|
|
87
|
+
Your mixin can add user visible commands. You do it the same way in a mixin that you would in a
|
|
88
|
+
`cmd2.Cmd` app:
|
|
89
|
+
|
|
90
|
+
```python
|
|
91
|
+
class MyMixin:
|
|
92
|
+
|
|
93
|
+
def do_say(self, statement):
|
|
94
|
+
"""Simple say command"""
|
|
95
|
+
self.poutput(statement)
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
You have all the same capabilities within the mixin that you do inside a `cmd2.Cmd` app, including
|
|
99
|
+
argument parsing via decorators and custom help methods.
|
|
100
|
+
|
|
101
|
+
### Add (or hide) settings
|
|
102
|
+
|
|
103
|
+
A mixin may add user controllable settings to the application. Here's an example:
|
|
104
|
+
|
|
105
|
+
```python
|
|
106
|
+
class MyMixin:
|
|
107
|
+
def __init__(self, *args, **kwargs):
|
|
108
|
+
# code placed here runs before cmd2.Cmd initializes
|
|
109
|
+
super().__init__(*args, **kwargs)
|
|
110
|
+
# code placed here runs after cmd2.Cmd initializes
|
|
111
|
+
self.mysetting = 'somevalue'
|
|
112
|
+
self.settable.update({'mysetting': 'short help message for mysetting'})
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
You can also hide settings from the user by removing them from `self.settable`.
|
|
116
|
+
|
|
117
|
+
### Decorators
|
|
118
|
+
|
|
119
|
+
Your mixin can provide a decorator which users of your mixin can use to wrap functionality around
|
|
120
|
+
their own commands.
|
|
121
|
+
|
|
122
|
+
### Override methods
|
|
123
|
+
|
|
124
|
+
Your mixin can override core `cmd2.Cmd` methods, changing their behavior. This approach should be
|
|
125
|
+
used sparingly, because it is very brittle. If a developer chooses to use multiple mixins in their
|
|
126
|
+
application, and several of the mixins override the same method, only the first mixin to be mixed in
|
|
127
|
+
will have the overridden method called.
|
|
128
|
+
|
|
129
|
+
Hooks are a much better approach.
|
|
130
|
+
|
|
131
|
+
### Hooks
|
|
132
|
+
|
|
133
|
+
Mixins can register hooks, which are called by `cmd2.Cmd` during various points in the application
|
|
134
|
+
and command processing lifecycle. Mixins should not override any of the legacy `cmd` hook methods,
|
|
135
|
+
instead they should register their hooks as
|
|
136
|
+
[described](https://cmd2.readthedocs.io/en/latest/hooks.html) in the `cmd2` documentation.
|
|
137
|
+
|
|
138
|
+
You should name your hooks so that they begin with the name of your mixin. Hook methods get mixed
|
|
139
|
+
into the `cmd2` application and this naming convention helps avoid unintentional method overriding.
|
|
140
|
+
|
|
141
|
+
Here's a simple example:
|
|
142
|
+
|
|
143
|
+
```python
|
|
144
|
+
class MyMixin:
|
|
145
|
+
|
|
146
|
+
def __init__(self, *args, **kwargs):
|
|
147
|
+
# code placed here runs before cmd2 initializes
|
|
148
|
+
super().__init__(*args, **kwargs)
|
|
149
|
+
# code placed here runs after cmd2 initializes
|
|
150
|
+
# this is where you register any hook functions
|
|
151
|
+
self.register_postparsing_hook(self.cmd2_mymixin_postparsing_hook)
|
|
152
|
+
|
|
153
|
+
def cmd2_mymixin_postparsing_hook(self, data: cmd2.plugin.PostparsingData) -> cmd2.plugin.PostparsingData:
|
|
154
|
+
"""Method to be called after parsing user input, but before running the command"""
|
|
155
|
+
self.poutput('in postparsing_hook')
|
|
156
|
+
return data
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
Registration allows multiple mixins (or even the application itself) to each inject code to be
|
|
160
|
+
called during the application or command processing lifecycle.
|
|
161
|
+
|
|
162
|
+
See the [cmd2 hook documentation](https://cmd2.readthedocs.io/en/latest/hooks.html) for full details
|
|
163
|
+
of the application and command lifecycle, including all available hooks and the ways hooks can
|
|
164
|
+
influence the lifecycle.
|
|
165
|
+
|
|
166
|
+
### Classes and Functions
|
|
167
|
+
|
|
168
|
+
Your mixin can also provide classes and functions which can be used by developers of `cmd2` based
|
|
169
|
+
applications. Describe these classes and functions in your documentation so users of your mixin will
|
|
170
|
+
know what's available.
|
|
@@ -6,9 +6,10 @@ This covers special considerations when writing unit or integration tests for a
|
|
|
6
6
|
|
|
7
7
|
## Testing Commands
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
We encourage `cmd2` application developers to look at the
|
|
10
|
+
[cmd2 tests](https://github.com/python-cmd2/cmd2/tree/main/tests) for examples of how to perform
|
|
11
|
+
unit and integration testing of `cmd2` commands. There are various helpers that will do things like
|
|
12
|
+
capture and return stdout, stderr, and command-specific result data.
|
|
12
13
|
|
|
13
14
|
## Mocking
|
|
14
15
|
|
|
@@ -20,6 +20,18 @@ The functionality within the `cmd2.ansi` module has either been removed or chang
|
|
|
20
20
|
`rich` and moved to one of the new modules: [cmd2.string_utils][], [cmd2.styles][], or
|
|
21
21
|
[cmd2.terminal_utils][].
|
|
22
22
|
|
|
23
|
+
To ease the migration path from `cmd2` 2.x to 3.x, we have created the `cmd2-ansi` module which is a
|
|
24
|
+
backport of the `cmd2.ansi` module present in `cmd2` 2.7.0 in a standalone fashion. Relevant links:
|
|
25
|
+
|
|
26
|
+
- PyPI: [cmd2-ansi](https://pypi.org/project/cmd2-ansi/)
|
|
27
|
+
- GitHub: [cmd2-ansi](https://github.com/python-cmd2/cmd2-ansi)
|
|
28
|
+
|
|
29
|
+
To use this backport:
|
|
30
|
+
|
|
31
|
+
```Python
|
|
32
|
+
from cmd2_ansi import ansi
|
|
33
|
+
```
|
|
34
|
+
|
|
23
35
|
#### table_creator
|
|
24
36
|
|
|
25
37
|
The `cmd2.table_creator` module no longer exists. Please see rich's documentation on
|
|
@@ -31,6 +43,19 @@ demonstrates how to use `rich` tables in a `cmd2` application.
|
|
|
31
43
|
offered. We apologize for this backwards incompatibility, but the APIs were fundamentally different
|
|
32
44
|
and we could not figure out a way to create a backwards-compatibility wrapper.
|
|
33
45
|
|
|
46
|
+
To ease the migration path from `cmd2` 2.x to 3.x, we have created the `cmd2-table` module which is
|
|
47
|
+
a backport of the `cmd2.table_creator` module present in `cmd2` 2.7.0 in a standalone fashion.
|
|
48
|
+
Relevant links:
|
|
49
|
+
|
|
50
|
+
- PyPI: [cmd2-table](https://pypi.org/project/cmd2-table/)
|
|
51
|
+
- GitHub: [cmd2-table](https://github.com/python-cmd2/cmd2-table)
|
|
52
|
+
|
|
53
|
+
To use this backport:
|
|
54
|
+
|
|
55
|
+
```Python
|
|
56
|
+
from cmd2_table import table_creator
|
|
57
|
+
```
|
|
58
|
+
|
|
34
59
|
### Added modules
|
|
35
60
|
|
|
36
61
|
#### colors
|
|
@@ -106,3 +131,11 @@ however it now inherits from `argparse.HelpFormatter`. If you want RawText behav
|
|
|
106
131
|
The benefit is that your `cmd2` applications now have more aesthetically pleasing help which
|
|
107
132
|
includes color to make it quicker and easier to visually parse help text. This works for all
|
|
108
133
|
supported versions of Python.
|
|
134
|
+
|
|
135
|
+
### Other Changes
|
|
136
|
+
|
|
137
|
+
- The `auto_load_commands` argument to `cmd2.Cmd.__init__` now defaults to `False`
|
|
138
|
+
- Replaced `Settable.get_value()` and `Settable.set_value()` methods with a more Pythonic `value`
|
|
139
|
+
property
|
|
140
|
+
- Removed redundant setting of a parser's `prog` value in the `with_argparser()` decorator, as this
|
|
141
|
+
is now handled centrally in `Cmd._build_parser()`
|
|
@@ -32,6 +32,8 @@ each:
|
|
|
32
32
|
subcommands, etc.
|
|
33
33
|
- [custom_parser.py](https://github.com/python-cmd2/cmd2/blob/main/examples/custom_parser.py)
|
|
34
34
|
- Demonstrates how to create your own custom `Cmd2ArgumentParser`
|
|
35
|
+
- [custom_types.py](https://github.com/python-cmd2/cmd2/blob/main/examples/custom_types.py)
|
|
36
|
+
- Some useful custom argument types
|
|
35
37
|
- [default_categories.py](https://github.com/python-cmd2/cmd2/blob/main/examples/default_categories.py)
|
|
36
38
|
- Demonstrates usage of `@with_default_category` decorator to group and categorize commands and
|
|
37
39
|
`CommandSet` use
|