tagkit.cli.view

Module Contents

Functions

view

View EXIF data for one or more image files. Supports filtering by tag and output as table or JSON.

API

tagkit.cli.view.view(file_or_pattern: str = typer.Argument(..., help='A file path, glob, or regex pattern to match image files.'), glob_mode: bool = typer.Option(False, '--glob', help='Use glob pattern matching for file selection.'), regex_mode: bool = typer.Option(False, '--regex', help='Use regex pattern matching for file selection.'), tags: Optional[str] = typer.Option(None, '--tags', help='Comma separated list of EXIF tag names or IDs to filter.'), thumbnail: bool = typer.Option(False, '--thumbnail', help='Show EXIF tags from image thumbnails instead of main image.'), json: bool = typer.Option(False, '--json', help='Output EXIF data as JSON instead of a table.'), binary_format: Optional[str] = typer.Option(None, '--binary-format', help="How to format binary data: 'bytes' (default), 'hex', or 'base64'.", case_sensitive=False))

View EXIF data for one or more image files. Supports filtering by tag and output as table or JSON.