Skip to main content

Declaratively connect cli and config definition using pydantic

Project description

clonf

PyPI version GitHub license PyPI - Downloads

Declaratively connect cli and config definition using pydantic.

Why another?

There are a lot of tools out there which try to bring cli libraries and pydantic together, but they all seem to forget that more sophisticated applications need to be controlled via configuration files as well. clonf tries to solve this problem by focusing on compatibility with pydantic-settings and its configuration sources. This allows having a single source of truth for cli and configuration definition. clonf uses composition rather than inheritance and utilizes logic from pydantic and pydantic-settings to achieve this with as much simplicity and flexibility as possible. First versions focus on integration with click, but other cli libraries might receive interfaces as well in the future.

Key differences to other pydantic x cli libraries

  • CLI behavior is opt-in.
  • As much as possible is done via annotations. Combined with pydantic best practices, this encourages creating a single source of truth inside your codebase.

Installation

clonf can be installed via pip or your favorite python package manager with different extras:

pip install clonf[all,click,settings]

Creating a CLI

click

Quickstart

from pydantic import BaseModel
from clonf import clonf_click, CliArgument, CliOption
from typing import Annotated
import click


class Arguments(BaseModel):
    name: Annotated[str, CliArgument()]


class Options(BaseModel):
    greeting: Annotated[str, CliOption()] = "Hello"


@click.command
@clonf_click
def cli(arguments: Arguments, options: Options) -> None:
    click.echo(f"{options.greeting} {arguments.name}")


if __name__ == "__main__":
    cli()

Using click types

Similar to pydanclick, the following types will be converted automatically:

Python type Click type
bool click.BOOL
str click.STRING
int click.INT
float click.FLOAT
Annotated[int, Field(lt=..., ge=...) click.IntRange()
Annotated[float, Field(lt=..., ge=...) click.FloatRange()
pathlib.Path click.Path()
uuid.UUID click.UUID
datetime.datetime, datetime.date click.DateTime()
Literal click.Choice

Additionally, custom click types can be passed via annotations to have finer control over the resulting click type:

from pydantic import BaseModel
from typing import Annotated
from clonf import CliArgument
import pathlib
import click

class Config(BaseModel):
    file_path: Annotated[pathlib.Path, CliArgument(), click.Path(exists=True)]

Contributing

This project uses PDM as a package manager and pre-commit for linting before commits.

Read more about the tools and how to use them:

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

clonf-0.1.2.tar.gz (8.1 kB view details)

Uploaded Source

Built Distribution

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

clonf-0.1.2-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file clonf-0.1.2.tar.gz.

File metadata

  • Download URL: clonf-0.1.2.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: pdm/2.24.1 CPython/3.13.3 Linux/6.11.0-1013-azure

File hashes

Hashes for clonf-0.1.2.tar.gz
Algorithm Hash digest
SHA256 5ab5574cb0a5e5b29fd7e4755fb966afbc28d19802780b0bd4b64d05768cbd08
MD5 292b8dab8036a51e1f3b09f6d66a7be0
BLAKE2b-256 2ccc27466a8c41e7d55e8c36bd3777bb975702ee3f73717eea07ac7a6785a18d

See more details on using hashes here.

File details

Details for the file clonf-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: clonf-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: pdm/2.24.1 CPython/3.13.3 Linux/6.11.0-1013-azure

File hashes

Hashes for clonf-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2f3451add70ce5cfe88c5591e336f30c33217a0b67ed983ca9225f8d6cdc1e7a
MD5 aade4ffec4afe93ab8cab8c91f52c9eb
BLAKE2b-256 47da9ed7956972c500a9d5d3461b8983c9d5d7200d569577b603898f1af6276d

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