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 pydantic2-argparse

Example

import pydantic
import pydantic2_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 = pydantic2_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

pydantic2_argparse-0.9.1.tar.gz (16.5 kB view details)

Uploaded Source

Built Distribution

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

pydantic2_argparse-0.9.1-py3-none-any.whl (25.4 kB view details)

Uploaded Python 3

File details

Details for the file pydantic2_argparse-0.9.1.tar.gz.

File metadata

  • Download URL: pydantic2_argparse-0.9.1.tar.gz
  • Upload date:
  • Size: 16.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.6 Darwin/23.1.0

File hashes

Hashes for pydantic2_argparse-0.9.1.tar.gz
Algorithm Hash digest
SHA256 6b49f917ff5dc31ef28c14b519d8422a243872125ca70e16348e11c0ed28bcd1
MD5 b25f6f433081a6a3e9119b4e3b6da01d
BLAKE2b-256 fab7899db1613a5005bca504e6a4f71c2e10ae022850515579ad291893c73f67

See more details on using hashes here.

File details

Details for the file pydantic2_argparse-0.9.1-py3-none-any.whl.

File metadata

  • Download URL: pydantic2_argparse-0.9.1-py3-none-any.whl
  • Upload date:
  • Size: 25.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.6 Darwin/23.1.0

File hashes

Hashes for pydantic2_argparse-0.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7a5ec7466c66ced19cd4c557a6aaffd28070a0ce8882f4e5066d3ba1aa32e835
MD5 211f7797ff41061e42a9525db7ff15df
BLAKE2b-256 7f5a05a9787ae607e24976f560dcc5272a321a506eba38221deeca5c6626046d

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