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(*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.0.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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

textdraw-0.2.0-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.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

textdraw-0.2.0-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.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

textdraw-0.2.0-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.0-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.0-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.0-cp313-cp313t-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

textdraw-0.2.0-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.0-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.0-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.0-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.0-cp313-cp313-win_amd64.whl (939.5 kB view details)

Uploaded CPython 3.13Windows x86-64

textdraw-0.2.0-cp313-cp313-win32.whl (856.2 kB view details)

Uploaded CPython 3.13Windows x86

textdraw-0.2.0-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.0-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

textdraw-0.2.0-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.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

textdraw-0.2.0-cp312-cp312-win_amd64.whl (939.9 kB view details)

Uploaded CPython 3.12Windows x86-64

textdraw-0.2.0-cp312-cp312-win32.whl (856.1 kB view details)

Uploaded CPython 3.12Windows x86

textdraw-0.2.0-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.0-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

textdraw-0.2.0-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.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

textdraw-0.2.0-cp311-cp311-win32.whl (861.0 kB view details)

Uploaded CPython 3.11Windows x86

textdraw-0.2.0-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.0-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

textdraw-0.2.0-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.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

textdraw-0.2.0-cp310-cp310-win_amd64.whl (940.7 kB view details)

Uploaded CPython 3.10Windows x86-64

textdraw-0.2.0-cp310-cp310-win32.whl (861.3 kB view details)

Uploaded CPython 3.10Windows x86

textdraw-0.2.0-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.0-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

textdraw-0.2.0-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.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-win_amd64.whl (942.0 kB view details)

Uploaded CPython 3.9Windows x86-64

textdraw-0.2.0-cp39-cp39-win32.whl (860.8 kB view details)

Uploaded CPython 3.9Windows x86

textdraw-0.2.0-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.0-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

textdraw-0.2.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-cp38-cp38-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

textdraw-0.2.0-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.0-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.0-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.0-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.0-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.0-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.0.tar.gz.

File metadata

  • Download URL: textdraw-0.2.0.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.0.tar.gz
Algorithm Hash digest
SHA256 2c2cf7a47696d66d48d107fec41cdcf3cef4c5e6b739fbbc37e0ef3a4b6f03c9
MD5 7c1dd71454d36381269fd44a6f9ca512
BLAKE2b-256 668ef7505dc16e1376ba1c465e8274990e549502a0ea8212c057abc9bbc15ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b95c2fbf4f212bcad50d44401eb9646886b8c012c8bc37d2a09fd6f79645706
MD5 243b86d4a9668e788e9a5e925f090ba0
BLAKE2b-256 2d61fe7b4f0bbaeca23b20e8882e100efd82ee24bca1e461ae4d7d4c15850669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24e680ef70cef3a64d8bbe51566ae564a01b03fb8b21d7f3c8b5bce84675244e
MD5 923d4efaf9dd5fea7d15fa57af745071
BLAKE2b-256 fc428c0b19dc119c26ac97835c3fb146f18f8ad10f8e93a1cdb8bc491446cdb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e92f53302825f03413ad4aea9e7e18b48705d1f5bb3ac641e93153bcceb1d1ba
MD5 9823541b38ffddd11ea1faa718a8848f
BLAKE2b-256 de45b27872738af4ec5f783fab2b20021bcb5a6361a1752a5893028731d28990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb0ea295bc1092d725a4c0f89ae86a09f39f7ae4956195e6183f7036a85b84f1
MD5 d1cc66d4782c1e076e96c218d97e1efb
BLAKE2b-256 c8c5e0e8100b45868eaa12ba6c541aec5d57e64e869778f16f0007f4f42d92ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e293df0074239f388dd32d1b03a84d1a6e3e024e1110e7ad9d320f7d53889bb
MD5 cdf3e59919cbd03adb5dd0824d11ed9c
BLAKE2b-256 48081137ade35544bba5f37c176242e7ebbf9a29b203d85a4c74b0d2ce0dae2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6cdd290fdec65bf8ca031f8c2af5841b19edd9e55ec23a58eff5aeb5150d19c1
MD5 68693c55b293c8b092d20549650d963b
BLAKE2b-256 06a2af1a14e5358360ebfba98baa989f163546de9a4f0daaca3f83c53305fef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42b1a86179307000a0f027593a0dc12f5316db515962af7b53c5293d8cc0d0ed
MD5 77aabc8f221975a63f5e27440ff57574
BLAKE2b-256 952536f1c2792299b0200a61e382bb04ea9a3d68cc203fe7b878b8c1fa733d4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 816a8889883a1bfaeb724e5fdbc47884d71f2ec92fd52ed8f3f810ad3d14e0da
MD5 fe8924b4a5bc30daaabe2d5c0ffc87ab
BLAKE2b-256 fa0e331bb40255bdb6393cdd27a21cdbf9b043f57eb6592caf6713f9b73e5eed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2867571d08b0738f3506be0db7dacc5fb0cd703ea28d3728bccde12e26d2a49a
MD5 9d69d18983554d3b2b49a6de10fa2f85
BLAKE2b-256 0a6793bc3f224de5dd89e96106d1131263d303fbaf4856550a79760ce4e8cabf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 adb2c0cfbfaac7c497c4da59b5a5e726c4168b2e1b259ff56216d7f2646a49f3
MD5 26de9854591e73a4b16e22982045266a
BLAKE2b-256 a5ca3845dc5794e92b47f7c968ed7f44f6dea94150462dd62a5f46f8371fc88b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45a01d46c1a83cc9ca655fead3b9e3d71d979569b59bd86ff9f2a21c6d1607d0
MD5 d2b8ecdd66713c515ba3318a21d61b74
BLAKE2b-256 c585888f004d6bb0bc1299e149322acafde15b93353efe2e6b973977842c1de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc12b963922839e0fe2388547de5d6029f7b7f0a87e2755527bc322a47e6c52d
MD5 0bd5a20b0f44c1092cf1c00f81520043
BLAKE2b-256 415f62763599bd8a8150abb9adeeebf372f2acd063dab935f9e3c628893b188a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65a6d008b84654e80d60a8e6ff696c0ab8127201eaaa950da332a57f7647b4e0
MD5 0e26e6608d727ada0337dced9bcbe65b
BLAKE2b-256 2a0fa623e75f4f7b4b604000dd7a283e61341190b1af15fa6dbad31609ac2676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88c0d91ebe3502dbd9faa117bb46b4a69bf4bee7a72bc7e738c6f9211dcb4067
MD5 c8460af9eae301665e3339540a511cad
BLAKE2b-256 fac9aa6496a7fb2b7ed2722550deceaa485837c4170507b6a70a09039454023d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8dbe3e647b6f49f6b183e46cb0529d411191b4b3dc4793456de94a64795e337
MD5 df3a36539c8f4db867d962bfda653513
BLAKE2b-256 0f571a7b08c22c2e09c9182b25ad700edba6eaa1db633aaf1947da77a897868d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8b667d56d842b0e183a7792caa9e813824ec0cb5a88d9d0a5aec1562df26c43
MD5 8700af43355e223a58097e90080e80ce
BLAKE2b-256 af09b7f029b303d37db449735c38c90bf444b5b1c6841e6249ff2e3708bd6510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6213bce50367d05af67c63ac2a645588947a50ae67f7383f975a33592c3541b
MD5 ea600462e121269d6d4299d1107ccfab
BLAKE2b-256 467f25a9f8f499736f66953d8533e26341879ce6ba469f8998253b31def1d015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2622f0004882c8e73dbcb60f85a1e3219104d156029002c3cbedf12367ef5df8
MD5 b665420e5e58506a0139abb1dc18e67a
BLAKE2b-256 10508ed50a8dd3c42d5f49eebb05302cd8564f6715126f304e8bbd74e6db042d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc26257f4413554106d500910b834e2005d3591064661491db51b4679afb96ae
MD5 1bd7252f6e6c00316cbdab2be4e126e7
BLAKE2b-256 6be91fafbd933cd511fc6c0505e437653198c9e2ada2f35684d68e10c4e39a19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 249fbfb24a5a1864ae65cea2057c07d1810eb176d126627c1dacfa9506d135c7
MD5 46c08127d51a4e2ef5577ce56fad2488
BLAKE2b-256 9e372053d224bd3e3a9e02546b42a221b19368c605613385bda4b7733df619cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c18cf0b716b022bc7d989fa684dbc9a2a6af4bde05df339d054572d883441e5
MD5 75d72bc24943ec42dc34da3dadb0c249
BLAKE2b-256 854b3fb44a7bc1a3ee737d6b5d2f02dfa4f58e6a27d9b2c5d527dc2788eb5d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95a80fca8e079a2d6c5ab05e1e9e028a8e7103c90a3ee8da6be878d325386de0
MD5 67f71c8d8f1614b765bd4baa7e1165b8
BLAKE2b-256 6c982e98e6dd83a4147cf5ae630dfa04a3065c24b3df058b8424a07e9327c781

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d1cc9f6c61805280fbe3e662ebc14a7fb0341d51d800184ff00c817adc5e79e9
MD5 c2ccc42b1e547572223f6a0fd07d0147
BLAKE2b-256 9b5047bd631c5c1dbb946ce764acc7adb6b6bdf933fea515cb2dabb228674bf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 949ab04f240f65281fae4f2df2ca5037eef66a26c01194dbd9f7cd7cd3667419
MD5 8cae0beac791ec166843a9731f9d0093
BLAKE2b-256 2d47c68f417c591fd196b585d67cfd7bbbd10b71d89cd95e29c49ca11be39773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d4256c2b6f360e8e73be1cddbee471793765e2fe42bf267e1e3f217d53bf37b
MD5 484a3abd32da9bae4bed6ae04c166e89
BLAKE2b-256 484aad18704641c0e904bbb40b5493dd361137ebeaaacdab6ff2d678496d6c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 629a34f816f91453ad0ffc0145738a25932a72d5cd5918439cc3829f3613e99c
MD5 51a284212ad14c7ff4d5f05173030a86
BLAKE2b-256 3fa4d66c7664714c0070783b5f5908d676f300751b959efc6852152f3499338a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa29841849b67875f2803b0b0755262e55c59411a426ac2e5cd619026b9aef87
MD5 2d55126f61671242b71f0d688f4629b2
BLAKE2b-256 aa2dd312782cd69ccb46463474e079c491446245d2512ab73c6fbcea3db2e8b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85c9e3cb640a05fbcd3207ceda61f4cdf1d510ac0ecf41e944b25c0052d47248
MD5 865962e9c0f4011fa02167262e3822e5
BLAKE2b-256 4f98a9582c6f933a0497e5cdc4c7c21dc31255f26202f74670ab38f7e57ae6b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2117a58d6972f448a00d35c62a3087d1ea25ce779170605ccdfefa74cb92e268
MD5 0d20bb459a130609a3d07c87d8df52fc
BLAKE2b-256 60664c91d0b04a0ccbe6cf9cea789e30e4863c5ac5ef7c832c07f630a6cf5bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3aa56a8a7073bec3b461d5cde49525aa6d84e6435a45fda0a4da4f679735a993
MD5 bab59f091e808f3a2fc70bab6d704a92
BLAKE2b-256 fbffc851cb79ca5c1aba4aef6f75c233c86a1df4f7a3c591ec17a3f677b5c377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bf0c55cdef3c44a3fbade841d8daddb620cbd5190d2d21c758847a33a44ddad
MD5 e1759268dde68bc60964e07e4bb73af0
BLAKE2b-256 c4962ef9efd292d84da1a2ac89bf7d0cd9cbf779d8b22625b26290366556c644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ade519a4cf5965ae7c593dc78c21754706a666900ff877f1e1ecfae994e14cc5
MD5 a2f221b864f378dfb303a49fced4188a
BLAKE2b-256 be5ea89979c0ff004dcc839fbc6c4279fe73ea0682d503309f8a2e84f1b53ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5068b6fc785f4e29400be05a35a17a74c91e7b3aeaa772ba3063f6d3555b81ba
MD5 4b219846e2dc25550e74c2d867cca0ab
BLAKE2b-256 e0c0541a7a5d9d5b997c3c7df9d295b6a05e63424fe7415ce76f0d118cbde064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cefa5eb32042d41ee7ebfed45774a6c3ccddbc1b20c378be3701a2c3595e9ff
MD5 56789382427221b4cd9f858ec9d35223
BLAKE2b-256 07da2a5abb9bd6f6d3538a2d73c936960810301f590d4e55bebb13c4eabc71fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1790e2bf2feb3f36ffff1c33a8332517ff2a9ce93fbfeac15dec785b3571b37f
MD5 b228ee3cc1e2544ac15fe8e9364c0a55
BLAKE2b-256 535103a99c1cddca0e3df42ebbba5285019432fd983ad9c8f1fcfd707d9d52bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ee33425e64f4e3a858eaad5fc1f9a0ab4a4da1c50ff7fdfb2dbfdb6f68a006d
MD5 4a13da7d1bc5626d42bbdb0946fe8099
BLAKE2b-256 b318954a6beaed1c8a838d96729bc650333a2d29c7f1c65aad290a3bb6cc74cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5aaf47648810ed184b1db030b6bdb8b068d6115fa27806dcff59fba36cd3f3e
MD5 012e08b4f247fca935d612d4fa41589d
BLAKE2b-256 560d5ec6eb7120e51562d7d2108294c32f658a626a56e19667e397677f7bd9da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 462663c542a765fbe44215716bdfbace33f68ecffcafb00ded53c03f5d3b1434
MD5 8a66dfc23ffc9a7809b7d6428dd76817
BLAKE2b-256 446a3e6a14ab8b36b1bc5d829e409dcd76abaf22c4f17ef90227ab4e7e306988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 328f39f4510b33eb9e5fe14b37986bbc5b35e0c096836d1b0baa98f0e350ae82
MD5 a2d2ed190b7871da19a24e5288304d27
BLAKE2b-256 c448fc44c164464ae5a5df70208d620728f3091ffbebd2e825b1c805c7b89322

See more details on using hashes here.

File details

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

File metadata

  • Download URL: textdraw-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 856.2 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9ac27d05104bb86a4d66a5afb02eccd9a667027ad7d78c9ec4e2458a72ac8c7f
MD5 baecaff7a9057bf7e1da715eae80e840
BLAKE2b-256 d4ba0b312a2fc0972becb6ee7eae342cd636d6f82de52b33154a8dc4f75925df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd436511ac9f3f962d062e30b91532f8303d2932150411c465df27b139c77dbc
MD5 0696c25d9b7c112b88129b4e106b96df
BLAKE2b-256 b1624b20eb3e92ff239d2c6d425fa6331bdfd01249a4a7a5adbb1583702c2aa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6b764d7ed77fc448b8b6fe6c3fb6470d9293cf8e96737a40d681328f5c40054
MD5 2ccb21437238553540a85c6a16fb79dc
BLAKE2b-256 dd99521ad3876c265bc8e34a8c37996efa5952d63277f61ef18d0552f2dbe11d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f7989bd73e8b18489d65739a9263fb373171a61efff8c0e17c2ab7e7f3f1f7e7
MD5 0e4cdc8a97b805547566eb5499304e60
BLAKE2b-256 48fb7114b26cede6da943d0cfaa5e7e17828ef58c13ad74065573c42d481678a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 437487ff650d6d5f94f74f93b16d08ee97b4ea698b8f7632cea1336d4fdb19f6
MD5 1277181621ea98de0ae3c21ce094c520
BLAKE2b-256 9e1e8c242a2986624d701e5459c76c10ded2c9ff4b0e99b59798c36ebb550e49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d74badbbe3ab69e7c7c2203a1e9668791ca0ebbb08b2e913ab10a5093a24dad3
MD5 fb6a6c89beb78de109d4f9c1697e4c15
BLAKE2b-256 729b5b023a886ab88be0ef4b8077a11fe8f49534c588ef04b58e06c44dcf54dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3cf7c0e45b620d15bbe6a84f890f239d17ec4e3d5506e4a36622bd05e9f68cd
MD5 bd335201ba6a45709753cc01b4e6e24c
BLAKE2b-256 3fe57e161131389135ea4eac565c2e5ab5d3973da0094a4a4b50ff6b46bab2c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 06ce219d5054e0ae4076e2b4989353878d4bef5067ed270112a439933237a527
MD5 0eda5388e53b4f425b89bebcff1ce1dc
BLAKE2b-256 939a565e38be772544ffa022d9682fa07bb886f50108ce709fe89102afc69467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c05880a3f512019f8d03be2eeefe4ffe657dcb4a078fdff08658de75bbbd2fc
MD5 da69892c053b29a234379fec16ce7ea1
BLAKE2b-256 dd676d199e2a34195c9e26c5387f1ade21ed77fa2fe3fce394cf617aa6ace2e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb96e4d0bbecfa4963bd8d7bef51246cabe21f8963b91c62c6dc3e11bbe16f10
MD5 735b9c9e195ca7aa79898e11021c17e4
BLAKE2b-256 fa9e199d23730f8fd63a91d0fa9b1ecb4928342277334b9f75bde70e49351558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 99a35e92a58178b237987093ac506772c2d906e4d6bf97ac7d7e0072893d80b1
MD5 755def64a7087e9fb758515b202424ca
BLAKE2b-256 4023222db8a841d40b42781fd054f2779bf2a94605c50598f0a264e9a98940bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f20fb001345c95651a02d9253c73a4bfb4f08c9df9f2d9e5acb19ca3e0b7ff1
MD5 e240323416abad9d36f0fb813c4859df
BLAKE2b-256 b98cdebdd93d5aeed1b1a48ee8f4bb756dc3e5c71a3daf3f4e29eb67565794fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a619133e403185b8c102121e2aba0be944760e3882f381f6376384f0827ab7cf
MD5 4ce289b986ad6d928a3b79d7883981ee
BLAKE2b-256 92c5314c549b824bdb5307e918afa29c64f0644eab4ad6caede56b21c7487c20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 27452dd8c10c62f91a08271290e814e0e9614d8526692965f057100b63846e83
MD5 5dd6edab12130109e40ba020c59acace
BLAKE2b-256 2bea551668805f5e151368568e711bc384dc64caa6c3646cb56af84ef226b5f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: textdraw-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 856.1 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fdb74fe335f68b0ccfdbb23ed19734023e37501bd4eb877760943e5afc3e4001
MD5 389beccca5a058b8bd44c158a3297596
BLAKE2b-256 ea65d75c5302c387ea20412f80ac4b4e4bfbc2b205e09b8c791ea9095fe97025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32dd164bcba174426dfec7a1415c904145e7a4e3ac348f09c61254d86a419424
MD5 5b57bf69ca21da7984c2087635eecb76
BLAKE2b-256 de1f90cfeb3e02dc29da655c431dab2b2611ea489ace6a81877ef76af59bde8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0abb1874e2ccf9689636e6b1340586c764ae41f0a43df0760c11c9a7d658c145
MD5 1ee053946a14d8159cc72c180c2e7b35
BLAKE2b-256 62339f342c8bde8b1a165b30cafc2558d4be488651a8bf88e7e4d0468ec5091e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fae80c7d958abed691761c090b8cc1f60de5831d34ed35e9ae0464af0e803a3a
MD5 ae840beb34d09724163f48ec2ced9ec4
BLAKE2b-256 62e40447d80f828ee5a6d7dc8cf7c04ffd3c7f9f85910422c9e1b4429234ed80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5260d310f137edbf343d70db6d7d8239242e828116fabeba5644202289a13b1e
MD5 57764f3168d1416e3bc2dd41ead29ce3
BLAKE2b-256 0f8879198891d909a2f6296de1fe5a9360226b1fa1843f23703c0190bf47219e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 487bce445f591f050219a9cb09669683e9afed69e1a9cee4f9aef147731f46be
MD5 559d6a8f63f8577e81ec89ad615741ef
BLAKE2b-256 f6f8c9779e9bd7b2dc5c40a0d72e0a0fceb7b305b514c214a27ab8a4d190bbda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ee5f4698f21f9648fccdefd7e543dd0b29e30dcfd08944dc05be9390b463d64
MD5 71ee282bedff11cc170d8e6bd0d70482
BLAKE2b-256 e077a12df004b6fc1e78470327c11c2cdc8875747301f6323f4a8b09b4a35449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e54f7bae1178ad0df921764700be382faed961f74db2f0054d94fd7d3709988
MD5 481e1db5d56fb4d65fa099ab7223216d
BLAKE2b-256 1aec36ec51518ce9d167547867340a030d1d58403cb7ecf21a83d239d2d95c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cbc6eb5d991d8f5b44e5edf6ee54f7a71ed381b90df03690cbfe87dfccfb23cd
MD5 a16545e2aa74d8207cf7ee2c4dbb6f66
BLAKE2b-256 b74216d3c6df9bcea2fd405761ef6b0918901f19459611ee53db624b9c2670fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c95919f47e93d727f05d47f25a2b8be8aa892590f663079f7fbeb9126b3cf681
MD5 b4e2e7d2e39810ae2aaa0270eda7d965
BLAKE2b-256 aaa47f6bfbea7221f0bb9fbdf64d63d83049f5351d0483339c7c1624c342a247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 760145c80ffbe3e6a98d97ef9ebfa1ad387a7284054a6ab1bb4f1dacfae10b1b
MD5 17204c2570ce3a32db4c9b157333c58d
BLAKE2b-256 c7a0e3814fc343ddfcfb29117911bc43ba4868f03b9aa37d3154ef3c096bfcef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7a8d5e298ee6e56900e5b98bf4b70b5bfa510173653a99b2dc0236b4cf4c840
MD5 7f25d6741927dc892eea470d83e53fdf
BLAKE2b-256 1042c9a7106bf7437ac89ff54e71174b3bb19efd637765d9933028582701ad5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f925cb7d2ccd1b49dcf4b6f8379059e810f97a69958436e31d80561c9d1427c
MD5 6ea6cebba677f688b3a39de5c7841807
BLAKE2b-256 3a071eac4509fd8ed61ba7cfcd4cb3567b341bcfd40b8b8bd164e46d8d61c5ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6119eeafcf58505172fcf986a630e4fe511751f72753e3b8f35829fab403575f
MD5 ca6b87b44738d4b6cd8ad96a4b958748
BLAKE2b-256 b18ccf9362a59a7a16ee93cb8c1d4e270868c3a00ba0488d6d2898b97aaadd95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: textdraw-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 861.0 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4a30f65214ccc3961898391318eeda81e851466f5ee26b05b20af87fe7349842
MD5 f995984476b731a7b48c6e727af017e7
BLAKE2b-256 4127bc3f9da82c0a98a449644e98574232d585fe36202281450cc2714493dc93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87a6fab644a0c6629d2d5a137b253bcd15538b085ab1b0832b8587622b2b2ef6
MD5 3a227a37f13fae7c06de1170f5f21bb8
BLAKE2b-256 17dcd74f37a2f94264d2be5eddc44c73f4c77e204bd2fd87f4b1fbca48ed5e81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 586977690eda939944089a526fa46b41671687636813f1cb0446a56d5b952d97
MD5 d8480d80d9f0e69421b8dc85696c207e
BLAKE2b-256 b2973d4d4e9f2cfff77c073ec9159003cf08c0b8f64a0990e5f4fc21d1b2f6ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 02d9a5f104f5dbf3e97e1ba578d5bdbdbbb64621a13673ef583d2bf3648efeba
MD5 a805a08450464b4650d944836850e183
BLAKE2b-256 b77a3f4c378a14959ac9aa21651e2f2c18df58f63868ad41ad893229acd1784c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66a1409c8bc792d57b727e18a4c4267531b16afd749502a24609c6246b9a7e7b
MD5 8e36189a7d566dbe3b7a0d1c5c910e39
BLAKE2b-256 0cb870a95cff542c115765093ae0ef4032e6d8d17dbbecd8790d3e2ab915c8b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12293bed38bc371e422e1aa0ed34c92491f2a783cf761b4f3013e7ebc0e84232
MD5 5a872577caab99a748e6067f17a6668b
BLAKE2b-256 f0f9492e495ee68a29925affb1b11816a05936486ea4e0ddec0d1e64f0ada067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4073e30479ffb74010b89f72f0cc330b2eab650315a2d45ea89a0cd339bdb13c
MD5 20d4bebfed110ae0464911b5d8976532
BLAKE2b-256 79fe47e9574bbea563261ec5723bb0b73d5ec20d1707f32176b079def494eda8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b2ae6681aa73fd2a5429b9b8c9eb6bd663d5c705ad77664047ded1ae1cb6823
MD5 f075dc643027ab18db58f285e8d06da8
BLAKE2b-256 002f95f73bbf6adbf458c4e9e68811b014091190db1b7d3aace15c4d29f7df7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 678e02573ef24e2050c37d4060ec5272678d586636c494afe91a771aede420ba
MD5 1eb2cbac7788d7f1ff3c5ad5edf18762
BLAKE2b-256 9e11ddc8e19c9026dae85afec07697cc9f26ee55c6c35abcf9ad2a717680c9b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9e1f35313953362bf31cf04fc3a3525ccc973179264f82798af85ce8fcf18d0
MD5 16ccfefbb147edc43d0a2d099d5737bd
BLAKE2b-256 c382145fbaabe9100d723407ae4f2c8f45d550e0852f35e470ae5a05da6237fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 55c68a004d88eca14fce612af6f2b84bb4106a32fe9a97b50fd9feb739a88ec3
MD5 014957fcad05f5f5f5d91fd85e07cce8
BLAKE2b-256 1172cf95abc12712980cd6b8f7ad31529a2f44d93ff122cf17c14d839ac68c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65b177a91087a5dc1db22cdb84c1c543b98190c9b775fd3abc4758c4616c4c8e
MD5 fe9e84d7e8f091126d6935152de40341
BLAKE2b-256 6ffafd3e464ac08810938f8e2604afcd56d74e5113329b90808b770686ca9307

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 759c2e358c239380c7eb9c6bf6e10934b098de50e23d569d6a4d42d22059e029
MD5 da1027a6dd15d14175099abd6f2b2208
BLAKE2b-256 47db63c8cfdd86ffeb76b402d906405560a813e07265b8b4516e1e2f5adc5bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9eeefac8a6dd3b45e136af07f6a6b29072abdde24f8955bbee9540a9261253ff
MD5 a83a41377780bf9dc4b2f0276362552e
BLAKE2b-256 e7795a222fb0163971a15ca7d20d0a4c49760a2ef2184b3ad9f9dae9f786cd53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: textdraw-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 861.3 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e25d197ddfd267860a13026614d7510f4ff66eb45a3b5d7e793bcc949be91539
MD5 39382aca77241f40be4a5aac909706c6
BLAKE2b-256 a212a55147b2bfe0b492e6d61cb0ca1b796bc69548a93869d3a6ad6f6e500dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2774edd1495c43547e4c6653258882a27654662de12c06cc57882ae30d996f7
MD5 51e8b756592eae4bd8acc3eabb563c24
BLAKE2b-256 024381e0af211387441ba53f999ccd66cccc35d5c33f0ec1a7193016bcb47a25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ddd833f808ca009db8b9a782d481fe12deb07b30a2e58d7b985633a1e17583b8
MD5 23f12a891bf77d6eeaf7b4f3b2030a5e
BLAKE2b-256 602ca6f8708793441d26af19936c477704269284859755e4d6a60ee38265ecd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9b308c336b48d9901320554a17284a897e66d0b11f529d810941ac363f37b4b
MD5 298d975c4d9042ba78e2268fa074def1
BLAKE2b-256 2f87829f56e36c8483e086d086642894dcda0c186f58876ea02bd2d8f3cc6a00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca0f6a8736a1aafafc694a41a72b5d038771ea116709b46e442d7ad62008a9a9
MD5 04d8550a559d7f125f7df977f5cf440e
BLAKE2b-256 7f286f1073fef1a54d07be1475e5f1fcb9c4948c3eb31c5367744674063bd981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b2f2d25bd3083fc91d028fc0cd92797297a845652bb75814448669e2c33a3d4
MD5 77126dd7b77f77d5865f9d27806cedae
BLAKE2b-256 44ff2a74c1045f60a7a79774a7edf07fccd02d9b68589062b2405cc810419f8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80bfc83e31609de9ccb56a3fb3827dac33dd0622b4972f87416c1718b8019576
MD5 cae29bde8e515ad91f5ddc52ae63f476
BLAKE2b-256 77958820d735f32ef7fe80afa4450f2457b5e4f4c27a7c874655c39fe46bb079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 586b52d1e67351c3fffd4219a2e103a8847da987f5ceba74870d23923e6cd4e1
MD5 c2e9114550132b4c486ac6c295bee911
BLAKE2b-256 31a291bde75d7f5cecfaa096d3d0d4fc15ae94078c05f8b4c5d5d0335f07377d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77d0ade517e6f2dcef94a5fedfb972841c59ce1ec02b59cbb94e7e3319bf82b9
MD5 e78b2623889fe3f06b27f6b36ccc968a
BLAKE2b-256 1ceccdaf7db061f589fe3a421e61f8ff0483464863929e63657831b678706698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58a12bfcfb80ce181066beb2bfe7f88da7b919aff4e8555647c652873fe33354
MD5 7d8851f06561cf82722efcf376cb0d16
BLAKE2b-256 206eacfd591a6b6815993f78b3cf9cba5fba9d03106d8ceb4c429e1b035971d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 15c8da3b26f08ab0852cc814a9e2ffe1d0c993105a8b4cd6fe085465c0de0b11
MD5 e74fc0ab80c63424bac3f4245e255909
BLAKE2b-256 44e14f1ff7765ec209a5a8679c695b84eb67aca62289448b90318330dd822686

See more details on using hashes here.

File details

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

File metadata

  • Download URL: textdraw-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 942.0 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7b0f3b8955f799cef3a188417463e5eb03d5cfa455b9680140ce481619bff3a1
MD5 14147774a7721c5b4c4b7fb2cc1270b6
BLAKE2b-256 55612a31a12e6eb305a8c91ffb9d018d80983bf63f76e561e6f4a007b7c23cdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: textdraw-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 860.8 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4532bfb13a2e929f451d1e121e529180c9335e15a41cbdcfc0b282fc1c8cf76a
MD5 28b71ba2594792e36c99470fc99e47ae
BLAKE2b-256 a4ea75e10e61b312138ea03110e2aa9470683a8a36c52ef2d8387dd020f71d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c5b993ceef0f6ea35726ae4d3abefbeff923b7815087df2a8cd9236456fd87c
MD5 6fba40f056708de61edda45271543559
BLAKE2b-256 040b59fc34fd4a7c128e571392faf6862db323befa215293e9385eb0e72102d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4865d0b30c45a6cdec385445b41e6394c92c97518772664f0d9c0bac31e341ed
MD5 8cbd5478f170d021bd7aa7acbc99c78d
BLAKE2b-256 06a5a225c0847721bf3661835ddca4f79f751439d545fd57fa1eea1682970852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58b6d4b4b9802ea54429eb8095a7e4a75991a1d9beea91546618b0d26decb6fe
MD5 747a8c41a57e28cc50303210b9e73e7f
BLAKE2b-256 9e0cf4f2d1b831174145edb3ee3b697e67053a5fd09addf98497ec95867ec441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7735ffa36de0cc99abd3a9626df5f607b7a85e351a07ee3392fa2aeb5f98768f
MD5 e001551d9582811f0f6ac0f11085d965
BLAKE2b-256 878d7cc6a504386d41d9439388e9fdbaf9882f6523c673ce5dea2628123b763b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3eaf78c7fd37df8c2aaee9151505dab9344132b864e8df5373b8cb94690b6620
MD5 d3498c4276d4ecb4dc7c55ba243ffa07
BLAKE2b-256 fa460abf382b008c26ce3082605f85aeffa377808f79209567131ddae42c1993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6752acc078a080c7492edbae6c7dee3ab0893c309964de35304015c3eba946f6
MD5 bd41333aa439bdadecbde8a24797f11a
BLAKE2b-256 7f1e942c17167eec8a0f1d9b8847f062360a00a14a8805e0df5061ec686a9e9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ed0760dee639104c2191741c102e54d93b866f50581577a73cce71f71a71c58
MD5 df509df575184b6614452170ff1a3ca6
BLAKE2b-256 86af465eb8f1e2987f12ed709dae569f02a392b104d907aa7ff36a0bedf2e5d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65a5ca2dc7c72f4325b65de87a815f1091c2678ac9101d372d6a46b5190a5717
MD5 7c27f9bc5fd90b7d370cfa577e4fccaa
BLAKE2b-256 dbbc8c71251bb66d259cc53bab291a03c2a44bcbbc9ad582443c191e97d36306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e299c5773d2d00acf58690e37047dd9389016eaf13ea506024ce9e8e8aa63ebf
MD5 dd95d56b0ea9687bfeda563e50f61e70
BLAKE2b-256 ab41d9dd34a2634ceb36fc0f9e831faecbd4012c6019e1a7c86974b701528147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c42da83f1cfa0402362b6ffd6c822009e352fa85439751fe2b03c8cb1cea5143
MD5 c5c72153216954300cc3df9d35e7b660
BLAKE2b-256 c4fbc114d282291246dabaed61c73848a9e916cc4b0e691272580c49e58a52a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14680ab295929ceff363aabde6103a559bf02aa57f4d9c168da05e1ab68fde47
MD5 772887bdf938f057b717915685d433b5
BLAKE2b-256 318c12397fa09fc822a55ff04c09c8641a2aeacaf4b9c775543c472863e647c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9344420bbe1b332e9e2655ea9d005296c44180c4d5da92b0b4f6f624a4ab39a
MD5 0f0258ae6fd841c2ff7ae5e439623b32
BLAKE2b-256 995df18516f9b670abe5402255f224f48143521a583b04ad07bb1bf96e394b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 075a645394f0e4a95efa159f7c0572ec6b9e21f660e720e9a1e7409943533556
MD5 4e266af1b373d7e4c313a9b8b08d1153
BLAKE2b-256 3661700f2e630d9b120904793bbcc52a60907c0c71fae2b0860f146b6f11ec84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cf2cc96a0ded443f8daf190f90703486c878eb5289165eb66a3eef60775cb2a
MD5 19dbf544cdf3111e20f4a6fffddc9a0f
BLAKE2b-256 92e12c3b3880745007941dc60f46539786611664283b7d7c6083461a8eb04e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82c8e48c0ba8bba268cc8a5229231043c43583ae920706b1c964c01166f8f14a
MD5 43a577d08402ff56c9cf1165c19f8bee
BLAKE2b-256 4b99e4694cd9efc1047f12cba2c12baace2857e7f6774083deea463589d1d293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2ecc20b5d825bc81549fb905df38d1cdab29b98f8ada2a1bef4acd71dfe19f2
MD5 c4b64766cbf0a20d0a342b1d0d215f50
BLAKE2b-256 6db91cec3c2f3ebf878785ecd6a88ed89efed68f256103f88088000a041fb6de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71f8a64e1f08dfb1db870cd606466d0b4ec65ec90d97dd45bd4ea909ad4fc340
MD5 5c3b28ff2678a579bb70883bb0e50d68
BLAKE2b-256 6328ea140ffceef5892a6fbc04af495462d1396ee660ec4fa7c968d7fa7ac254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9980a592fba708319c6cfa4002d93f42ad99c2f90954d0266f785609909b4afa
MD5 06abecda997d7f4e10a59b529fc7c5bc
BLAKE2b-256 f25e18f0f4b1494c99e7e4f97ef9d53badeb103bffbfebcee0c4a1391d062c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc7093854c1fe797643beafa440ddfee4147a7d217a599ece9ec2ab18c78ef98
MD5 868d12e37fe4468420bbf2ce0fbd12fa
BLAKE2b-256 0e927c0ed27a2b47e354a39d6bc9bc22721b730c824856d84f6693819729e42f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for textdraw-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8c9d132c1038a080578e2513c361cc47f093a59b8cdd450a0633e120e07d4df9
MD5 0a786c963b13326f2b2122d89c662099
BLAKE2b-256 80096f8ccb4994a6d24b0010435ba8406bbf069b2c4c5e4307ca2293605317b2

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