Skip to main content

CLI application commands parser

Project description

commandparse

Module to parse command based CLI application.

Usage:

  • Subclass the Command class
  • Add a method with a name such as prefix_commandname with kwargs as required argument
  • Create an ArgumentParser instance
  • Call the Subclass.add_suparsers with the ArgumentParser instance and other settings
  • Use the dispatch_command function with the args returned by parser.parse_args()
parser = ArgumentParser(...)
[...]
Subclass.add_subparsers(parser, prefixes=["get_", "do_", ...], title="commands", description="available commands")

cmd = Subclass(...)
cmd.dispatch_command(commands, args)

See example.py for a more complete example. For a real world application using this lib, see: https://github.com/franc-pentest/ldeep

Project details


Download files

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

Source Distribution

commandparse-1.1.2.tar.gz (5.4 kB view hashes)

Uploaded Source

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