Skip to main content

Declarative CLIs with argparse and dataclasses

Project description

Declarative CLIs with argparse and dataclasses.

https://travis-ci.org/mivade/argparse_dataclass.svg?branch=master PyPI

Features

Features marked with a ✓ are currently implemented; features marked with a ⊘ are not yet implemented.

  • [✓] Positional arguments

  • [✓] Boolean flags

  • [✓] Integer, string, float, and other simple types as arguments

  • [✓] Default values

  • [✓] Arguments with a finite set of choices

  • [⊘] Subcommands

  • [⊘] Mutually exclusive groups

Examples

Using dataclass decorator

>>> from argparse_dataclass import dataclass
>>> @dataclass
... class Options:
...     x: int = 42
...     y: bool = False
...
>>> print(Options.parse_args(['--y']))
Options(x=42, y=True)

A simple parser with flags:

>>> from dataclasses import dataclass
>>> from argparse_dataclass import ArgumentParser
>>> @dataclass
... class Options:
...     verbose: bool
...     other_flag: bool
...
>>> parser = ArgumentParser(Options)
>>> print(parser.parse_args([]))
Options(verbose=False, other_flag=False)
>>> print(parser.parse_args(["--verbose", "--other-flag"]))
Options(verbose=True, other_flag=True)

Using defaults:

>>> from dataclasses import dataclass, field
>>> from argparse_dataclass import ArgumentParser
>>> @dataclass
... class Options:
...     x: int = 1
...     y: int = field(default=2)
...     z: float = field(default_factory=lambda: 3.14)
...
>>> parser = ArgumentParser(Options)
>>> print(parser.parse_args([]))
Options(x=1, y=2, z=3.14)

Enabling choices for an option:

>>> from dataclasses import dataclass, field
>>> from argparse_dataclass import ArgumentParser
>>> @dataclass
... class Options:
...     small_integer: int = field(metadata=dict(choices=[1, 2, 3]))
...
>>> parser = ArgumentParser(Options)
>>> print(parser.parse_args(["--small-integer", "3"]))
Options(small_integer=3)

Using different flag names and positional arguments:

>>> from dataclasses import dataclass, field
>>> from argparse_dataclass import ArgumentParser
>>> @dataclass
... class Options:
...     x: int = field(metadata=dict(args=["-x", "--long-name"]))
...     positional: str = field(metadata=dict(args=["positional"]))
...
>>> parser = ArgumentParser(Options)
>>> print(parser.parse_args(["-x", "0", "positional"]))
Options(x=0, positional='positional')
>>> print(parser.parse_args(["--long-name", 0, "positional"]))
Options(x=0, positional='positional')

Using a custom type converter:

>>> from dataclasses import dataclass, field
>>> from argparse_dataclass import ArgumentParser
>>> @dataclass
... class Options:
...     name: str = field(metadata=dict(type=str.title))
...
>>> parser = ArgumentParser(Options)
>>> print(parser.parse_args(["--name", "john doe"]))
Options(name='John Doe')

Configuring a flag to have a default value of True:

>>> from dataclasses import dataclass, field
>>> from argparse_dataclass import ArgumentParser
>>> @dataclass
... class Options:
...     verbose: bool = True
...     logging: bool = field(default=True, metadata=dict(args=["--logging-off"]))
...
>>> parser = ArgumentParser(Options)
>>> print(parser.parse_args([]))
Options(verbose=True, logging=True)
>>> print(parser.parse_args(["--no-verbose", "--logging-off"]))
Options(verbose=False, logging=False)

Configuring a flag so it is required to set:

>>> from dataclasses import dataclass, field
>>> from argparse_dataclass import ArgumentParser
>>> @dataclass
... class Options:
...     logging: bool = field(metadata=dict(required=True))
...
>>> parser = ArgumentParser(Options)
>>> print(parser.parse_args(["--logging"]))
Options(logging=True)
>>> print(parser.parse_args(["--no-logging"]))
Options(logging=False)

Parsing only the known arguments:

>>> from dataclasses import dataclass, field
>>> from argparse_dataclass import ArgumentParser
>>> @dataclass
... class Options:
...     name: str
...     logging: bool = False
...
>>> parser = ArgumentParser(Options)
>>> print(parser.parse_known_args(["--name", "John", "--other-arg", "foo"]))
(Options(name='John', logging=False), ['--other-arg', 'foo'])

Configuring a field with the Optional generic type:

>>> from dataclasses import dataclass, field
>>> from typing import Optional
>>> from argparse_dataclass import ArgumentParser
>>> @dataclass
... class Options:
...     name: str
...     id: Optional[int] = None
...
>>> parser = ArgumentParser(Options)
>>> print(parser.parse_args(["--name", "John"]))
Options(name='John', id=None)
>>> print(parser.parse_args(["--name", "John", "--id", "1234"]))
Options(name='John', id=1234)

License

MIT License

Copyright (c) 2021 Michael V. DePalatis and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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_dataclass-1.0.0.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

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

argparse_dataclass-1.0.0-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file argparse_dataclass-1.0.0.tar.gz.

File metadata

  • Download URL: argparse_dataclass-1.0.0.tar.gz
  • Upload date:
  • Size: 6.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for argparse_dataclass-1.0.0.tar.gz
Algorithm Hash digest
SHA256 7e06d3590ec56b946de30a2a1a71f387daa45aa2dc1043dbe284afe3eb32345a
MD5 a8f2a0509308193b5424357ebccc6985
BLAKE2b-256 2214e0b7ffd50b53df8999c1ffb96510de6c1be71abbd0dde3c2d72b8b63e2ab

See more details on using hashes here.

File details

Details for the file argparse_dataclass-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for argparse_dataclass-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a9a51b08602b7837de25b738c4efa1bd531581a6ace98b4261b749c70296755f
MD5 fb3c3b152866b009412e90b500798304
BLAKE2b-256 76fac9211150cacd2133f93b42cae48cc6677845d7c6eb5d3e7e7127b643dbd6

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