Skip to main content

Typed Argument Parsing with Pydantic

Project description

Pydantic Argparse

Typed Argument Parsing with Pydantic

Help

See documentation for help.

Installation

Installation with pip is simple:

$ pip install pydantic-argparse

Example

import pydantic
import pydantic_argparse


class Arguments(pydantic.BaseModel):
    # Required Args
    string: str = pydantic.Field(description="a required string")
    integer: int = pydantic.Field(description="a required integer")
    flag: bool = pydantic.Field(description="a required flag")

    # Optional Args
    second_flag: bool = pydantic.Field(False, description="an optional flag")
    third_flag: bool = pydantic.Field(True, description="an optional flag")


def main() -> None:
    # Create Parser and Parse Args
    parser = pydantic_argparse.ArgumentParser(
        model=Arguments,
        prog="Example Program",
        description="Example Description",
        version="0.0.1",
        epilog="Example Epilog",
    )
    args = parser.parse_typed_args()

    # Print Args
    print(args)


if __name__ == "__main__":
    main()
$ python3 example.py --help
usage: Example Program [-h] [-v] --string STRING --integer INTEGER --flag |
                       --no-flag [--second-flag] [--no-third-flag]

Example Description

required arguments:
  --string STRING    a required string
  --integer INTEGER  a required integer
  --flag, --no-flag  a required flag

optional arguments:
  --second-flag      an optional flag (default: False)
  --no-third-flag    an optional flag (default: True)

help:
  -h, --help         show this help message and exit
  -v, --version      show program's version number and exit

Example Epilog
$ python3 example.py --string hello --integer 42 --flag
string='hello' integer=42 flag=True second_flag=False third_flag=True

License

This project is licensed under the terms of the MIT license.

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

pydantic-argparse-0.6.0.tar.gz (15.3 kB view details)

Uploaded Source

Built Distribution

pydantic_argparse-0.6.0-py3-none-any.whl (19.8 kB view details)

Uploaded Python 3

File details

Details for the file pydantic-argparse-0.6.0.tar.gz.

File metadata

  • Download URL: pydantic-argparse-0.6.0.tar.gz
  • Upload date:
  • Size: 15.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.1 CPython/3.10.2 Linux/5.15.0-52-generic

File hashes

Hashes for pydantic-argparse-0.6.0.tar.gz
Algorithm Hash digest
SHA256 037be8cb8858a9897bbec033294553f74f8bf002bd171434c482e9ba00ff9c26
MD5 ccf8d9768a6e8f53113ffa109a5be6a3
BLAKE2b-256 4dd6cabac586cd3ec69a6558f5a3bb85436d7f594db588d69d684e6dd5f31e7b

See more details on using hashes here.

File details

Details for the file pydantic_argparse-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: pydantic_argparse-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 19.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.1 CPython/3.10.2 Linux/5.15.0-52-generic

File hashes

Hashes for pydantic_argparse-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 142a4ce4bf11269de910487a4242e16ef903c8ccb1e6e9c659252b8b1f463f8a
MD5 f3860877da5b1f661c6a48fdb32252dd
BLAKE2b-256 1f566e669410187dacbd20b0b9dec1e2bf44cc3d02d5a888147a4b2503041e20

See more details on using hashes here.

Supported by

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