Skip to main content

A wrapper around argparse to get command line argument parsers from dataclasses

Project description

dataparsers

A simple module to wrap around argparse to get command line argument parsers from dataclasses.

Installation

pip install dataparsers

Basic usage

Create a dataclass describing your command line interface, and call parse() with the class:

# prog.py
from dataclasses import dataclass
from dataparsers import parse

@dataclass
class Args:
    foo: str
    bar: int = 42

args = parse(Args)
print("Printing `args`:")
print(args)

The dataclass fields that have a "default" value are turned into optional arguments, while the non default fields will be positional arguments.

The script can then be used in the same way as used with argparse:

$ python prog.py -h
usage: prog.py [-h] [--bar BAR] foo

positional arguments:
  foo

options:
  -h, --help  show this help message and exit
  --bar BAR

And the resulting type of args is Args (recognized by type checkers and autocompletes):

$ python prog.py test --bar 12
Printing `args`:
Args(foo='test', bar=12)

Argument specification

To specify detailed information about each argument, call the arg() function on the dataclass fields:

# prog.py
from dataclasses import dataclass
from dataparsers import parse, arg

@dataclass
class Args:
    foo: str = arg(help="foo help")
    bar: int = arg(default=42, help="bar help")

args = parse(Args)

It allows to customize the interface:

$ python prog.py -h
usage: prog.py [-h] [--bar BAR] foo

positional arguments:
  foo         foo help

options:
  -h, --help  show this help message and exit
  --bar BAR   bar help

In general, the arg() function accepts all parameters that are used in the original add_argument() method (with few exceptions) and some additional parameters. The default keyword argument used above makes the argument optional (i.e., passed with flags like --bar) except in some specific situations.

For more information, see the documentation.

Formalities, features, benefits and drawbacks

This project basically consists of a simple module dataparsers.py with few functions that allows to define typed arguments parsers in a single place, based on dataclasses.

Formalities

The main strategy of the module is based on the same approach of the package datargs, which consists in using the metadata attribute of the dataclass fields to store argument parameters. Some additional features of this project have already been contributed back upstream.

There are a lot of alternative libraries out there that do similar things. The README file of the datargs repository provides a good list for existing solutions and differences. I could also add to that list the libraries Python fire and the package dargparser, just to give few examples.

Features and benefits

Use this project if you want particular added features, such as:

  • Support for argument groups and mutually exclusive argument groups
  • Define all interface in one single place
  • More control over the interface display
  • More control over the argument flag -- creation
  • More similarity with argparse module
  • More simplicity

The simplicity is mentioned because it is just a simple module dataparsers.py that doesn't have any additional dependency (it is pure Python) which can be downloaded directly and placed in your CLI scripts folder to import from.

In deed, the module consists of a 315 lines IPython code cell region (i.e., starts and ends with a #%% line comment block), that can also be placed on top of your "single file" CLI script to directly distribute. The used names are just the few provided functions, the stdlib imports and Class (a TypeVar).

Additionally, this project also provides a stub file (.pyi) that can be used by type checkers but, moreover, may be used by some code editors to give helper documentation including the related docs of argparse methods, which are also provided in this project's documentation, for convenience. The stub file can be downloaded directly but it is installed with the module by default.

Drawbacks

Unlike the datargs package, dataparsers doesn't support:

  • The library attrs (only works with pure python dataclasses)
  • Enums classes
  • Complex types (Sequences, Optionals, and Literals)

If you want any of these features, use the package datargs. If you need the added features of dataparsers, use this module instead.

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

dataparsers-2.1.0.tar.gz (34.7 kB view details)

Uploaded Source

Built Distribution

dataparsers-2.1.0-py3-none-any.whl (36.0 kB view details)

Uploaded Python 3

File details

Details for the file dataparsers-2.1.0.tar.gz.

File metadata

  • Download URL: dataparsers-2.1.0.tar.gz
  • Upload date:
  • Size: 34.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.7 Windows/10

File hashes

Hashes for dataparsers-2.1.0.tar.gz
Algorithm Hash digest
SHA256 e60b83cb587990880031d3074ff15c1341ea0641709e6181b0af41d41e964c79
MD5 5e75594f8b8d813fd1d5a0955a138e44
BLAKE2b-256 c858b78835d66e575a821a70046482d6c19b7aea0f54479f5c763ceaea2097d3

See more details on using hashes here.

File details

Details for the file dataparsers-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: dataparsers-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 36.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.7 Windows/10

File hashes

Hashes for dataparsers-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 97bd5711bff47bc4f61924205d36ff11f6a2775f0cd1cc3bc273f79d5d654924
MD5 a060a9b8abb66f105e361560cca37b91
BLAKE2b-256 94a21472b74ab7a5385bf7315aeaae0174a4dd98db2c359364df5e72b43dd1a8

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