Skip to main content

A small tool for drawing boxes and lines on the terminal

Project description

textdraw

GitHub Release GitHub last commit GitHub License PyPI - Version

textdraw is a Python library for drawing styled Unicode boxes and diagrams. Paths between points can be generated via an A* path-finding algorithm, and text objects can be composed to create complex layouts.

Features

  • Unicode box-drawing with light, heavy, and double borders
  • Automatic path-finding powered by Rust backend
  • Flexible padding and justification for text boxes
  • Support for cleanly merging path intersections

Installation

pip install textdraw

Or with uv:

uv pip install textdraw

Examples

Boxed Hello World

from textdraw import Box, render


box = Box('Hello, world', style='italic', border_style='bold blue', line_style='double', padding=(1, 2, 1, 2))
print(render([box]))

Boxed Hello World result

Connecting boxes

from textdraw import Box, Pixel, TextPath, render, Point


a = Box('A', (-20, 10), border_style='green', padding=(0, 1, 0, 1))
b = Box('B', (0, 0), border_style='red', padding=(0, 1, 0, 1))
print(a.bbox)
start_node = Pixel('', a.bbox.bottom_right + Point(1, 0), style='red')
end_node = Pixel('◼', b.bbox.top_left - Point(1, 0), style='green')
path = TextPath(
    a.bbox.bottom_right + Point(1, -1),
    b.bbox.top_left - Point(2, 0),
    style='dimmed',
    start_direction='up',
    end_direction='right',
    bend_penalty=20,
)
print(render([a, b, start_node, end_node, path]))

Connecting boxes result

Multiple connected boxes

from textdraw import Box, TextPath, render


boxes = {
    'A': (0, 0),
    'B': (30, 0),
    'C': (0, -8),
    'D': (30, -8),
    'E': (15, -4),
    'F': (15, -12),
}
objs = []
coords = {}
for label, (x, y) in boxes.items():
    box = Box(label, (x, y), border_style='bold white', style='bold', line_style='heavy', padding=(0, 1, 0, 1))
    objs.append(box)
    coords[label] = box.bbox.center

paths = [
    ('A', 'B', 'red'),
    ('A', 'C', 'green'),
    ('B', 'D', 'blue'),
    ('C', 'D', 'magenta'),
    ('A', 'E', 'yellow'),
    ('F', 'E', 'cyan'),
    ('E', 'D', 'bright_blue'),
]

for start, end, color in paths:
    path = TextPath(coords[start], coords[end], style=color, bend_penalty=0, line_style='heavy')
    objs.append(path)

print(render(list(reversed(objs)))) # reversed to put boxes on top of paths

Multiple connecting boxes result

A Complex Example

from textdraw import BoundingBox, Box, Pixel, PixelGroup, Point, TextPath, duplicate_shifted, multipath, render


class LetterBox:
    def __init__(self, letter: str, x: int, y: int):
        self.box = Box(letter, (x, y), padding=(0, 1, 0, 1))
        self.c_right = self.box.bbox.center_right + Point(1, 0)
        self.c_left = self.box.bbox.center_left - Point(1, 0)
        self.c_top = self.box.bbox.top_center + Point(0, 1)
        self.c_bottom = self.box.bbox.bottom_center - Point(0, 1)
        barrier = Pixel('⎚', style='blinkfast red', weight=None)
        self.barriers = PixelGroup(
            [
                barrier.duplicate(self.c_left - Point(0, 1)),
                barrier.duplicate(self.c_left + Point(0, 1)),
                barrier.duplicate(self.c_right - Point(0, 1)),
                barrier.duplicate(self.c_right + Point(0, 1)),
                barrier.duplicate(self.c_bottom - Point(1, 0)),
                barrier.duplicate(self.c_bottom + Point(1, 0)),
                barrier.duplicate(self.c_top - Point(1, 0)),
                barrier.duplicate(self.c_top + Point(1, 0)),
            ]
        )

a = LetterBox('a', 0, 0)
b = LetterBox('b', 20, -8)
c = LetterBox('c', 3, -10)
bbox = BoundingBox.wrap([a.box, b.box, c.box])
bbox.top += 7
bbox.bottom -= 7
bbox.left -= 7
bbox.right += 7

all_barriers = [a.barriers, b.barriers, c.barriers, a.box, b.box, c.box]
paths = []
paths.append(
    TextPath(
        a.c_right,
        b.c_top,
        style='dimmed',
        weight=20,
        bend_penalty=20,
        environment=paths,
        barriers=all_barriers,
        bbox=bbox,
    )
)
paths.append(
    TextPath(
        a.c_bottom,
        b.c_left,
        style='green',
        weight=20,
        bend_penalty=20,
        environment=paths,
        barriers=all_barriers,
        bbox=bbox,
    )
)

paths.append(
    TextPath(
        a.c_left,
        c.c_top,
        style='blue',
        weight=20,
        bend_penalty=20,
        environment=paths,
        barriers=all_barriers,
        bbox=bbox,
    )
)

paths.append(
    TextPath(
        b.c_bottom,
        c.c_left,
        style='red',
        line_style='double',
        weight=20,
        bend_penalty=20,
        environment=paths,
        barriers=all_barriers,
        bbox=bbox,
    )
)
shared_paths = multipath(
    [c.c_bottom, b.c_left, a.c_top],
    [a.c_right, c.c_right, b.c_right],
    style='yellow',
    line_style='heavy',
    bend_penalty=20,
    environment=paths,
    barriers=all_barriers,
    bbox=bbox,
    optimize=True,
)
objs = [a.box, b.box, c.box, *paths, *shared_paths]
bbox = BoundingBox.wrap(objs)
objs_shifted = duplicate_shifted(
    [*objs, a.barriers, b.barriers, c.barriers],
    Point(bbox.width + 3, 0),
)
print(render([*objs, *objs_shifted]))

letterbox result

Future Plans

This project was mostly a tool I wanted to create for a graph-drawing project. However, there are some features that would be beneficial:

  • Combination characters like to combine different path styles or connect paths with boxes directly (the latter can be done but only manually)
  • A convention to use for placing arrowheads at the ends of TextPaths. Currently, this can be done manually with Pixels and the arrow function.

Contributing

I'm open to any contributions. Please create an issue and/or pull request, I'll try to respond quickly.

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

textdraw-0.2.2.tar.gz (63.6 kB view details)

Uploaded Source

Built Distributions

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

textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

textdraw-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

textdraw-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

textdraw-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

textdraw-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

textdraw-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

textdraw-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

textdraw-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

textdraw-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

textdraw-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

textdraw-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

textdraw-0.2.2-cp313-cp313-win_amd64.whl (938.8 kB view details)

Uploaded CPython 3.13Windows x86-64

textdraw-0.2.2-cp313-cp313-win32.whl (855.8 kB view details)

Uploaded CPython 3.13Windows x86

textdraw-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

textdraw-0.2.2-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

textdraw-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

textdraw-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

textdraw-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

textdraw-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

textdraw-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

textdraw-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

textdraw-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

textdraw-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

textdraw-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

textdraw-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

textdraw-0.2.2-cp312-cp312-win_amd64.whl (939.3 kB view details)

Uploaded CPython 3.12Windows x86-64

textdraw-0.2.2-cp312-cp312-win32.whl (855.7 kB view details)

Uploaded CPython 3.12Windows x86

textdraw-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

textdraw-0.2.2-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

textdraw-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

textdraw-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

textdraw-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

textdraw-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

textdraw-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

textdraw-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

textdraw-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

textdraw-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

textdraw-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

textdraw-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

textdraw-0.2.2-cp311-cp311-win_amd64.whl (941.3 kB view details)

Uploaded CPython 3.11Windows x86-64

textdraw-0.2.2-cp311-cp311-win32.whl (860.1 kB view details)

Uploaded CPython 3.11Windows x86

textdraw-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

textdraw-0.2.2-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

textdraw-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

textdraw-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

textdraw-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

textdraw-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

textdraw-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

textdraw-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

textdraw-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

textdraw-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

textdraw-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

textdraw-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

textdraw-0.2.2-cp310-cp310-win_amd64.whl (940.3 kB view details)

Uploaded CPython 3.10Windows x86-64

textdraw-0.2.2-cp310-cp310-win32.whl (860.6 kB view details)

Uploaded CPython 3.10Windows x86

textdraw-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

textdraw-0.2.2-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

textdraw-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

textdraw-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

textdraw-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

textdraw-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

textdraw-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

textdraw-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

textdraw-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

textdraw-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

textdraw-0.2.2-cp39-cp39-win_amd64.whl (941.6 kB view details)

Uploaded CPython 3.9Windows x86-64

textdraw-0.2.2-cp39-cp39-win32.whl (860.1 kB view details)

Uploaded CPython 3.9Windows x86

textdraw-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

textdraw-0.2.2-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

textdraw-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

textdraw-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

textdraw-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

textdraw-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

textdraw-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

textdraw-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

textdraw-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

textdraw-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

textdraw-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

textdraw-0.2.2-cp38-cp38-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

textdraw-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

textdraw-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

textdraw-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

textdraw-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

textdraw-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

textdraw-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

textdraw-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

textdraw-0.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file textdraw-0.2.2.tar.gz.

File metadata

  • Download URL: textdraw-0.2.2.tar.gz
  • Upload date:
  • Size: 63.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for textdraw-0.2.2.tar.gz
Algorithm Hash digest
SHA256 aa7a2435fb7020f811f1b1ecbeee148c55bf5357734ad14caa85d8401b9d148e
MD5 5d9314e7ed8771329815906a701e59fa
BLAKE2b-256 4ef6b3a4e791c282baad3fbc69391e8cb620370b29443744a9dbda921c7e0f5d

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7f6329a75d8d3c856e621cb79855f0a1c6f73450d1697b5ce139b01c92b5281
MD5 fd3dd101fa9c71a1650a9c0d64521785
BLAKE2b-256 2be74cf478a3b3fa31742b488a68a87c2c7528a775721102415d0fcb26cba4ba

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18a780ea4c8ad0e10fcb96ff6e19ad91a421a1367c9410bc5a88681386e830bc
MD5 175893ca4723d920fe1903c8215bb713
BLAKE2b-256 a9645d3618faa1c250bf9ce9c26c124fc6af38688bdfbbb563a00a5107cdaf31

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 778a824d9c51cf25d99247bd44ebdfbb3490561cbb8456ddd3cf59f595df6bf3
MD5 9dc06e352fdfe7b7489d45c99df8446c
BLAKE2b-256 99ef8e0037879125f571da818a4b37134b8a43568c8ef6a623b62b24a5452443

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe76576a6ad9d8cc7e2ce1e15ec71d51b664918d03c098953a0554d178e4a5c7
MD5 86db1c45ae64717fa577ea47f717e2e1
BLAKE2b-256 5ec73fc5a352ec44044e6929ff414d2ac22dce91a19c54c5d5ea3d46078a5ea7

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee428de4fb600e90f3aa5ec8d4e47d87382791bbc1c84ddc3fc30cc5b9a6c328
MD5 55905548d941c3dfcda6c07b7c3b6030
BLAKE2b-256 e53a9b20ace6bf7ec3d14ce5321e703bb2d6a1c8cfb37cd22a5254c525cfa771

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 979df6222e6127de18f55d6464ddb655f5c524a561d466dded40c711e00742c5
MD5 ea7828d433a107c575880dc80144f3fd
BLAKE2b-256 23f7a19065d2608d22be5cbfbb8cbf8bf9170ed14efb24207896f3f2108155ff

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0f3a762ad18252665723251afeb5f88eb7f6d824d74aef3f3aa54b5b3d24062
MD5 4f44d60c1d492cfa75dce27ed711ea54
BLAKE2b-256 915f64bc165580231e385f06f16fbc7ce5dba6f34dae880e8d3675f085957402

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 765ee6945bbb67f1b68f2ff54e67ffd688c15a83342c931f605697fea10acb8d
MD5 a5a8f99c43c739a405326285845bcdcd
BLAKE2b-256 201d194a9ec10c1237914ba8b8a304f8affcf8787c7ebe3b972d06aeccb95f05

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79e0113afd748a0bfc66a3a11f1b4574ab467d543a1b7e0b6ee1108c05a6cd06
MD5 1fbedaddaac25d3e97a7b3ea4334cdef
BLAKE2b-256 373cf1f2341f4c68e1475f44ab0e5bbc06b335240793608125e10485023537a6

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 83109c0ae2704c82b22cde00e1a3038f5a88a8aaebe6f3cf004542d111cab4fa
MD5 01af049aa641b296c3301227c4589655
BLAKE2b-256 85bdea2037dcef028038d0a4cf0cb2b09969ea323589877bd8cb9f9f8492a131

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f4f6f8897c892882250cfd979e1855ab536f66799ae410b6924c58e669e23ca
MD5 481d974486d4cb98783b00e63cdece9c
BLAKE2b-256 8f42e7b1810f4b6dfead4198c47d841cfb838f9467090b58c356f2a504c65eea

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bdf81806ce84844d9d382b1f08159db1a8e93b222c3b94ad2d68d35acfa95322
MD5 f1368981061ad2447d2e359f223ad1cf
BLAKE2b-256 16e8d510705df7fcfcdfdaaca3bdc3130605f7a0a8c5003d83341b983d2ade37

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 321c33e2424e44e836550051d5895356a5b4322482ae3c35865ab526256d24c1
MD5 fba6f0ba78255ffed6531c95e138be63
BLAKE2b-256 07136960fc1452852551dd819ca0cb25f89fa5b57a359d2a8118244e4e931788

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5ce485cd6365984fcf3c1bfe8c4bae063296c21498d332f05fd05e57ae91091
MD5 65dd7e8f3f8e96c1c5dfaa31017b4a83
BLAKE2b-256 f7a10b63ce74c528c6edc8d49f86818f7975e5578d58642f6d294d4d611e4251

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0ea7eb385df3dfe86b25bd6cb6ab49b47eec038c283677ab2ed9f5b2f8ab8e0
MD5 a8a2ae40f845a75bc22e7358dab9ea06
BLAKE2b-256 7d288cc385d9b583cdd16877d3911d264e0c2e762548931552a6c78c89748e70

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 766c3318728cdc7452eb0914c515f04af80bb1e205ff3a0f6cb0c1a6ddcdf68d
MD5 d89086d26d7ac3e4e04b53c70d39548e
BLAKE2b-256 5fc063e7477fd6765a1a73f790b889e0cc60c27d304b2719f5956da00d8cd388

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6dd8bd6aded9b36f3bd49d7f5363dbceedf2d5d8cfea1e518f1930dedd321ad
MD5 a26f8c2ba4a01c246e55c79502ba0123
BLAKE2b-256 e1f9a4d49cc306ebdd794b0dcecf6440174845bd39b96e5e8e7358ddacfb00cc

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1067b338d2fcac8feb3ce7b2dd2fb0f03ed68181d37b9b7c4053f1e66f9fc82d
MD5 3bbb0d1f9c36cad768f5f591a7faa1c9
BLAKE2b-256 74446adc4a83a1266d75412f103416f85f6e12ef632569c7035728380f60bf32

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0ba8ede6f243d283366eb42510022f9a8f03f647906c13003394d20e19482c7
MD5 50445ff8fee37edee19ffb3aa1402f95
BLAKE2b-256 e258c69ed97ca12d99d3421892372b79e27ddd80b74be519c9656f0cd10ecc5c

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2aeca939231899ddf2ca338a25bf7606cd9ad4bbae7958d984f3cf8ad6f63c8
MD5 07c44ceb7b85fed7581bd031e845b4bd
BLAKE2b-256 515ab29bc556abfb07bc50f6b34e9eb300e30efc215da44c85683f4a80a085e3

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c9ebc6009f4da00e78feaa77312ae4a513f7803a05b4d5065e0a325e757cd22
MD5 7877fcd20a44dea0ed2944a39dd84dc6
BLAKE2b-256 6ddd72c98287c27c6c1aa0d03fe815fa94ea38e0cb67da39d9de82f07216e269

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ec83e506fe7c3607f6da3f109ac3e70897807e6efe473a71b84bafc8c7b4de8
MD5 d7ff8ef6d8d1a9797e389b00d3a5d9eb
BLAKE2b-256 d3e122747e11c6adf1f8b0606d6b239c34ff120a2fbbe5c21c8c76c23e73c082

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ead8fd8a0676be7cd2d9e616d51469cb81b058e0fc82c2148314ba7cc0c768ce
MD5 0fe8c01a489f094df431408854d78390
BLAKE2b-256 e6f6540ac072725f4c2966b5109b15734556cbee6e6c455375f7fa0723e670e8

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 981c98398b52065952c6e90683247cd18a3ffcc224a68307553b2a54a3ed134c
MD5 6e7a6798ea32be2471ca61f23a034195
BLAKE2b-256 b08fae50ea5fc5804df63dac54b2801f9547080f402579867c1a60ca3428d1c4

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ba79e9d6747664017b3967753849790ee7ba9a5cb1d693aad11fa301b7c61f3
MD5 ce0c11e5c577b9cfa318d5fbceaaaafe
BLAKE2b-256 a6074ab29d0e82064b8df38deec6692cec459cf7c24565df5a74ef382cd18fc6

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1ef35401288bc061eab706cfdd50bc0cb20bcd4aefd7ecacc2d72f275aa6149
MD5 37a8e4db52749e8a87f5e2121fb778ad
BLAKE2b-256 bc1d9239539e64f8b2c2f1766395fb14d266b0b8ee21783449d56174888a8c81

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d67acf7bd334b3423bc2dbe48115c5cde5a65b52c2052d3551e502b6b4f06194
MD5 ee36ab30b29fd5411cbe5cfa986ea658
BLAKE2b-256 80f334628e46a0619adf73ef230280dfb204935bed135632080e408e0713500a

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a8cf0882abd129fd9a99946d04f437052dfcd7806a43489a2b84975e75aa891
MD5 94b46ff50d3413c15c22d8b9a76426c7
BLAKE2b-256 eef56803a986196626e3bd88da1c88f1fc5d6fc2a366b1cac4cbaac3cbbf1281

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b59c437599a669591496a05b0e2c8ed637a76e8480e3d10f463b607f2a2e94b6
MD5 77f6179f15f7e24084166e13e5f43e17
BLAKE2b-256 f9ea75f3d5096fb7140268bdfb93bd8dea30c35b81f2fd2b41ae9dd4210e7aea

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 00e579df0bfa751950eab1191b85ec2b940daa83cfdc7e2593096e122f189e5d
MD5 dfd71559a8be8319a4bc88519aaa4957
BLAKE2b-256 a789c7b15de11cc768c0d4bf83dfe7cbf83dfa84888d7b0f1d851992ba1afccd

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3082588a7f1207cf9c048d8af138951647fbdfa8ebfa27046d980408004d0103
MD5 5188de54c0ae22669fe45f73a8d6f4a6
BLAKE2b-256 57ce29a19f4eac7f6760e06621f6606e229cbea70a2df757622d4da48c55854b

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c4391be6c4d3ed9020c6dde7561a9cd8f48596d7872e2348d264864c6147403
MD5 3146851d80f5069afc34497934e58b46
BLAKE2b-256 2849d5efa66b0d98e7d2a2bdbd1cff23b8a17d5739dc1e05e062a1a6a4a86cdb

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 90acd91a379b34e833b3281e10e0113ec8b26dee957d4466c61db43196d6f065
MD5 772f3844dd5e9af9db5311502df6724b
BLAKE2b-256 8eb3c7b42571547baa24af7cccf4a04db07d058fe978c04133183cff00f0fed9

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8c68fef31b499236d634aac2e9931ec7c8eaa57a196b25b8d738e9049bb972a
MD5 b566669e631a130b3f56d8de93496d66
BLAKE2b-256 e17778bb5ed344b842b58690522f3cbb8ecd242ae9ff733d725604ae327ac700

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 286c5840ade164095d13bf1e52ed3bb01541f480457d9cd627cebf6a237ae5f2
MD5 dee2e99e87d6c18aff68e9f4293e40ad
BLAKE2b-256 dba8968153f2a97e675ae9c93b8f9bcb5c0792cf436cf142d166ce840c81a579

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d855f52f7d5994322de02d294c9ca65f0d8df774d25f539a04789c36af038544
MD5 6adba7ceb6c5bef0c60239dbad314396
BLAKE2b-256 de19f7da2a9fcba7c42c96e7bd53f5490a6d60e0d623eb3761bc27ca4da38478

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c07871032c402cd5fc1b84609d23e7be18179de0d6bc35dbf9a7011006e18db
MD5 8ab5783dc61b35ce9606f20b0e544848
BLAKE2b-256 000ccedcb218d171aa1e1fdd5f6712e967a225471df2fc8adb87a3410401da53

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f00431cae52d52d1f2c7e50f5589d83388ebd9a5606c566149f92b36615c7c6e
MD5 e7b999bb87ea64aea25ed954f1349847
BLAKE2b-256 7f17e3c6a208b781ad5d32a7f8a556c6010d683de8ec7fccc680dd4a90f6ff61

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4bc6989cb34eaf4c615e0764b40decfb56046cea45fc681a75f78b5b8fb74c62
MD5 6dcd256b8bba13ef538db7ffe1b13920
BLAKE2b-256 e1a7dbb029a5dfb14103cf7601b0da5bf154140772ef62dd8292af06d8c678c4

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: textdraw-0.2.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 855.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 792f6ca2a803f7c9581e0dd66855ef4b69cff40138fbcf656fdd449c3f35392c
MD5 6cb716290b198f50b453a84423808dbd
BLAKE2b-256 08cfa6020510172c9dc16d1aba76c127706e432c218f9ccc7de1e8df23eb105a

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97a694624e2d2e3da61e670b5e77fddf1ce3f411930bcde132a08948f0cc6bd4
MD5 72870fca5c932ebfb69f29807f7fca80
BLAKE2b-256 54a45c893638e1606e6d10995a43811f227ecc0670c9da7276c0e7fc735630f7

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c36a5c5fd179688340bf280107a7260655033514f1db2fafdb864d161bf32974
MD5 723c52421a6bd09a0c5018fb0211d81c
BLAKE2b-256 890314f2c1a04362b11d83ed652efb57fb03e45e682e0c3833f38d90280b1689

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8deda0906ca32ae1cbb589af5fa5158f62fe6f4e4a4a6c7de969ee7bcea0f857
MD5 5f19bbe2cd40b462eb4c325776842c10
BLAKE2b-256 5587426e4a3fc2264f6ce9a527eeffbaf120cfa43254050ba4b970020090e752

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 189dbfdb09ed87bd63eaa438ab77ce0513ca61fbd6b60d5d4a63c8a2e09ee4cb
MD5 0208d751d665e95561bd26a6417555da
BLAKE2b-256 a43c920c891c57de57df12f3ecb138da8be6aa9baa53b5e6e77f783648edb6e4

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a270692df7257df5bc18194447de42c8040dd553ff2d803db6aed8b7ec994d4
MD5 c2619bce96253d94f5652428a4b810ba
BLAKE2b-256 dfad59281d85740fd3600c9063d862837638330b30456e699e39afc24be4cc77

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc36d4a60fe111db0f40a5d27874801ed9f4dd2a3a82b104904b1a881764ffe6
MD5 6b6bf67f5d2482c68eb72fd7bef81592
BLAKE2b-256 56dcedf474522182a2ae4ba313bcfa29b7d47227e989741851a201e90a16cfac

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc80842ccb8259978e44c951fd40e7b0eea36be8b74849a1594f20ce64a24666
MD5 741b400850a9165aa0ea1ff42b441dab
BLAKE2b-256 271067b16108ef119b0975bbad590be21e20692a2b23a449ccaabf85ff56faa9

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f84d019b0d3e792dc6264390f9c7977abcce6bbbe00dc08c63a95e7365240d3
MD5 b0c65420caaec9fac2231535a5d488da
BLAKE2b-256 afbe86805b3a425bae448ebd0953fca35a7905f3b8522318ae68c776d7323e63

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50af7f1751485f06bbd0d2692ed8d36fa9f5767a260db4710e8daa63f2d949a5
MD5 c2acab72781e588eeeab84f2a948978e
BLAKE2b-256 9898de00d216d3b27b143db4ef546958bfa053f5fd0392337fb0ce77ddbd3cfd

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c313d6c460ec76ed6eaa9db6024f379fa8cd359525a38128b9f84bd54b6abcd2
MD5 248fb8316a27d755eab846a49b2bd787
BLAKE2b-256 70262973465f5285f893de11fb22bc6688fbda0afe73ad370e94d37202d9c600

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceef6a5eae692743daa21690eb93d3224ac952c511d2700a7f3a337e84f9aef5
MD5 ac2edddaa2d8b5ec807c61413cad2c87
BLAKE2b-256 41f460ed2bc08bb140985f79473c2379147fdfc402c63927cd681233fcd8b6b7

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9695b8d491502a3d42c78b8cd3a445ba99ce167a8a3ae4f085f19aed7364b56d
MD5 dde19ca2982cd6ffb898e318c049f5a8
BLAKE2b-256 2398a982b5545e1cdef80a9a23fe5ab20387501c4d1f4288c8abc106d6977d4a

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d03734c4fc533367a7d73a4a12db0cb8dd5a0036c4dc9fabecd69e47e6b9bf21
MD5 76d111693ce0c80c411958dec1554135
BLAKE2b-256 502281168499ac30547a2c73b4e51916764ffd282a4f239a66f65702225d4902

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: textdraw-0.2.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 855.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c96ad953ebb8883f93411e2d3ba1c3caa96b80efa9c3e37de6877ff9c8e0bea5
MD5 562306f7bec39d56563f95f58aa88977
BLAKE2b-256 6f23d83d82c913f3262228f4e20b2e1228abd2c7c7cf5757ef979780bedb4bcc

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75afddf94cc928a802ebb7686d410d4070bdd3f828639263a5129ab56037568e
MD5 8a64f13badd9ac5300b509088554e22f
BLAKE2b-256 cdcaf810242e19dab622390ffecec4833b33e0e37b2dc2ce212292c66b706f18

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0fb1be9aa8b08036521ba5e8a3b763c61778fa529515b502008ffa121a41a5b8
MD5 9774b53d089c1185f937d37eacf9281b
BLAKE2b-256 b560c8d8003b7aec4d447be9957431ccf61e594cc9540c62c97783d402b6b6ce

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 26e7a72eb4c32746e90371fa51eaea649783d6665575ffafbb1cf93a5459be3e
MD5 11b87bcffc937d19eabc34567495b525
BLAKE2b-256 e7b2174afabd2d6a6a2cc55424d6bf9531577b07dd926fa913fd7a0080eb7ed4

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 511f0c5c07a04a1bf51e6d01da73bd367cf574b141991de36f252be6070aa5ec
MD5 ccbeb38d6e6503add52dcc855333744f
BLAKE2b-256 6cedfb057d961c88a4af6da860709e87c26ba61812015ed6caa9f1ddbe791710

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e81c26a4213dddf7a306e2ae601a686b30aea1f6dc684dc8ba90da252aab97f
MD5 67ade571e338699ffdaf42cd03fe0991
BLAKE2b-256 55c59c02be04285cb74e617e8e022475842afaba638d1c07ef77694c84adfd71

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdc6bf91735da97975d7d7425543ffcbfaae8b6141bb3dcb48c15534c7800280
MD5 9db27942f1169f524ad9dc6d66113255
BLAKE2b-256 1cf4d1f85affb82dfd678737f77ebaa8ced163af067a37291fabc4b2ea502880

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be1b710e69b598a4708584cb08b813f9cdb4366d08f5f698d87b8850cd01a001
MD5 562ea8f5583dac3c7c7a16e5a39c7c09
BLAKE2b-256 486e4767d08debe6ba011394b1aad9230ef4d9626b9922a37580484a503d2801

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2288589e064689129bc03014fa1030f8312ef75030c1ca6cff1d2cdf3992da7
MD5 d3ec6c358422d661b9b7c1cd91cb08c7
BLAKE2b-256 36c0a5630c7f95ba59c9bd50dadb8efb3f01a289d07a012e3a6283bc1a585601

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5780715f8602623d5693884dc31e97a4584931916fb506a4f7533008f0f5266
MD5 5e8fa08b001189bda190cb0ea75d6bd4
BLAKE2b-256 8cc3963b859962408b39bf46e3a86a5e33f9f1403947e368b1ba1f6e9d05d880

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d2357aea3c84a592c70df1bdd47c612b2aa47463f4848b3605e92bbba12a156
MD5 a5a2d55cb73bf5e9dfb67379f73ca7d0
BLAKE2b-256 ccca809c72672a0f7993ca585f43981662d553e435019cfa1fed052d01ec5a81

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4de552f1747451b01f81b26ff1f9a4fd4056ef13c0d03fff52c4624b44c96c6e
MD5 6852b0355687060d48646c3618ac110b
BLAKE2b-256 29c9a81e213d4654c0e5cad71169969f7175190cefbebbe1e9bdeb494e653760

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf012b9fd71068ef316ab29a7684babfabf3f810b6c7803db217a5674b26f56d
MD5 872a2c90d05c827ba1606d180a8e0a0b
BLAKE2b-256 33bd91a12d7120cc92182a59bf220762a09dbe6acde92f86731ce6904ff7e3b0

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d2b39ac0b2aafa596f97c907029b9c6565b2b9f23543045bf03b3bd5f05d45ce
MD5 c0d17ce5d0c1906d881d993a28a187f4
BLAKE2b-256 be72cdffc09e8520cd2c225dadd6035fd68c6acec2324f4accbc1bdb45b00654

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: textdraw-0.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 860.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 595dca4753fc7810160ff0239686a1221b6535a193c2e57f1a919e5f96069675
MD5 74d3069d615658dcae2698d959410037
BLAKE2b-256 752c1a2b74fa078aa0cb3470a78b03f71297b69c94785b0ef210d7217ea8496e

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd14d6e42b368551edd19db28d83b81f13279e96f7136f8fbef0a9f3cb919b59
MD5 afb5bf3e764f1d36e1efb41d8604d467
BLAKE2b-256 05c8f9832c9b4aadcfc2c3366cb392a68c336e71d76afbd093ac0d0342cdf835

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb5fdceb63596d3d9a89fec65c93a80b6af3b1aacd704898f3bda9d22c8474d9
MD5 5436cf54db60d9b19a7827718bed7e5e
BLAKE2b-256 3c70d17c99a15538d434e294a143ca516bbf5ec0e76a4c2658891e564e4d4bf5

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2062ccbbdcfc59d2d239f66fca5e0aa85687c9d6651b1d1f50c975852adcef05
MD5 c27e026004dc526e9147797bfb3e18c9
BLAKE2b-256 2db72de9045efe813a6f3efcf61cbed2b4ceeccddd890dfca7fe26de5c0545cf

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2e8c5bc0fb19d0fba32ab55f866ddc12b8e6497041f31b13e5e8b5907a8f189
MD5 c9ea84671fe511d1539c3030cc006b6c
BLAKE2b-256 6922477c9fa44d8e12acf0a9f45bda32757844ab289a43a78573f17c378fc197

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4e9edfebe247949c85bc835d788d542f74667b1bd6041d2bd7784411dd229bf
MD5 f44f26c8d3f4f738c6de6c5494106ca6
BLAKE2b-256 840ab95710f1399d55308ff9257d971a6b3abfd05f3519e2a6c31430a98c6621

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bfe9cf2bdcd4a6ebb9e99b922ba8f60438f05218d70ddb83fd07b940baa492a4
MD5 37c53eb0145f8ea590b5dde0778cb79e
BLAKE2b-256 fe600be60f1e53ab73f3f5d1023ac2afbda0c4c2f604460ee539c3d56b4d567f

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0bb411eb71c7beb70c063f0ba2b9e184ccbcc89c28f1e5906f801bda545b8a25
MD5 cd150dea5b2b7a2b298d8afbb7077ea3
BLAKE2b-256 74bf64dd73c119814735fa4328f01a6bc5ea8c98043a1df94f17b8f8d692980f

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 331d63784767fa197f01e022f26a5d148b0cb882dbb1ba12aca684a74c3b2617
MD5 ef4bfabc43e7ef79d8e6d5c9411dc306
BLAKE2b-256 8a569c4d1cae292ea4f3aae9cf1ef7544a6162c0e6606debbaf3cf4ddf2f58b6

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35d63e6d0f591047f04a73f42ac3d85c04c160f7fa9ff20040a3084c7f0f6cac
MD5 8c4013851a1df6cca598f0c880d1a0f0
BLAKE2b-256 708e417928249f8b2cca56b0ec8e539af7ec1b3a3eee56572ac12ea16902db86

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5951011c67f6782c368d22e08a96ccafc2f769e0ede0d8df17bb701b3e4c6ae9
MD5 f7fda7b1ac603d2a724a22332b8cb4a7
BLAKE2b-256 4c5c8dc6473f86872cc935dbb356caf8236f61c2e860f271731e43b054bca67e

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44ad6c735622785a6bd4e4a6ceb123072cf93da135e100f9e1650283e6d7cca7
MD5 ee35e8a9c2f97861e0560687a71cdb1d
BLAKE2b-256 746e6c8c1854eff11c5f9478b14b0fd29422fbccc11a3abcce1367203e091c26

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8f190ef5e4bf61aa7ce1b996f2c5d91ecddb27b8d97dcdb6d678e0d2fa2e218
MD5 3fd3319979443194c5ca66043ce5c392
BLAKE2b-256 c440056badf41523cfd6bf3971c7c1bfa4f4c760f4f831fad9d9f99196848b62

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 97106831643de372a79c592407d689b398235d9c3eee76322e24ecf1db55866d
MD5 d1d680e27437cd5ce43457ec8ac508bf
BLAKE2b-256 6702ed475742db30c7db9d6c12ca607d8ed7879326ae5864b96be5cc418042d9

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: textdraw-0.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 860.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 19f4c7945ae551b44e1fc2966d7b0315ceb9f392166c5dab44741e9c89c4fca5
MD5 81c84a88f9d6d0c0ba1e0cfd388d7b2c
BLAKE2b-256 8f93c1577ff541b667bdd87b0d3da9fc8172cb7ea0ddf9f5a93ad8a476477281

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba07a593ef1463fd5585b05c56b00aa3b769a9fe2d00ae0ccc8c027800f359fb
MD5 2591a890b5ed8ca4528ed4eaddb9dd59
BLAKE2b-256 1344636d280700006f9d8483c3ec9eefbe5c399950725c412d8ce03882904d19

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ddd5af0eb3efc465b2f15e87d6338c741c1d54d001df10d02d9d9f0dfe2aa60
MD5 c316803eb9e4c127de55be95616d36c6
BLAKE2b-256 5e7de1f6bc3117359022f578dc4db941df2cd6d3a2838db34abad5dcf5e96e69

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a93a05dc89475d2a405318d37eac4708e14d8a2b4d992acc376b683de4e6cc8
MD5 20ec0fae39f37fcd8a8afe44dc5b04b9
BLAKE2b-256 a8a5323b793281694dc77e79970d9408f37aa798a3c294587d277294b838c43e

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a0b3f4a23053478e6c763cbcc4aa02db102cd47a2215469a7f207374b8a7cd1
MD5 f10db76e416ff2935059e8219ae68418
BLAKE2b-256 e8f6c6ba421bc0252330d0a01ce8a7e82e2169ab865cffd3285f34e3497fe0ad

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eeefb8b72a4e79909aa710256ee01c86b16812098e5cb1d7215268493c619bf4
MD5 accb4c7a44a76d0c8e27885c937e0998
BLAKE2b-256 1b30c130c627c44c2cd069cf55ca755b1268a65ed6007bc8d940967751720973

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 505e03093dddf4746aca440f81ff19593492f0ec384935b43ec13ef02ea66dc3
MD5 45dd2bbf33b9f80300eb18598b0eb0b3
BLAKE2b-256 7e2aaa9dc7b91807a8f05f27129536b5d02c7608402fc9d08b13365c6cd7a54c

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b03c0a71068feea4024e6857d7e906362c19dbf75c4eb31edd038c46c8fe5e2e
MD5 e58eec2c1cb0a5d3b5f32dba7597d7b2
BLAKE2b-256 b6633cfdd0e74edf3feb2bfc93c350ea51ae68d33aa371483e9ba916cbc32538

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1ae41664acc1494649d5450932576af9f31a6925fedcd9d4dda71fafdc5fd6a
MD5 e3178c6fad7bd575fb865b27dad43d0b
BLAKE2b-256 832b24a9ffe5c21b1c4ff1a1623aa227b0bcd00c954363b5cf301542e37b8c85

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c5c91caeb395052cc387902cfded70df01117741d2c2ccbcf96ef2d10153278
MD5 d9507d56a72364cb6213772a898d835f
BLAKE2b-256 ae858374f0f2ef172e993ef8d0216c29a73a2b28dd3df1e6feac75939709e772

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8af48827ca7cc8d52c36ca9cbb0d0dfffa3bea8075251ce3efa6277036dcf74
MD5 47b4863f77726f9b4f3e1e8fb38a0dc7
BLAKE2b-256 60f94b9ebb9b9eac01a7fc2ffbd817a059c6284ea248587d48896bab8a7c2ec8

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: textdraw-0.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 941.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0201f1ff833b0408d8a3c88a39b113d9ea78997ead170e08e01a778032bc4c29
MD5 e9fc3e2f257aca3f123d62b5acc03de6
BLAKE2b-256 8c833f6c08e6a63fec964bb86c403e79c1e841a55281ed5ac882d80ae123ded8

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: textdraw-0.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 860.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a1739e630c564eb9ab92dd0c85a2360b0aa5a9f461016c76054d76c745d5e00d
MD5 00685dd3fdb7161f768ff24c5cfdeaaa
BLAKE2b-256 6cf94f4854419524cc1baa502f65b473b8a83cec0cf8d2eb41bb08fa54d9fc20

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 237e7f408dbf1ec52dacc76d2471196110238bfb9eab667c45c76d43bfde3088
MD5 e67b856a334565e63d3b95912d145737
BLAKE2b-256 819eae525d2295e94ecece7a047badc56b6dd010933a32d243c89dfad364ac30

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3b4cf9242eeeeeff6e75dbaaa710c1cbf16c0c8715910f50b00406f4819f05f
MD5 50e0122f1665ddf78c3e88374a246b30
BLAKE2b-256 2bb6aaa6051579dea5f9d72fa9f853316a6b4229b5a9fc8b846d778535e0d9c6

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2fa033093f4003cced95c03cab3e22d729c63450c2a6683f51ad3e9e144609f9
MD5 2857272937202afaaa31a801a4f59c73
BLAKE2b-256 e068e1e96fec3aef9b02507bcd2bf48ddd718474ee441b00f2a1ee70a0876bf2

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c0cd1a90e137e87530c357a9528665de220e0eca9263dcc0701ab0070e56236
MD5 aaba77b7491c099e9c20fa8bf3593431
BLAKE2b-256 645147dc313887a4837c37d9c180c552269588465fe2b25a03f7923c99061b80

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 334d7eceaaffbff1d2291e6ac61414046a481950b6bbf753bf5a18535705cb36
MD5 f80eb3c796a5a9289bb8239ecb26e296
BLAKE2b-256 ece3e00b14c5336d9661c6ad256ea1800297bc403c0a478892b238270ed2f566

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3edf82c3d65cabe57ef456fd37d6b04e46283db15fc0e55d4764d67968d63dfd
MD5 84c684be65e0eac18b1d31efe255b2c2
BLAKE2b-256 86bbaf9cde41b5b30f7f625c7af94c43d50b97efea7ce185e310342746189249

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 852aef45555822100d88a10a5837832237ad8f6c57b77c31a2a2e0747907bb6c
MD5 7b38d2f869c4c402f8f1d122f5a3bcb2
BLAKE2b-256 9320acd691ac2aa13d04c489b5041095a8f2136b71533279600e4ff55a699cb3

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dcff391aeaa2feb14b501426ad052e52e44d156e7e222b1254ba221d8242d82f
MD5 29f11b683649dc4c34e000215f716a58
BLAKE2b-256 c48e7f07b556506e8fe739d866b437e5dc12fd8684e60b757f72e4c11161e6e9

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f77d46ee9a025b19c86ace07bb3b54365858b2a8490f7c676fd8d5ffea92faa8
MD5 898fdd12523e8803a1220eeaa2692699
BLAKE2b-256 274ee7af75bdec9973532a54f160b96027c19b4eda75f8d95112ad9bdfe09873

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 40ca11f43c163da730a04c216ba14ea1f98a635a7fb1f4405ad23a2a614ee5b0
MD5 2b500bc72a64a93012da0517777bf0f6
BLAKE2b-256 a7361e9784296cac71c3887297e01c09dcd72c73d2f431ef5e28a7f4649b1b6e

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08536d62d728a9579d726428c141d7102317d35c3162169ebba74fa190907444
MD5 e64f8399e91b96a0d46d0e35624931ec
BLAKE2b-256 79cbbe73396e336f1da284620e0bf2271850a5a5e92b57217f04c0968fe4c8e6

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ff0e0f7e51a6da1d36edab65f7938fd5efe0a16c0bba095533bf037d54713bf
MD5 8b5a99a97dfe54a1251284fddf6f9ccb
BLAKE2b-256 04481c464a884c0e8cfa8475d1ba121832b59ee3323ee50fae42a09bedcdd51f

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6fb2c7fe9bc1ed57c5066983a4e06530bffa174bdbacf65888908a2fa87830f1
MD5 3a607b42217b82e39996587879301309
BLAKE2b-256 9b6d08ecb5fd49946b2b0cf26e0722651568b5d071b7e390348b06c9b18a2b02

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f88f02a12749f8dbcc797396e14da2df30d4e47b5f10032d4148ebb56faa06f6
MD5 8c47a8a0834e3f3a375f70e8ce02e8f7
BLAKE2b-256 d6ffb10e8d4a6d80e592e748c88ee383ef8b0f0ef44572198cdb94d1a34a0721

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9e9bf26e06d83b4c7c879767be29dc617e84bf4dca2db8c45be46167da2cf86
MD5 61deba4277fe06ff00832ca77162cbd5
BLAKE2b-256 f1bcd81cb4ce2a8e55aa21997c01a87e2a357c64b2f9892299ec22df1fec28f8

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48f2669f2ca63209f4d23d929af6568ae2e12fbe6fd52c80e9dab7403fda88ea
MD5 8adb0e09c0d19e869b9ca8436efc24c2
BLAKE2b-256 440ae73ed8223ad5dbb4f25ff0cd31efc58d6fe5a73c436629adb8fe8ec4a577

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 34b1b1796bb011bf567cd43ab96f7000d3bc286352ac8436e12782bda8efef12
MD5 1866b33c7f7b71975b4148a4fcef8317
BLAKE2b-256 8515ef52a93ac4b23bf62175978eb91cf6102b231a326bcedf90fef77a691acd

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 469850a5577d8ba1a5bfe9fc6f8e2f0c528b10ded79cecd763ab052b3e0b0a1e
MD5 a18f540c861f559bf12d9c35244f3b9e
BLAKE2b-256 0ca4daa9d12c23bc3fd9d7d5a3fdfcb745d77a52e827563736801af34c3ca547

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaddf74956af8bb298d4e766103e08bc35c05b90fab573edfc5ceac36697cd84
MD5 805fc386cb51b1ab50b9cece06908167
BLAKE2b-256 b3e786dd8a9b072d734a2e246c9978e754b179e5a21c00a044d57093e21b7230

See more details on using hashes here.

File details

Details for the file textdraw-0.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for textdraw-0.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc1b48015be95e7b3f5c8797e66dd647a6ecf043aacd3b6e729e320d725bad99
MD5 edf8665ea21135adcae08c39a408d410
BLAKE2b-256 ab3b1bdc76d6deaf0261c080095c744fc249703f9ecd61d6d5969832bc0dbb0c

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