Skip to main content

A drop-in replacement for `argparse` dispatching subcommand calls to functions, modules or binaries.

Project description

If your parser has a few subcommands, you can parse them with argparse. If you have more, you still can, but you will get a huge, unreadable code. This module makes this easier by dispatching subcommand calls to functions, modules or binaries.

Examples

Example 1 : Manual definition of subcommands

For instance, consider the following code for mycommand.py:

import sys
from argdispatch import ArgumentParser

def foo(args):
    """A function associated to subcommand `foo`."""
    print("Doing interesting stuff")
    sys.exit(1)

if __name__ == "__main__":
    parser = ArgumentParser()
    subparser = parser.add_subparsers()

    subparser.add_function(foo)
    subparser.add_module("bar")
    subparser.add_executable("baz")

     parser.parse_args()

With this simple code:

  • mycommand.py foo -v --arg=2 is equivalent to the python code foo(['-v', '--arg=2']);

  • mycommand.py bar -v --arg=2 is equivalent to python -m bar -v --arg=2;

  • mycommand.py baz -v --arg=2 is equivalent to baz -v --arg=2.

Then, each function, module or binary does whatever it wants with the arguments.

Example 2 : Automatic definition of subcommands

With programs like git, if a git-foo binary exists, then calling git foo --some=arguments is equivalent to git-foo --some=arguments. The following code, in myprogram.py copies this behaviour:

import sys
from argdispatch import ArgumentParser

if __name__ == "__main__":
    parser = ArgumentParser()
    subparser = parser.add_subparsers()

    subparser.add_submodules("myprogram")
    subparser.add_prefix_executables("myprogram-")

    parser.parse_args()

With this program, given that binary myprogram-foo and python module myprogram.bar.__main__.py exist:

  • myprogram foo -v --arg=2 is equivalent to myprogram-foo -v --arg=2;

  • myprogram bar -v --arg=2 is equivalent to python -m myprogram.bar -v --arg=2.

Example 3 : Defining subcommands with entry points

Now that your program is popular, people start writing plugins. Great! You want to allow them to add subcommands to your program. To do so, simply use this code:

import sys
from argdispatch import ArgumentParser

if __name__ == "__main__":
    parser = ArgumentParser()
    subparser = parser.add_subparsers()

    # You probably should only have one of those.
    subparser.add_entrypoints_functions("myprogram.subcommand.function")
    subparser.add_entrypoints_modules("myprogram.subcommand.module")

    parser.parse_args()

With this code, plugin writers can add lines like those in their setup.cfg:

[options.entry_points]
myprogram.subcommand.function =
    foo = mypluginfoo:myfunction
myprogram.subcommand.module =
    bar = mypluginbar

Then, given than function myfunction() exists in module mypluginfoo, and than module mypluginbar exists:

  • myprogram foo -v --arg=2 is equivalent to the python code myfunction(['-v', '--arg=2']);

  • myprogram bar -v --arg=2 is equivalent to python -m mypluginbar -v --arg=2.

Documentation

The complete documentation is available on readthedocs.

To compile it from source, download and run:

cd doc && make html

What’s new?

See changelog.

Download and install

  • From sources:

  • From pip:

    pip install argdispatch
  • Quick and dirty Debian (and Ubuntu?) package

    This requires stdeb to be installed:

    python3 setup.py --command-packages=stdeb.command bdist_deb
    sudo dpkg -i deb_dist/argdispatch-<VERSION>_all.deb

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

argdispatch-1.4.2.tar.gz (42.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

argdispatch-1.4.2-py3-none-any.whl (21.9 kB view details)

Uploaded Python 3

File details

Details for the file argdispatch-1.4.2.tar.gz.

File metadata

  • Download URL: argdispatch-1.4.2.tar.gz
  • Upload date:
  • Size: 42.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for argdispatch-1.4.2.tar.gz
Algorithm Hash digest
SHA256 947ab0ef0ae2e586fb7bc45fb3b2e1397646c90ef4a208523883833f1daf3d99
MD5 02cdf5ee678d04033f44d8da8a71d5bc
BLAKE2b-256 900deee075dc63e0c24ccde8cd5c4cf92aef0c20e2a80ca7d7e24710dc2a4f64

See more details on using hashes here.

File details

Details for the file argdispatch-1.4.2-py3-none-any.whl.

File metadata

  • Download URL: argdispatch-1.4.2-py3-none-any.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for argdispatch-1.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8c9407f8b12493543d154ca4f916203b7b00c1e98b6e9f81b580bfdfa274d49d
MD5 b7163243d214309259982c60b670ca6b
BLAKE2b-256 48494154f65bf1bf7ac4677fe7501051c5206e8ed2f06dfe1716d8c7083537ca

See more details on using hashes here.

Supported by

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