qr-code / myapp /cli /params.py
m3g4p0p's picture
add cli package
63441ff
raw
history blame
429 Bytes
from typing import Any
import click
from PIL import Image
class ImageParamType(click.ParamType):
name = "image"
def convert(
self, value: Any, param: click.Parameter | None, ctx: click.Context | None
) -> Any:
if value is None or isinstance(value, Image.Image):
return value
try:
return Image.open(value)
except OSError as e:
self.fail(str(e))