Skip to main content

A collection of utilities for the Python standard-library argparse module

Project description

argparse_utils

argparse_utils provides a collection of utilities for the Python standard-library argparse module. These utilities assist with parsing command-line arguments to Python objects.

Example

Consider a simple command-line script which accepts a colour as it's only argument, and immediately prints the Python representation of that object.

from argparse import ArgumentParser
from enum import Enum

from argparse_utils import enum_action

class Colours(Enum):
    red = 1
    green = 2
    blue = 3

if __name__ == "__main__":
    parser = ArgumentParser()
    parser.add_argument('colour', action=enum_action(Colours))

    arguments = parser.parse_args()

    print(repr(arguments.colour))
$ argparse_utils_example.py red
<Colours.red: 1>

Without the enum_action action, arguments.colour would be the string 'red', rather than the enum value Colours.red. What's more, the action ensures that only the values given in the enum are allowed, instead of any string value.

Reference

  • mapping_action(possible_values)

    Takes a dictionary whose keys are the allowed values, and maps those values to the values found in the dictionary. Only the values found as keys in the dictionary are allowed as command-line arguments.

    eg. An action of

    mapping_action({
        'red': (255, 0, 0),
        'green': (0, 255, 0),
        'blue': (0, 0, 255)
    })
    

    would map a command-line argument of red to the Python object (255, 0, 0).

  • enum_action(enum_class)

    Takes an Enum class, and maps the string representation of the keys to the appropriate enum value. Only the values found in the enum are allowed as command-line arguments.

    eg. Using the Colour enum, from the first example, an action of

    enum_action(Colour)
    

    would map a command-line argument of red to the enum Colour.red value.

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

argparse_utils-1.1.0.tar.gz (2.3 kB view details)

Uploaded Source

Built Distribution

argparse_utils-1.1.0-py3-none-any.whl (2.9 kB view details)

Uploaded Python 3

File details

Details for the file argparse_utils-1.1.0.tar.gz.

File metadata

  • Download URL: argparse_utils-1.1.0.tar.gz
  • Upload date:
  • Size: 2.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.6.2

File hashes

Hashes for argparse_utils-1.1.0.tar.gz
Algorithm Hash digest
SHA256 408a9046924db27fc0a193ca572c33542dbb4b6167e965941eba950ba6621167
MD5 0adedfe064faea6998eac00e31df171c
BLAKE2b-256 8ba5f3fc4327069c51fe9225829c0c6de754a8d0e1d9d76805f66a5b93f67b11

See more details on using hashes here.

File details

Details for the file argparse_utils-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: argparse_utils-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 2.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.6.2

File hashes

Hashes for argparse_utils-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 248b5bb96955d10e5fa82844dcd6231bfecac8f9ad770739db8b8440dc1656e0
MD5 7b661b40372f8737a4da5781a3326f57
BLAKE2b-256 b31f54144cea362191192367c7e4e13403678de9e595ca514cbad42bacc75589

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