├── .coveragerc ├── .flake8 ├── .github └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── activate.sh ├── easycli ├── __init__.py ├── argument.py ├── colors.py ├── command.py ├── completion.py ├── progressbar.py └── root.py ├── examples ├── progressbar.py └── quickstart.py ├── setup.py ├── sphinx ├── Makefile ├── _static │ └── style.css ├── _templates │ └── layout.html ├── apireference.rst ├── conf.py ├── index.rst ├── progressbar.rst └── tutorial.rst └── tests ├── __init__.py ├── test_completion.py ├── test_mutex.py ├── test_simple.py └── test_subcommand.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/README.md -------------------------------------------------------------------------------- /activate.sh: -------------------------------------------------------------------------------- 1 | /usr/local/lib/python-makelib/activate.sh -------------------------------------------------------------------------------- /easycli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/easycli/__init__.py -------------------------------------------------------------------------------- /easycli/argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/easycli/argument.py -------------------------------------------------------------------------------- /easycli/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/easycli/colors.py -------------------------------------------------------------------------------- /easycli/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/easycli/command.py -------------------------------------------------------------------------------- /easycli/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/easycli/completion.py -------------------------------------------------------------------------------- /easycli/progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/easycli/progressbar.py -------------------------------------------------------------------------------- /easycli/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/easycli/root.py -------------------------------------------------------------------------------- /examples/progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/examples/progressbar.py -------------------------------------------------------------------------------- /examples/quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/examples/quickstart.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/setup.py -------------------------------------------------------------------------------- /sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/sphinx/Makefile -------------------------------------------------------------------------------- /sphinx/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/sphinx/_static/style.css -------------------------------------------------------------------------------- /sphinx/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/sphinx/_templates/layout.html -------------------------------------------------------------------------------- /sphinx/apireference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/sphinx/apireference.rst -------------------------------------------------------------------------------- /sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/sphinx/conf.py -------------------------------------------------------------------------------- /sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/sphinx/index.rst -------------------------------------------------------------------------------- /sphinx/progressbar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/sphinx/progressbar.rst -------------------------------------------------------------------------------- /sphinx/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/sphinx/tutorial.rst -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/tests/test_completion.py -------------------------------------------------------------------------------- /tests/test_mutex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/tests/test_mutex.py -------------------------------------------------------------------------------- /tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/tests/test_simple.py -------------------------------------------------------------------------------- /tests/test_subcommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylover/easycli/HEAD/tests/test_subcommand.py --------------------------------------------------------------------------------