Classes to implement CLI commands in python
Project description
CLI toolkit for shell command utilities
This module contains modules to implement CLI scripts by wrapping python argparse.ArgumentParser to user friendly utility classes.
Create a script class
Main class to use is the Script class. It will get it's name from sys.argv[0].
Example:
from cli_toolkit.script import Script
if __name__ == '__main__':
script = Script()
script.add_argument('files', nargs='*', help='Files to process')
args = script.parse_args()
for filename in args.files:
script.debug('PROCESSING', filename)
script.message(filename)
Running the example:
> python test.py foo bar
foo
bar
This is pretty straightforward ArgumentParser, except it
- sets SIGINT handler
- adds --debug and --quiet flags
- adds
debug
andmessage
functions which honor the debug and quiet flags
Using script with subcommands
More useful is using a script with subcommands. The subcommands require
at least name
class variable and should have usage
, description
and
epilog
.
You also should implement run
method and call script.run() to run correct
subcommand. Arguments for subcommand parser are registered with method
register_parser_arguments
.
from cli_toolkit.script import Script
from cli_toolkit.command import Command
class ListCommand(Command):
name = 'list'
usage = 'List files'
description = 'Lists files specified on command line'
def register_parser_arguments(self, parser):
parser.add_argument('files', nargs='*', help='Files to process')
def run(self, args):
for filename in args.files:
self.debug('PROCESSING', filename)
self.message(filename)
if __name__ == '__main__':
script = Script()
script.add_subcommand(ListCommand(script))
script.run()
Running the example:
> python test.py list foo bar
foo
bar
Using nested subcommands
The subcommands can be nested. You need to pass the parser in paren't register_parser_subcommand to add_subcommand.
from cli_toolkit.script import Script
from cli_toolkit.command import Command
class FilesCommand(Command):
name = 'demo'
usage = 'Run nested demo subcommands'
def register_parser_arguments(self, parser):
"""
Register 'list' command under demo subcommand
"""
self.add_subcommand(ListCommand(self), parser)
return parser
class ListCommand(Command):
name = 'list'
usage = 'List files'
description = 'Lists files specified on command line'
def register_parser_arguments(self, parser):
"""
Register 'list' command arguments
"""
parser.add_argument('files', nargs='*', help='Files to process')
return parser
def run(self, args):
if not args.files:
self.exit(1, 'No files provided')
for filename in args.files:
self.debug('PROCESSING', filename)
self.message(filename)
if __name__ == '__main__':
script = Script()
script.add_subcommand(FilesCommand(script))
script.run()
Running the example:
> python test.py demo list foo bar
foo
bar
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cli_toolkit-2.5.1.tar.gz
.
File metadata
- Download URL: cli_toolkit-2.5.1.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/22.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d7594079cc8c321e9b6ffecbc3ac98e4a3a1d63432235cff0d89260141165c9 |
|
MD5 | 7775202e10ffeba512dc96ccccbcfbe8 |
|
BLAKE2b-256 | 00f3d87f76091239572f0df03f3e276386ab1905780abe21bbf17f0aee75125f |
File details
Details for the file cli_toolkit-2.5.1-py3-none-any.whl
.
File metadata
- Download URL: cli_toolkit-2.5.1-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/22.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3669b285054cd60b90191db2780e9f8467cc43a5ce48250295896b103740c595 |
|
MD5 | 57ce19b8dcc8c4d6b37183967be8c30c |
|
BLAKE2b-256 | 2dad92878fd978edd574bc6ffed9d73d9ac88136bf82950c7c21d6e9b4bcd242 |