Skip to main content

This library intends to make command line execution and configuration easy.

Project description

Action and Mnemonic command line library

Travis CI Build Status PyPI Python 3.7

This library intends to make command line execution and configuration easy. The library supports (among other features) an mnemonic centric way to tie a command line an action to a Python 3 handler code segment. Features include:

  • Better command line parsing than optparse. This a binding to from a command line option using an action mnemonic to invocation of a handler.
  • Better application level support for configuration than configparser. Specifically, optional configuration and configuration groups.

Obtaining

The easiest way to obtain this package is via pip:

pip install zensols.actioncli

Binaries are also available on pypi.

Usage

Two ways to use this project follow. The easiest way is to use the template method. Either way, first install the library via pip or easyinstall.

Template

The best way to get started is to template out this project with the following commands:

# clone the boilerplate repo
git clone https://github.com/plandes/template
# download the boilerplate tool
wget https://github.com/plandes/clj-mkproj/releases/download/v0.0.7/mkproj.jar
# create a python template and build it out
java -jar mkproj.jar config -s template/python
java -jar mkproj.jar

Straight Python

If you want to skip templating it out (i.e. don't like Java), create a command line module:

from zensols.actioncli import OneConfPerActionOptionsCli
from zensols.actioncli import SimpleActionCli
from zensols.tools import HelloWorld

VERSION='0.1'

class ConfAppCommandLine(OneConfPerActionOptionsCli):
    def __init__(self):
        cnf = {'executors':
               [{'name': 'hello',
                 'executor': lambda params: HelloWorld(**params),
                 'actions':[{'name': 'doit',
                             'meth': 'print_message',
                             'opts': [['-m', '--message', True, # require argument
                                       {'dest': 'message', 'metavar': 'STRING',
                                        'help': 'a message to print'}]]}]}],
               # uncomment to add a configparse (ini format) configuration file
               # 'config_option': {'name': 'config',
               #                   'opt': ['-c', '--config', False,
               #                           {'dest': 'config', 'metavar': 'FILE',
               #                            'help': 'configuration file'}]},
               'whine': 1}
        super(ConfAppCommandLine, self).__init__(cnf, version=VERSION)

def main():
    cl = ConfAppCommandLine()
    cl.invoke()

This uses the OneConfPerActionOptionsCliEnv class, which provides a data driven way of configuring the action based command line. An extention of this class is the OneConfPerActionOptionsCliEnv class, which imports environment variables and allows adding to the configuration via adding a resource like file (i.e. ~/.<program name>rc) type file. See the

See the command line test cases for more examples.

Changelog

An extensive changelog is available here.

License

Copyright (c) 2018 Paul Landes

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

zensols.actioncli-1.1.5-py3.7.egg (87.6 kB view details)

Uploaded Source

zensols.actioncli-1.1.5-py3-none-any.whl (35.9 kB view details)

Uploaded Python 3

File details

Details for the file zensols.actioncli-1.1.5-py3.7.egg.

File metadata

  • Download URL: zensols.actioncli-1.1.5-py3.7.egg
  • Upload date:
  • Size: 87.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.4

File hashes

Hashes for zensols.actioncli-1.1.5-py3.7.egg
Algorithm Hash digest
SHA256 eae94c2cf6cc8f451474d16256153ca5a516be8f3993170bfd13e37431e747d0
MD5 3531ea85d0db4485386daa220e3bf913
BLAKE2b-256 e851f9f698bdbc0c55dcc1328ab220d557e5ec2405686334b7a7f9f8888ce475

See more details on using hashes here.

File details

Details for the file zensols.actioncli-1.1.5-py3-none-any.whl.

File metadata

  • Download URL: zensols.actioncli-1.1.5-py3-none-any.whl
  • Upload date:
  • Size: 35.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.4

File hashes

Hashes for zensols.actioncli-1.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 f4b59fbfa1e518f9c381a3d0f5d9335ca7e3e2139b72f9184dfd0ab0bcd7ca6b
MD5 aa6499581306109c2e271e340ece57a3
BLAKE2b-256 e91a8d9ea27914e3f46032d3e29d96ee355c0a9a01439265a102304b9fd54fe6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page