Skip to main content

Render images from a declarative YAML/dict spec — shapes, text, charts, QR/barcodes — for e-paper ESL tags and label printers.

Project description

imagespec

Render images from a declarative YAML/dict spec — shapes, text, charts, QR/barcodes — for e-paper ESL tags and label printers.

imagespec Showcase

This is the shared rendering core extracted from hass-gicisky and hass-niimbot. Both integrations had near-identical renderers that had drifted apart; imagespec unifies them and removes the Home Assistant dependency so the engine can be reused and tested standalone. The rendering engine itself was originally adapted from OpenEPaperLink's Home Assistant Integration (imagegen module, Apache License 2.0) and has since been substantially rewritten and extended — see NOTICE for the full attribution.

Status

29 elements (21 ported + 8 new) rendering, with a 128-test suite. Architecture (HA-decoupled context, registry dispatch, device-specific rotation

  • palette) is in place. Remaining work is packaging polish and switching the two components over to it.

Design

  • No framework dependency. The core never imports Home Assistant. Anything host-specific is injected through RenderContext:

    • font_resolver(name) -> path | None — e.g. an integration's hass.config.path("www/fonts") lookup.
    • history_provider(entity_ids, start, end) -> states — for the plot element (HA recorder). Optional.
    • palette — the device's supported colors (see below).
  • Registry dispatch. Each element type is a handler registered with @element("type") in imagespec/elements/, replacing the original giant if/elif chain. Adding an element = adding a function.

  • RenderState. Threaded through handlers; holds the (reassignable) img and the pos_y flow cursor.

  • Device-dependent palette (RenderContext.palette), not unified — panels support different colors. Define it as a list of the colors the device supports (names, HEX, or RGBA tuples):

    RenderContext(palette=["black", "white", "red"])          # names
    RenderContext(palette=["#000000", "#ffffff", "#ff0000"])  # HEX
    RenderContext(palette=[(0, 0, 0), (255, 255, 255)])       # RGBA tuples
    

    Shorthand names are optional convenience for common panels: "2"/"bw", "3"/"bwr", "4", "7"/"acep". Any requested color in a payload is then quantized to the nearest color in this list — on a 2-color device red becomes black; on 4-color a blue #1e90ff becomes white; on 7-color it stays blue. Elements are drawn in full color and this mapping is applied to the whole image once at the end of render() (dithered or flat, per dither — see Dithering).

  • Merged behaviour. Where the two sources differed, the superset wins:

    • qrcode gains eclevel (niimbot)
  • Device-dependent rotation (rotate_mode), not unified — both behaviours are kept because they are physically different:

    • "canvas" (gicisky): background/canvas rotates; output stays width×height (fixed-resolution e-ink panel).
    • "image" (niimbot): drawing rotates; output dimensions swap (variable-size label printer).

Usage

from imagespec import render, RenderContext

ctx = RenderContext(
    font_resolver=my_font_lookup,        # optional
    history_provider=my_history_lookup,  # optional, only for `plot`
)
image = render(payload, width=296, height=128, rotate=0,
               background="white", context=ctx)   # -> PIL.Image (RGB)

Run the smoke test (no fonts required):

pip install -e .
python examples/smoke_test.py

Development & testing

pip install -e ".[dev,datamatrix]"
pytest                 # 128 tests: every element, palettes, rotation, dither, errors
ruff check . && ruff format --check .   # lint + format
python -m build        # build sdist + wheel (bundles fonts/icons)

CI runs on every push/PR (.github/workflows/ci.yml): ruff lint+format, the test suite on Python 3.11/3.12/3.13, and a build that asserts the bundled fonts/icons are present in the wheel. Pushing a v* tag triggers .github/workflows/release.yml to build and publish to PyPI (trusted publishing).

The test matrix (tests/test_elements.py) asserts it covers every registered element type, so adding a new @element(...) without a sample fails the suite — keeping coverage exhaustive by construction.

Robustness built in:

  • Each handler error is wrapped with element context — you get error rendering element #3 (type 'text'): ..., not a raw PIL traceback.
  • render() validates rotate/rotate_mode/size and rejects non-dict elements; unknown element types are warned-and-skipped.
  • dlimg only allows http(s)/data: URLs by default; local paths require RenderContext(allow_local_images=True). Network failures become RenderError.
  • Clear errors for missing required args, invalid barcode symbology, malformed polygon points, and a diagram too small for its bars.

Elements

All ported from the original renderers (superset behaviour where they differed):

Preview Element Module Notes
line shapes + dashed lines
rectangle shapes
rectangle_pattern shapes
circle shapes
ellipse shapes
arc shapes
polygon shapes
gauge shapes
text text + rotation, background box
text_box text
multiline text
new_multiline text fit-to-width/height autosize (niimbot)
text_fit text fit text into a fixed box: shrink font / ellipsis / wrap
table text
qrcode codes + eclevel (niimbot)
barcode codes
datamatrix codes optional dep pyStrich (imagespec[datamatrix])
icon media Material Design Icons (default) + Font Awesome Free (fa:/fas:/far:/fab:); needs bundled icons/ assets
dlimg media + fit modes (stretch/fit/fill/contain)
diagram charts bar chart
plot charts needs history_provider; + area_fill, xlegend
progress_bar charts + rounded corners
pie charts new — pie / donut (inner_radius)
sparkline charts new — compact axis-less line from inline values
rich_text text new — inline spans: icon + text + color on one line
group layout new — container: child elements at an offset, clipped, optionally rotated
stack / row / column layout new — auto-layout: packs children along an axis (gap/padding/justify/align), flexbox-style, with optional Tailwind-like class shorthand
legend widgets new — color-swatch ↔ label rows (vertical/horizontal) for pie/plot
star_rating widgets new — full/half/empty stars for rating labels
battery widgets new — vector battery gauge with proportional fill

Plus enhancements: render(..., dither=True) dithers the whole output and any element can carry its own dither: true/false to override it just for itself (Floyd–Steinberg to palette); dlimg also gained circle/mask (circular crop); text_fit fits text into a fixed box (shrink / ellipsis / wrap).

Payload Specification & Element Reference

Payloads are specified as a list (sequence) of dictionary elements, which can be easily authored in YAML or JSON. Each element requires a type string and varying geometric/styling attributes.

[!TIP] Generating payloads with an LLM? See docs/authoring.md — a self-contained authoring guide you can paste straight into an AI's context. It covers the output contract, the layout decision model (stack/row/column vs group vs absolute coordinates), the Tailwind-like class shorthand, common pitfalls (e.g. the YAML "one key per line" trap), device canvas sizes, and full worked examples — every example verified by actually rendering it.

Common Attributes

  • Colors: Supported color specifications include names (e.g., "black", "white", "red", "green", "blue", "orange", "yellow") or HEX strings (e.g., "#FF0000"). Colors are automatically quantized to the host device's palette.
  • Coordinates: Standard 2D cartesian coordinate system starting at (0, 0) at the top-left corner.

Elements Reference

Shapes & Vector Elements

  • line: Draws a line path.
    • x_start, y_start, x_end, y_end (int, required)
    • fill (color, default: "black")
    • width (int, default: 1)
    • dash (list of integers, e.g. [4, 4], optional)
  • rectangle: Draws a square or rectangle.
    • x_start, y_start, x_end, y_end (int, required)
    • fill (color, optional)
    • outline (color, default: "black")
    • width (int, default: 1)
    • radius (int, rounded corner radius, default: 0)
  • circle: Draws a circle.
    • x, y (int center, required), radius (int, required)
    • fill, outline, width (optional)
  • ellipse: Draws an ellipse.
    • x_start, y_start, x_end, y_end (int, required)
    • fill, outline, width (optional)
  • polygon: Draws a custom polygon path.
    • points (string, list of coordinates separated by semicolons: "x1,y1;x2,y2;x3,y3", required)
    • fill, outline, width (optional)
  • arc: Draws a curved arc path.
    • x_start, y_start, x_end, y_end (int bounding box, required)
    • start_angle, end_angle (int degrees, e.g., 0 to 180 for bottom semi-circle, required)
    • outline, width (optional)
  • rectangle_pattern: Fills a grid area with a repeating pixel dot-matrix pattern.
    • x_start, y_start (int, required)
    • x_size, y_size (int module size, required)
    • x_repeat, y_repeat (int repetitions, required)
    • x_offset, y_offset (int spacing between modules, required)
    • fill (color, required)

Text & Typography

  • text: Standard single-line text layer.
    • x, y (int anchor position, required)
    • value (string to print, required)
    • color (default: "black"), size (default: 12), font (string name, optional)
    • anchor (string PIL anchor alignment, e.g. "lt", "mm", "ma", optional)
  • text_fit: Fits text dynamically inside a fixed box by wrapping and shrinking.
    • x, y, width, height (int box boundaries, required)
    • value (string text, required)
    • size (int start size, default: 20)
    • min_size (int minimum shrink size, default: 8)
    • max_lines (int max lines, default: 1)
    • fit (string shrink behavior: "shrink", "ellipsis", "shrink_ellipsis", default: "shrink")
    • padding (int, default: 0), background, outline, radius (optional)
  • rich_text: Draws a single line of text with mixed formatting (text, icons, colors, sizes) side-by-side.
    • x, y (int, required)
    • spans (list of span dicts: [{"text": "Temp: "}, {"icon": "mdi:fire", "color": "orange"}], required) — icon accepts the same mdi:/fa:/fas:/far:/fab: names as the icon element
    • size (default: 12), align (left/right/center, default: "left")
  • table: Renders a simple structured table.
    • x, y (int top-left, required)
    • columns (list of column width integers, required)
    • rows (list of lists of strings, required)
    • font_size (default: 9), header_fill, header_color, cell_color, align, row_height

Gauges & Charts

  • gauge: Renders a circular gauge indicator.
    • x, y (int center, required), radius (int, required)
    • progress (int 0-100 percentage value, required)
    • fill (progress color), outline (background track color), width (optional)
  • progress_bar: Renders a linear progress bar.
    • x_start, y_start, x_end, y_end (int bounding box, required)
    • progress (int 0-100 percentage value, required)
    • direction ("right", "left", "up", "down", default: "right")
    • fill, background, outline, width, radius, show_percentage (bool, optional)
  • sparkline: Renders a compact axis-less line chart.
    • x, y (int top-left, required), width, height (int, required)
    • values (list of floats, required)
    • color (line color), fill (area color below line), width_line, dot_last (bool, optional)
  • pie: Renders a pie or donut chart segment.
    • x, y (int center, required), radius (int, required)
    • values (string semicolon-separated: "Gas,30,orange;Water,25,blue", required)
    • inner_radius (int inner donut hole radius, optional)
  • diagram: Renders a bar chart.
    • x, y (int top-left, required), width, height (int, required)
    • bars (dict: {"values": "Jan,45;Feb,75", "color": "blue"}, required)
    • margin (int chart padding, default: 20)

Machine-Readable Codes & Media

  • qrcode: Generates a QR Code.
    • x, y (int top-left, required)
    • data (string, required)
    • boxsize (int pixels per module, default: 2), or width/height (int px box — the code is scaled square & crisp to fit it, for predictable layout)
    • color, bgcolor, border, eclevel ("l", "m", "q", "h", optional)
  • barcode: Generates a standard linear barcode.
    • x, y (int top-left, required)
    • data (string, required)
    • code (string format, e.g. "code128", "ean13", default: "code128")
    • Sizing (easy, pixel-based): width and/or height (int px) — scales the barcode to fit that box at (x, y), like dlimg/icon. Give one to scale proportionally, or both for an exact box. This is the recommended way to place a barcode predictably.
    • Sizing (physical, advanced): when width/height are omitted it uses python-barcode's millimetre options — module_width (float mm, default 0.2), module_height (float mm, default 7.0), quiet_zone (float mm, default 6.5) rendered at dpi (int, default 300). Pixel size then depends on the DPI.
    • color, bgcolor (quantized to the palette), font_size, text_distance, write_text (bool, default true) — optional.
  • datamatrix: Generates a DataMatrix 2D code (needs the datamatrix extra).
    • x, y, data (required)
    • boxsize (int pixels per cell, default: 2), or width/height (int px box — scaled square & crisp to fit, like qrcode)
    • color, bgcolor (optional)
  • icon: Renders a vector icon from Material Design Icons or Font Awesome Free.
    • x, y (int top-left, required)
    • value (string slug, required) — "mdi:home" (or a bare name, e.g. "home", for backward compatibility) for Material Design Icons; "fa:home" / "fas:home" (solid) / "far:star" (regular) / "fab:github" (brands) for Font Awesome Free. Plain "fa:" auto-picks solid > regular > brands.
    • size (int, default: 24), color (optional)
  • dlimg: Downloads and renders an external image (with fit and dithering).
    • x, y, xsize, ysize (int box, required)
    • url (http/https or base64 data: url, required; local paths need RenderContext(allow_local_images=True))
    • mode ("stretch", "fit", "fill", "contain", default: "stretch")
    • rotate (int degrees, optional), timeout (seconds, default: 30)
    • dither (bool, optional), mask ("circle", optional; or circle: true)

Layout / Auto-layout

  • group: Container that renders children at an offset, clipped to its box, optionally rotated.

    • x, y (int offset, default 0), width, height (int clip box, default: canvas), rotate (90/180/270, optional)
    • elements (list of child element dicts, required) — children use coordinates relative to the group.
  • stack (aliases row = horizontal, column = vertical): Auto-layout container that packs its children along an axis so they need no explicit coordinates — the stack measures each child's drawn size and positions it. Purely additive: children are still drawn by their normal handlers, so any element can be a child, and absolute-coordinate payloads outside a stack are unaffected.

    • elements (list of child element dicts, required)
    • direction ("vertical" / "horizontal", default: "vertical"; row/column set this)
    • gap (int px between children, default: 0)
    • padding (int, all sides) or padding_x/padding_y/padding_top/padding_right/padding_bottom/padding_left
    • justify (main-axis distribution: "start", "end", "center", "between", "around", "evenly", default: "start")
    • align (cross-axis item alignment: "start", "end", "center", default: "start")
    • x, y (int offset of the whole stack, default 0), width, height (int box, default: canvas), rotate (optional)
    • Per-child layout via the child's own class string or a layout: {...} sub-dict (kept separate from the child's drawing keys so e.g. a diagram's own margin is never confused for a layout margin): grow (int, share of leftover main-axis space), self ("start"/"end"/"center" cross-axis override), margin/margin_x/margin_y/margin_<side> (int px).
    • class shorthand (optional, Tailwind-like — desugars to the keys above; explicit keys win). Only the layout subset is recognized; styling/colour classes are ignored (those stay on each element's own keys).
      • container: flex-row / flex-col, gap-N, p-N / px-N / py-N / pt-N / pr-N / pb-N / pl-N, justify-start|end|center|between|around|evenly, items-start|end|center
      • child: grow / flex-1 / grow-N, self-start|end|center, m-N / mx-N / my-N / mt-N / mr-N / mb-N / ml-N
      • Spacing scale = real Tailwind, not raw pixels: a unit is N × 4px (gap-2 → 8px, p-4 → 16px, mt-0.5 → 2px). For exact pixels use the arbitrary value form gap-[10] / p-[3px]. Margins may be negative (-mt-2 → -8px, -ml-[3] → -3px) for fine nudges; padding/gap cannot.
    - type: row                     # horizontal auto-layout
      x: 8
      y: 8
      class: "gap-2 items-center"    # gap-2 = 8px, vertically centered
      elements:
        - { type: icon, value: "mdi:thermometer", size: 18, color: red }
        - { type: text, value: "24°C", size: 16 }       # no x/y needed
        - { type: battery, width: 30, height: 14, level: 72, class: "ml-2" }
    

Widgets

  • legend: Draws color-swatch ↔ label rows (companion to pie/plot).
    • x, y (int top-left, required)
    • items (required) — list of {"label": ..., "color": ..., "icon": ...} dicts (icon accepts mdi:/fa:/fas:/far:/fab: names, same as icon), or a "label,color;label,color" string
    • orientation ("vertical" / "horizontal", default: "vertical")
    • shape ("square" / "circle" / "line", default: "square")
    • size (font size, default: 12), swatch_size, gap, spacing (optional)
  • star_rating: Renders a star rating.
    • x, y (int top-left, required)
    • rating (float, required), max (int stars, default: 5)
    • size (int, default: 16), color (filled, default: "orange"), empty_color, spacing
    • half (bool half-stars, default: true)
  • battery: Vector battery gauge with a proportional fill.
    • x, y, width, height (int box, required)
    • level (int/float 0-100, required)
    • fill, background, outline, radius, padding (optional)
    • low_threshold (int, default: 20), low_color (swap fill at/below threshold, optional)
    • show_percentage (bool, optional), text_color (optional)

Dithering

imagespec supports Floyd–Steinberg dithering to trade spatial resolution for perceived color depth. This is crucial for rendering detailed gradients, shaded spheres, or photo elements on limited-palette screens (like 2-color black/white, 3-color BWR, or 7-color ACeP e-paper panels).

Without dithering, colors are mapped to the nearest palette entry (direct quantization), leading to severe color banding.

1. Gradient & 3D Shading

Dithering creates a natural halftone pattern that simulates smooth shading and eliminates color banding. Gradient Dithering Comparison

2. Font Rendering (Anti-aliasing vs. Dithering)

[!IMPORTANT] Guidelines for Text: Avoid dithering on text layers. Dithering anti-aliased font edges creates tiny dot noise, which severely degrades readability on low-resolution e-ink screens. For sharp text, use direct quantization or disable anti-aliasing (fontmode = "1"). The built-in text element enforces fontmode = "1" for this reason. Font Dithering Comparison

3. Charts & Solid Fills

Dithering is useful when you have solid color regions (like pie slices or bar diagrams) in colors outside your device palette (e.g. orange on a black/white screen). Dithering simulates these colors with dot patterns to help distinguish segments, though it introduces some edge noise. Chart Dithering Comparison

How palette mapping works

Every element is drawn in full color, and the whole image is mapped to context.palette once at the end of render(). The dither flag only picks how that single mapping happens:

  • dither=True → Floyd–Steinberg halftone: off-palette fills become distinguishable dot patterns (an orange/green/blue pie on a 2-color panel renders as three different textures instead of collapsing into one black blob).
  • dither=False (default) → flat nearest color.

Either way the output is strictly on-palette. Because mapping is deferred, in-palette colors (e.g. black text on white) stay crisp under dithering — Floyd–Steinberg diffuses no error when a pixel already equals a palette color — while the text guidance above still applies to off-palette text you choose to dither.

ctx = RenderContext(palette="bw")
img = render(payload, 296, 128, dither=True, context=ctx)
# orange/green/blue pie slices -> different dot patterns, not one black blob

Per-element dither override

Any element may carry its own dither: true/false to override the global flag just for itself — so you can dither only the parts that benefit (photos, charts) and keep the rest flat (labels, QR codes), in a single render:

- type: dlimg          # this photo -> halftone
  url: "https://…/photo.png"
  xsize: 100
  ysize: 100
  dither: true
- type: pie            # this chart -> halftone (segments stay distinguishable)
  x: 60
  y: 60
  radius: 40
  values: "Gas,30,orange;Water,25,blue;Elec,45,red"
  dither: true
- type: text           # left flat regardless of the global flag
  x: 10
  y: 110
  value: "Energy mix"

An element with an explicit dither is rendered in isolation and mapped to the palette immediately (then composited in payload order), so its choice survives the final whole-image pass. Elements without the key follow the global dither argument. (QR/barcode and black text are pure palette colors, so they stay crisp under the global flag anyway — set dither: false only for off-palette content you want kept solid.)

Device samples

Both labels below mix crisp content (text, QR, barcode) with charts authored in off-palette colors and marked dither: true — the charts become halftones so their segments stay distinguishable, while everything else stays sharp.

Electronic shelf label — 3-color (black / white / red):

ESL 3-color dithering sample

Label printer — 2-color (black / white):

Label printer 2-color dithering sample

Regenerate them with:

python examples/generate_dither_labels.py

To run the dithering comparison generator yourself:

python examples/compare_dither.py

Fonts & assets

Bundled in the package (offline baseline, ~12 MB total):

  • icons/materialdesignicons-webfont.ttf + _meta.jsonicon's default set (mdi: prefix, or no prefix).
  • icons/fontawesome-free-{solid,regular,brands}.otf + trimmed metadata — icon's second set (fa:/fas:/far:/fab: prefix).
  • fonts/NotoSansKR-Regular.ttf — the only bundled font, and the default for every payload (RenderContext.default_font).

Anything else is resolved at runtime, in order: font_resolver (host) → bundled font of the same basename → bundled default. Helpers in imagespec.resolvers:

  • directory_resolver(dir) — look up fonts in a host directory (e.g. www/fonts).
  • caching_resolver(cache_dir, sources)download on first use, cache to disk, reuse offline (internet needed only once per font).
  • google_fonts_resolver(cache_dir, families=None) — a caching_resolver preset over verified-license Google Fonts (ofl/ directory → all SIL OFL 1.1), covering scripts the bundled Noto Sans KR doesn't: Japanese, Simplified/ Traditional Chinese, Arabic, Thai, plus a broader Latin/Cyrillic/Greek family. See GOOGLE_FONTS_SOURCES for the exact list.
  • chain_resolvers(a, b, ...) — try several in order.

This is why the core bundles only the essentials and not gicisky's full 74 MB font set — decorative/other-script fonts are better downloaded-and-cached (google_fonts_resolver/caching_resolver) or served from www/fonts. (Earlier builds also bundled niimbot's ppb.ttf as a second default font; it was dropped because its license/origin could not be confirmed — see Licensing & attribution below. Pass default_font= your own niimbot-style font if you need that look.)

Licensing & attribution

imagespec is MIT AND Apache-2.0 (see the license field in pyproject.toml) — not pure MIT — because it's a combined work:

Component License Source
imagespec's own code/modifications MIT LICENSE
Rendering engine origin (registry dispatch, element handlers) Apache License 2.0 OpenEPaperLink Home Assistant Integration — see NOTICE
icons/materialdesignicons-webfont.ttf (+ metadata) Apache License 2.0 Pictogrammers / Templarian MaterialDesign-Webfont
icons/fontawesome-free-*.otf (+ metadata) SIL OFL 1.1 (fonts) / CC BY 4.0 (icons) Font Awesome Free
fonts/NotoSansKR-Regular.ttf SIL Open Font License 1.1 Google Noto Fonts

The engine was originally adapted from OpenEPaperLink's code and has since been substantially rewritten and extended (palette/color model, device-aware rotation, dithering, new elements, ...); NOTICE documents this per the Apache License's redistribution terms. Full license texts ship in the package: LICENSE-APACHE-2.0 (covers the engine origin and the MDI font), icons/LICENSE (a co-located copy for the icons directory), icons/LICENSE-FONTAWESOME (Font Awesome Free — also notes brand-icon trademark restrictions), and fonts/OFL.txt.

Open decisions

None currently open.

Resolved: rotation is now a per-device rotate_mode ("canvas" for gicisky, "image" for niimbot), and RenderState.canvas_width/height always reflect the actual drawing surface — so plot/diagram default extents are consistent in both modes.

Resolved: the default font is NotoSansKR-Regular.ttf only — niimbot's ppb.ttf was dropped (unverifiable license; see Licensing & attribution).

Integrating back into the components

Replace each component's renderer with a thin adapter (see docs/migration.md) and add to manifest.json:

"requirements": ["imagespec"]

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

imagespec-0.3.0.tar.gz (4.8 MB view details)

Uploaded Source

Built Distribution

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

imagespec-0.3.0-py3-none-any.whl (4.8 MB view details)

Uploaded Python 3

File details

Details for the file imagespec-0.3.0.tar.gz.

File metadata

  • Download URL: imagespec-0.3.0.tar.gz
  • Upload date:
  • Size: 4.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for imagespec-0.3.0.tar.gz
Algorithm Hash digest
SHA256 d502060be2641a686738343e20dd6cb23251bf384dacc558e1b50ca7cdf03fec
MD5 68a2d5abee62177abfcac9d21b6ae807
BLAKE2b-256 d3864609d02300b6aaee46e71fa49cfd21a69124ae1e5eec8f86e1d91fc8d05f

See more details on using hashes here.

Provenance

The following attestation bundles were made for imagespec-0.3.0.tar.gz:

Publisher: release.yml on eigger/imagespec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file imagespec-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: imagespec-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for imagespec-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2d4a0673967dd5465dc9eaa985cc650bb3bc0151f5f0de4b33807125604bf211
MD5 e9f5f641bfa7dd2adcf89e6044b4a13c
BLAKE2b-256 b4a3d13475c975fd21a377980ca91ba21e58395eee8e8f725cf3610242b73c7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for imagespec-0.3.0-py3-none-any.whl:

Publisher: release.yml on eigger/imagespec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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