├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── begin ├── __init__.py ├── cmdline.py ├── context.py ├── convert.py ├── extensions.py ├── formatters.py ├── main.py ├── subcommands.py ├── utils.py ├── version.py └── wrappable.py ├── docs ├── Makefile ├── _templates │ └── page.html ├── api.rst ├── conf.py ├── examples │ ├── advanced.py │ ├── bottle_quickstart.py │ ├── flags.py │ ├── flask_quickstart.py │ ├── holygrail_py2.py │ ├── holygrail_py3.py │ ├── logger.py │ ├── longargs.py │ ├── multiple_subcommands.py │ ├── ordered.py │ ├── rawhelp.py │ ├── shell.py │ ├── subcommands.py │ ├── tracebacks.py │ └── trivial.py ├── guide.rst ├── index.rst └── tutorial.rst ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── config_test.cfg ├── test_begins.py ├── test_cmdline.py ├── test_context.py ├── test_convert.py ├── test_extensions.py ├── test_formatters.py ├── test_start.py ├── test_subcommands.py └── test_utils.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/README.rst -------------------------------------------------------------------------------- /begin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/begin/__init__.py -------------------------------------------------------------------------------- /begin/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/begin/cmdline.py -------------------------------------------------------------------------------- /begin/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/begin/context.py -------------------------------------------------------------------------------- /begin/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/begin/convert.py -------------------------------------------------------------------------------- /begin/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/begin/extensions.py -------------------------------------------------------------------------------- /begin/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/begin/formatters.py -------------------------------------------------------------------------------- /begin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/begin/main.py -------------------------------------------------------------------------------- /begin/subcommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/begin/subcommands.py -------------------------------------------------------------------------------- /begin/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/begin/utils.py -------------------------------------------------------------------------------- /begin/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.9" 2 | -------------------------------------------------------------------------------- /begin/wrappable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/begin/wrappable.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/_templates/page.html -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples/advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/advanced.py -------------------------------------------------------------------------------- /docs/examples/bottle_quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/bottle_quickstart.py -------------------------------------------------------------------------------- /docs/examples/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/flags.py -------------------------------------------------------------------------------- /docs/examples/flask_quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/flask_quickstart.py -------------------------------------------------------------------------------- /docs/examples/holygrail_py2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/holygrail_py2.py -------------------------------------------------------------------------------- /docs/examples/holygrail_py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/holygrail_py3.py -------------------------------------------------------------------------------- /docs/examples/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/logger.py -------------------------------------------------------------------------------- /docs/examples/longargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/longargs.py -------------------------------------------------------------------------------- /docs/examples/multiple_subcommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/multiple_subcommands.py -------------------------------------------------------------------------------- /docs/examples/ordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/ordered.py -------------------------------------------------------------------------------- /docs/examples/rawhelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/rawhelp.py -------------------------------------------------------------------------------- /docs/examples/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/shell.py -------------------------------------------------------------------------------- /docs/examples/subcommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/subcommands.py -------------------------------------------------------------------------------- /docs/examples/tracebacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/tracebacks.py -------------------------------------------------------------------------------- /docs/examples/trivial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/examples/trivial.py -------------------------------------------------------------------------------- /docs/guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/guide.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/config_test.cfg: -------------------------------------------------------------------------------- 1 | [main] 2 | arg = value 3 | -------------------------------------------------------------------------------- /tests/test_begins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/tests/test_begins.py -------------------------------------------------------------------------------- /tests/test_cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/tests/test_cmdline.py -------------------------------------------------------------------------------- /tests/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/tests/test_context.py -------------------------------------------------------------------------------- /tests/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/tests/test_convert.py -------------------------------------------------------------------------------- /tests/test_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/tests/test_extensions.py -------------------------------------------------------------------------------- /tests/test_formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/tests/test_formatters.py -------------------------------------------------------------------------------- /tests/test_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/tests/test_start.py -------------------------------------------------------------------------------- /tests/test_subcommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/tests/test_subcommands.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/begins/HEAD/tests/test_utils.py --------------------------------------------------------------------------------