Skip to main content

Python Bidi layout wrapping the Rust crate unicode-bidi

Project description

Bi-directional (BiDi) layout for Python providing 2 implementations:

  • V5 of the algorithm implemented with Python.

  • Wrapper the unicode-bidi Rust crate.

Package documentation

For the python implementation, and compatible with previous versions, use:

from bidi.algorithm import get_display

For the newer Rust based one, which seems to implement higher version of the algorithm (albeit with some missing see #25), use the top level import:

from bidi import get_display

API

The algorithm starts with a single entry point get_display (see above for selecting the implementaion).

Required arguments:

  • str_or_bytes: The string or bytes (i.e.: storage). If it’s bytes use the optional argument encoding to specify it’s encoding.

Optional arguments:

  • encoding: If unicode_or_str is a string, specifies the encoding. The algorithm uses unicodedata which requires unicode. This encoding will be used to decode and encode back to string before returning (default: “utf-8”).

  • base_dir: 'L' or 'R', override the calculated base_level.

  • debug: True to display the Unicode levels as seen by the algorithm (default: False).

The Python implementaion adds one more optional argument:

  • upper_is_rtl: True to treat upper case chars as strong ‘R’ for debugging (default: False).

It returns the display layout, either as str or encoding encoded bytes (depending on the type of str_or_bytes').

Example:

>>> from bidi import get_display
>>> # keep as list with char per line to prevent browsers from changing display order
>>> HELLO_HEB = "".join([
...     "ש",
...     "ל",
...     "ו",
...     "ם"
... ])
>>>
>>> HELLO_HEB_DISPLAY = "".join([
...     "ם",
...     "ו",
...     "ל",
...     "ש",
... ])
>>>
>>> get_display(HELLO_HEB) == HELLO_HEB_DISPLAY
True

CLI

pybidi is a command line utility (calling bidi.main) for running the display algorithm. The script can get a string as a parameter or read text from stdin.

Usage:

$ pybidi -h
usage: pybidi [-h] [-e ENCODING] [-u] [-d] [-b {L,R}] [-r] [-v]

options:
-h, --help            show this help message and exit
-e ENCODING, --encoding ENCODING
                        Text encoding (default: utf-8)
-u, --upper-is-rtl    Treat upper case chars as strong 'R' for debugging (default: False), Ignored in Rust algo
-d, --debug           Output to stderr steps taken with the algorithm
-b {L,R}, --base-dir {L,R}
                        Override base direction [L|R]
-r, --rust            Use the Rust unicode-bidi implemention instead of the Python one
-v, --version         show program's version number and exit

Examples:

$ pybidi -u 'Your string here'
$ cat ~/Documents/example.txt | pybidi

Installation

From PyPI:

pip install python-bidi

Or with uv:

uv pip install python-bidi

Development / running tests

You need Rust (for maturin), uv, and a nox session backend of uv (nox reads this from noxfile.py).

From a clone, create the environment and run the test suite:

uv sync --extra dev
uv run pytest

Or use nox (after uv sync --extra dev, or install nox with uv tool install nox / pipx install nox):

nox

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

python_bidi-0.6.11.tar.gz (57.6 kB view details)

Uploaded Source

Built Distributions

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

python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (505.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl (538.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (577.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (473.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (322.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (419.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (302.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (318.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

python_bidi-0.6.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl (271.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

python_bidi-0.6.11-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (271.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

python_bidi-0.6.11-cp314-cp314t-win_amd64.whl (161.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

python_bidi-0.6.11-cp314-cp314t-win32.whl (157.4 kB view details)

Uploaded CPython 3.14tWindows x86

python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_x86_64.whl (500.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_i686.whl (534.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_armv7l.whl (572.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_aarch64.whl (468.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (296.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (292.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

python_bidi-0.6.11-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (313.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

python_bidi-0.6.11-cp314-cp314t-macosx_11_0_arm64.whl (265.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

python_bidi-0.6.11-cp314-cp314t-macosx_10_12_x86_64.whl (267.7 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

python_bidi-0.6.11-cp314-cp314-win_amd64.whl (161.3 kB view details)

Uploaded CPython 3.14Windows x86-64

python_bidi-0.6.11-cp314-cp314-win32.whl (157.4 kB view details)

Uploaded CPython 3.14Windows x86

python_bidi-0.6.11-cp314-cp314-musllinux_1_2_x86_64.whl (501.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

python_bidi-0.6.11-cp314-cp314-musllinux_1_2_i686.whl (534.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

python_bidi-0.6.11-cp314-cp314-musllinux_1_2_armv7l.whl (573.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.11-cp314-cp314-musllinux_1_2_aarch64.whl (469.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

python_bidi-0.6.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (296.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

python_bidi-0.6.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (319.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

python_bidi-0.6.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (293.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

python_bidi-0.6.11-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (313.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

python_bidi-0.6.11-cp314-cp314-macosx_11_0_arm64.whl (265.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_bidi-0.6.11-cp314-cp314-macosx_10_12_x86_64.whl (267.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

python_bidi-0.6.11-cp313-cp313-win_amd64.whl (160.9 kB view details)

Uploaded CPython 3.13Windows x86-64

python_bidi-0.6.11-cp313-cp313-win32.whl (156.8 kB view details)

Uploaded CPython 3.13Windows x86

python_bidi-0.6.11-cp313-cp313-musllinux_1_2_x86_64.whl (499.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_bidi-0.6.11-cp313-cp313-musllinux_1_2_i686.whl (533.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

python_bidi-0.6.11-cp313-cp313-musllinux_1_2_armv7l.whl (573.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.11-cp313-cp313-musllinux_1_2_aarch64.whl (468.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

python_bidi-0.6.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (295.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

python_bidi-0.6.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

python_bidi-0.6.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (414.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

python_bidi-0.6.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (313.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

python_bidi-0.6.11-cp313-cp313-macosx_11_0_arm64.whl (264.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_bidi-0.6.11-cp313-cp313-macosx_10_12_x86_64.whl (266.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

python_bidi-0.6.11-cp312-cp312-win_amd64.whl (161.2 kB view details)

Uploaded CPython 3.12Windows x86-64

python_bidi-0.6.11-cp312-cp312-win32.whl (157.0 kB view details)

Uploaded CPython 3.12Windows x86

python_bidi-0.6.11-cp312-cp312-musllinux_1_2_x86_64.whl (500.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_bidi-0.6.11-cp312-cp312-musllinux_1_2_i686.whl (533.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

python_bidi-0.6.11-cp312-cp312-musllinux_1_2_armv7l.whl (573.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.11-cp312-cp312-musllinux_1_2_aarch64.whl (468.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

python_bidi-0.6.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (296.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

python_bidi-0.6.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

python_bidi-0.6.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (292.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

python_bidi-0.6.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (313.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

python_bidi-0.6.11-cp312-cp312-macosx_11_0_arm64.whl (265.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_bidi-0.6.11-cp312-cp312-macosx_10_12_x86_64.whl (267.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

python_bidi-0.6.11-cp311-cp311-win_amd64.whl (163.2 kB view details)

Uploaded CPython 3.11Windows x86-64

python_bidi-0.6.11-cp311-cp311-win32.whl (158.7 kB view details)

Uploaded CPython 3.11Windows x86

python_bidi-0.6.11-cp311-cp311-musllinux_1_2_x86_64.whl (503.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_bidi-0.6.11-cp311-cp311-musllinux_1_2_i686.whl (537.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

python_bidi-0.6.11-cp311-cp311-musllinux_1_2_armv7l.whl (576.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.11-cp311-cp311-musllinux_1_2_aarch64.whl (471.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

python_bidi-0.6.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

python_bidi-0.6.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (321.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

python_bidi-0.6.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (419.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (300.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

python_bidi-0.6.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (316.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

python_bidi-0.6.11-cp311-cp311-macosx_11_0_arm64.whl (269.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_bidi-0.6.11-cp311-cp311-macosx_10_12_x86_64.whl (269.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

python_bidi-0.6.11-cp310-cp310-win_amd64.whl (163.1 kB view details)

Uploaded CPython 3.10Windows x86-64

python_bidi-0.6.11-cp310-cp310-win32.whl (158.6 kB view details)

Uploaded CPython 3.10Windows x86

python_bidi-0.6.11-cp310-cp310-musllinux_1_2_x86_64.whl (504.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

python_bidi-0.6.11-cp310-cp310-musllinux_1_2_i686.whl (537.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

python_bidi-0.6.11-cp310-cp310-musllinux_1_2_armv7l.whl (576.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.11-cp310-cp310-musllinux_1_2_aarch64.whl (471.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

python_bidi-0.6.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

python_bidi-0.6.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (321.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

python_bidi-0.6.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (300.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

python_bidi-0.6.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (316.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

python_bidi-0.6.11-cp310-cp310-macosx_11_0_arm64.whl (269.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

python_bidi-0.6.11-cp310-cp310-macosx_10_12_x86_64.whl (269.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

python_bidi-0.6.11-cp39-cp39-win_amd64.whl (163.1 kB view details)

Uploaded CPython 3.9Windows x86-64

python_bidi-0.6.11-cp39-cp39-win32.whl (158.5 kB view details)

Uploaded CPython 3.9Windows x86

python_bidi-0.6.11-cp39-cp39-musllinux_1_2_x86_64.whl (504.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

python_bidi-0.6.11-cp39-cp39-musllinux_1_2_i686.whl (537.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

python_bidi-0.6.11-cp39-cp39-musllinux_1_2_armv7l.whl (576.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.11-cp39-cp39-musllinux_1_2_aarch64.whl (471.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

python_bidi-0.6.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

python_bidi-0.6.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (321.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

python_bidi-0.6.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (419.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (300.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

python_bidi-0.6.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (316.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

python_bidi-0.6.11-cp39-cp39-macosx_11_0_arm64.whl (269.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

python_bidi-0.6.11-cp39-cp39-macosx_10_12_x86_64.whl (269.2 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

python_bidi-0.6.11-cp38-cp38-win_amd64.whl (163.3 kB view details)

Uploaded CPython 3.8Windows x86-64

python_bidi-0.6.11-cp38-cp38-win32.whl (158.7 kB view details)

Uploaded CPython 3.8Windows x86

python_bidi-0.6.11-cp38-cp38-musllinux_1_2_x86_64.whl (504.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

python_bidi-0.6.11-cp38-cp38-musllinux_1_2_i686.whl (537.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

python_bidi-0.6.11-cp38-cp38-musllinux_1_2_armv7l.whl (576.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.11-cp38-cp38-musllinux_1_2_aarch64.whl (471.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

python_bidi-0.6.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

python_bidi-0.6.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (321.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

python_bidi-0.6.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (421.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (300.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

python_bidi-0.6.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (316.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

python_bidi-0.6.11-cp38-cp38-macosx_11_0_arm64.whl (269.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

python_bidi-0.6.11-cp38-cp38-macosx_10_12_x86_64.whl (269.3 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file python_bidi-0.6.11.tar.gz.

File metadata

  • Download URL: python_bidi-0.6.11.tar.gz
  • Upload date:
  • Size: 57.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for python_bidi-0.6.11.tar.gz
Algorithm Hash digest
SHA256 034090c597af250d699299d7e7f1e83eb016f9e47b3b707bd89ab2bdec77bce0
MD5 f687f77da0620f202a49b4b7decb10f2
BLAKE2b-256 cee7f168f2c3151aa05b9f9c9b2f7767bc8e06a133ea822c231ab497d4f36833

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf4e88a6fec81b7155a487cbbea7753a3d9a76dc4d391b4f8958b37227ef2c12
MD5 d6d08174ccb8b619dd4a9d0a61b0decd
BLAKE2b-256 c7f0f6b9d17e3426e7b54c18d05d917982647a976233ed9348a2ef40f1a17f85

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7738cfc7ee9fcdff3fef76b40007982ce7704010a51df307c4a51d378f5ff1ba
MD5 df3b01fd0d0b30718b050783bae31095
BLAKE2b-256 87b0f5b755e1e4807bb403ccad09b1ca4faca52e260f384595e9362a68e378a6

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bde89739a979d9eb3ac48c4882c8a42dd528a7708b0faa99b90b551588bd5f8d
MD5 8bcdf5cd1feb9767af981d8c3e8ff3da
BLAKE2b-256 be93b3aa2631c4801ddd5c22f93e430ed1d570bcb634c4a217e864195cbe7574

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d73a821873c52635321196cfb8d3a231d7917ca284cf2bcd9422f6deb19db7ca
MD5 412c199749ee6fb8a92fb423908b7f15
BLAKE2b-256 8604ef0ba9e878bb5169e32bbd96e3e39ab60e947ae1757b7dd645eb4fc2e7a4

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ac819cac1abb15486c48af3399a5c726e89f0977a3aff205ac162533186e756
MD5 41e40634efebaff862dfe72bb7ed309a
BLAKE2b-256 2741a7903ff2829d16eae2b11dff1cffeb9739373b8fe12c27ab04dda7c5c45d

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83c780f7e4c3dd3f020db75dc425567981e65c6d5571b3c0372203d0df92c834
MD5 51d2cb94686c191946aa266e982227d8
BLAKE2b-256 45c01fb868cf41aab7e22cf01e8a4717c8447a43eadda8ccf367f3660c9005d8

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80cfe97e2d65981be877ae5bd2338c6919a7cc1171fc308c8b8c7c306ba6ffd8
MD5 48ac5e9ea0dbc75ca6ae2e056db9545a
BLAKE2b-256 8ae225192b48e4bedf7491daa7aa50e196d06b46ffa495b039d492845173bffb

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69d1f4ee17644e8aeac93a7238ee2f28d79b0180815441eb511b77e6585aa971
MD5 4de1b8702600e622575649d70a58f832
BLAKE2b-256 3ddddcb312034d421f99b00d2d2b37b1a4b6ce919a3f0c70ed3aa5570b4d1bef

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6b3c853f99172ef22e5a16c8114cf243e351c8e70f72a894164088c2c99d9cb
MD5 df28c21bae2a59aba9153b9a562eda2d
BLAKE2b-256 2b33a076031a95627bef4e051d94ac90ff44dac687e988da4417a387e226555d

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 63d9dcc714d549a5118ebc93b7a7c903a0c1feec8e57f5fcacf98d984b76325b
MD5 59145252b9fa301fbf78db1766576258
BLAKE2b-256 29eb16f4fb6acaf5d381da8faf26a306a255e54417450674d4c004a0ba0545ae

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7a8429d0d65232e314b4f494825c1205abcc3039f42bf7da80424a15b731709
MD5 ee465f4dc043a1156670d8fd5dc110aa
BLAKE2b-256 f9d5080a6acda54809d12736eaf58cd71b930eba431eab78b2920727204f8a94

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8eb09af209cd660fa9689f6ce9e61e73c8afa4829ae61801deea7f6e32263800
MD5 5cd911472a6880a141e37991cb055ab9
BLAKE2b-256 2927b4878ebed0c75833629aefe0b9cbff588df86efe6068d4c100ee8d0df27b

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6623683fe39b9fbf508e3069f17e8e9cab26143f9d9f89c8a8f45424c052df4f
MD5 8a07f71c8405ef7f8b495641fed31084
BLAKE2b-256 9ab613ea093c161da232a6eb534d420fe575ad802b0c8184860fe4f3881fbc08

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 dfbb9ba8343a60daf4ced67c11d551dafe9a3c94892c326e4c216fa2e6eca802
MD5 67c13ad14b232fb121543ec9a45e4b5a
BLAKE2b-256 a1009d16556d2e0bb4a4b2132fa37fc6235e333c6bf5bccd1375ce0a15ea1db1

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c26cd9d81f820159026b1c99905ca12bf13892e3f6a9303359fef42fe6f39e50
MD5 3a67e0891fb9037222ede6c34bf6d229
BLAKE2b-256 fe5c823d93e8ea9e05e77eb76eace84ea9879fe876890da616a41077b8c7ffd5

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73c38c604bfc01647c69ce38e5cf8b4206e2ede91ca3eb8e5d79b7409f17e0b3
MD5 89dc180f332c049cb57dec14c1ae473c
BLAKE2b-256 ae02a5f8763031912748e17e0f0e06e7056b377754c3a084432f6c7f32847acd

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e6c474618a7b6a50c10007f8a9edb50def6d98d297a07a34dc2fb82c344f2b8b
MD5 5ad70487a8f2580eee2ed5f5deeaeb45
BLAKE2b-256 a5f39d8954d038e876386bb36fce4f0df61c6cf5b0664e69ab4c1914420d397e

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 565d819fddb2bbc58c42ca5c97d73da7567f181115011e8f04c76b9d08378dcd
MD5 0d6a3e830ea0679254ac897dfa7406f7
BLAKE2b-256 be88a4cd8dea27cab1eee8ee33be1ee2a948a7a53d37beb071811d2a0aa328d1

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dc112e2239f69913273cbb0c050ca816b145b32037d4266c430159c5ddcdab2
MD5 6918fee5748fc9b77daf468e53c1342c
BLAKE2b-256 67a7779464d0a6a96566f77bf8b76ec3d83cefadd8210ac758f4492942192357

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 879c3fba3e7511c7d01020449d970ca7d6a593f20cfc47c014d3d229a38930b2
MD5 10526db78a2e2c399fb4d9f027d21178
BLAKE2b-256 ed89526f2b7be7c2e0d72dee52955538f816b7855e20d4a8e092516c13cbef78

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 788c11c84b520ea973992cc95751d56b783ff5857df504c1347d99cacd2fcfe7
MD5 1a328b5e9c92344924213af57055bd4c
BLAKE2b-256 b6d1cf4c90a99d54ac01aeb186335dbf5a9cb89b3afbd5adc0b77b5c6f826134

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f400a30573774a1e90c0d50d43c35d9c004afcf53de801bbfd259f84ea80f31c
MD5 c5d2f8fd61b5e0801150e360dc7e5a04
BLAKE2b-256 45ae2b1159ac11e4516f566d83572481a0ca453abe132a43db4c048931676bfd

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ccf1fe9ecb3b02a1a11b103cd2557e2653d82c141b6e2dccec8177e6af5c4bb
MD5 3b77c7e979478f97d398a50299783691
BLAKE2b-256 7cb8561bfe22ac7ad3de4017542c4c6c192d0fa83a416ab2e0a66728c898e937

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 19bae96ff1ee76b3a7dc962598b69426538e3021460cf85a4017437548ab6947
MD5 5eaef2cdbf8f3c5e273642d20d1fa909
BLAKE2b-256 8ebfcba41041e3a4369be495011bd773aaedefbfef59d6c21e121e61f8ac1e2b

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7291e13496cb74fc1b71f7f1e3628586afefa531102bb4fa7af9c2d543efc3c
MD5 c05ce7484b9167b58b0aba355f2e8004
BLAKE2b-256 b70e2839f8671a2201c5e1776e04ac48170e9b8a6c989147fe1b656d19603c7a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43f3e81bdd36f49171b7de6cf471086df503c29555f6f7f035ebe8f8ec1da779
MD5 340d4ee3711f0adf2ab049b3b3cd793f
BLAKE2b-256 4ddacabfc8c055b53d845de46a78b641996a8ca2e4b9f7c9667fc8a54e7c9030

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8fbb6d222b50324fb9d49b6ff0f8566fa97b907a68c00e6622fcf34463104f4a
MD5 2573396ecb5febb7ee460be6e44a60b3
BLAKE2b-256 9078bf20f1ab2cafaf744df006691e0f7d292f95f7c01fbaced92f5970ab3f8a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f237ebb570fd8bbe479b6967374d82b7f0b26f9452c276bdd5f793d83e7062bd
MD5 24835664100451ddeb198b399485261c
BLAKE2b-256 ad0f4a83866615b86572d0854b9623e7c44de51a7d3e21b16880cfeb0fdc1b49

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bdb64ee0a74951465cd4a761e1029e73806ff43b2fe5be98643e52da5cabb66
MD5 a56c2a8ae5165963d0d5b0ad44d313fa
BLAKE2b-256 1cf1c50692fd2cfccb563fecac7c53af00c141bd9bed09fb9cd626e0d765c53d

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc3b0a6e2460f68de9ab98f71e3098bb21bb984563417ad104dec7ab08ebcadc
MD5 6ceb303c07a79c860c06a056b422c199
BLAKE2b-256 0f55a88d71d784144283f4e53a9849c4788c8a5fcce56a1690e073c014fa34fe

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd564b8c583eba2d230d02d0467fd840045f08856b6524555cfff7f32af63c72
MD5 2ecd720f2433bdd2c29832d0eb45a07b
BLAKE2b-256 c58b82979c858cba237355aee8a2a35c317ba412c4bce494e8a51ccb1c9e5321

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60d9bf6c60c022657637f64897e63dc3f5b1c07cb7f0e1ead6150aff5150c5ab
MD5 b9386b9c002bad2c67c018b5993bc39d
BLAKE2b-256 25aa56a51fed9718e751a93ea3a4b894217a04cfaef0704159b400dee5fa5b4a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 959335cd3814cb767fb832c5c71cbc838ccd9231a812ef2cb43092a216a91d5b
MD5 98e28e63e46daa3017666b7acfb29ba4
BLAKE2b-256 fa252d9a3b0c4982ac60b8bc94b273eb7768cca18e92c5041807058fe81f4485

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ff75d1befc335cbe85f834e81554a024f94d9b5d1dd75a5bd99af81a1cb783c
MD5 8e39e8cc8ed13e12c64951c865bef972
BLAKE2b-256 28cf4a919e5be87a352ccb48b0ad2c01e2bca5d1f804d927e17df67904af62dd

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4f4a0cd24c09df748bfdc207b089c00e7af19f3151063f4cd74ac658290186b
MD5 80a39884b5446426365c63b3670dd592
BLAKE2b-256 6376624bf0155d2b4fc2aa73e1276c22b66545a8d1f7280286c7e4dc443202db

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d14f2d400c75e07d1154299463a3d4d14aa5565b05088b2d9b314ccd9fd6dc3a
MD5 1d88bf6f58b3d66dfb4bb0e1d5be973b
BLAKE2b-256 4771f359cfa65a6716f23c069d17b6e2b87a8c673f499753c7f9712979096f6a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30d543b5baf9fca5ef5ec95647aa07c5e38fc7fa0f18be0c61d1d6c0a1032c6c
MD5 8fbf4db06cd75fe070724ef0d4e09d10
BLAKE2b-256 f6513fc218678ac34a99065e45fdcc0209d2dd5e1f7766132fc4c58989a96d7d

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 20ab47a4098577fc9a82816c330c89ff597c31ba69c98bc6a1b6a5737b03de05
MD5 13b3777ec8a75cc29d931fd172874745
BLAKE2b-256 61d91798bf13b0e8167fee6a1bd0c2ec374c8d49a6de34a205a1a67bb8d45fb2

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d9ef69c108b31f38e1f281a55fdedad7774bc1e952a45c8c14a18e891eee397
MD5 1345606c2830280e77f5aa9ff42bc9bd
BLAKE2b-256 ce539c3e47a0579e5a3f168bb18ecfa197d494577ac19a1dd4557ecff99e2870

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f3e1743b2d43377c4da5d687a03430a27f5769e158a9f75a50b05e7e82f4d21
MD5 71595b51f6c737eef04d11f0220c35ca
BLAKE2b-256 1adc8d088a648845e60ee8d3d758251909320d6a51774181d2a3e72e985af0b8

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f563d20481f7d316adf605bb94d5b7182acecdbc4d431d60473e9b1d526d0210
MD5 3037921940e42886d0bab3b39b54374c
BLAKE2b-256 850a7ac8da3629ca8d93a419f5250c240fc13f7d34b7c04f279c8f9a474a2be9

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 79df1099a08e53edb678236d4d76d8de4e3901bafc84ce1788b71f9b96547325
MD5 98d077f599e000822a825ecc20c81c4d
BLAKE2b-256 58bb94c89a185d9c5c6154a72583eff91448f48f5f776567af217326d839d8b3

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36f23f12d9b1c56ed8d82e11f56c6cba7bc3f614ee73374bc7772bb2270e0966
MD5 4f5cc2a04f5a5d1129332bcadffbfca1
BLAKE2b-256 536047cea7de2ebad67e30e5154d846f4d6a49347ca0dffcb76136be57a08226

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ffd728f1f7866ff7399906bbc17ef5cf010b90ce56a1e94937b28a1a4cf5a7d
MD5 a3c2fc73e103f0c351d86efed390580b
BLAKE2b-256 4c3e49ca8310bdad3adedd6265da5c4877368ed528a0095348aa32edd8a0299e

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 380b70d615647646dbe06f7d95dc30b8fdc9b596dbfa1cd3814feb9805c0c8f2
MD5 160a56bd0052dde4a4a604ceab1aa7f7
BLAKE2b-256 f9067404eac40f2be2148cd0497251438e7690f553c5a09916d13d9803f8d32b

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 946b7dbec4e64017680f1a66b3a8534659d889018ac83bd2abf958278e6f62b0
MD5 e76b11cb6f1f459b689b555600509633
BLAKE2b-256 dde0f252c15167d7b175e37514cf7d52cab3a244bfb0b64a5973c9ce6b33e191

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74457b43db34f984252e915828b5d1a4042a771f44e853a5643506d01562eccb
MD5 2d874e619d85da679deda5754b31f0ab
BLAKE2b-256 6660569132a43fff4e52abbdd640b76b761a773c1c1b07f5bf3576be5049e8da

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d52ec8ccdc2fd5c61749d876a9d1eb0ea6543c1676722e1e3fb9d7800852131c
MD5 d5db91734d41906de2027ceb080c1974
BLAKE2b-256 0d9323daba3a074f3b181fbeeef559735cd21ab55a8bad46934ed311696812b5

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3da9e536546f7c62c0da595c8f71a096e0b9a80e94cfd0f329b7b200ef81e7d5
MD5 c1226fa06289b9b693624284a7fba1aa
BLAKE2b-256 0c0c626a2fde3ba831ace3e092544617974dfb99d3a225cf7445987b1fd68b3e

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 721697187f4da67dafc26f63488f463fa35ff2de8668d959fda773cccdbef0eb
MD5 f8c24226942fa09010a806977ec5a614
BLAKE2b-256 787dca9f710b5bc279decae719041795a0ab2fbc02f85a5231cf2e3f4195ed1f

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 302f4ca7dabfe447e707d40e98520551181036c15750bdd1e73292ad8b3d8e75
MD5 d26c937236e333fad8d4f64fe212b1aa
BLAKE2b-256 6c120c599f95cfd3433bb773dba3624fb0f00e74ee4d9f7c0c0455d935cf938d

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 397f7f289eba6ce25d99dbea99f873d699bf9aa030074e7fb746d8f93c2fb6f9
MD5 ee35e1c4e55ca037af4212469314b7fb
BLAKE2b-256 7ccda7ffa9ae8dd1903f3c17a9a2af6c531c92c3f7f7789f5c304ef77f94bd06

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d00757ef7bbbf14d8628f9bdb6b0e168d5e7b03fec20da3226624f11bffce89
MD5 cecc0a1fa791b915e46d20eeafb22d34
BLAKE2b-256 a6a04a29e0bfa45038edeeac9397c0c91aee674efbbaa962f0c32c17aaf1a2c4

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1b41cc6bc9ad78a12da5f987da15e931c771f18ceca58f2fe8ed50f253490a97
MD5 646ea062e8e8def8bf90bf6b37ddecf2
BLAKE2b-256 c41338f195e9d9a144747a2ca5ed6ec922df50534e6bacb2188a27154c9f9400

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0608bddcc1c53dfa5293499de13ca9935b31aa46d1c722c404a88c703d1a4e47
MD5 8c1d3a1925e0920482200f004a79ff77
BLAKE2b-256 04e38912d05e04575a60a0481cc222805331b74154940528a6f419fc5bbba744

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6c92d1cad16f9ec2f2a3ae439a0bc3a8e4189ec227987bed03d5b4056d5eb9c5
MD5 c6ce2e3da2e0674a26900776516f1215
BLAKE2b-256 b07786bf9c4a95f363451e7c322ef76afbe56034da23a2b5532bd774751022ff

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51915502898c45e9cb36636e974aca068fc5cdb9f06b794f49abea5b12f02016
MD5 d8af0e0f7a7dbd24f08d1e8e226785e5
BLAKE2b-256 fb4c5e8d01ed3d2f8ca1116e1e21085a5ca97450b4035138988e5a82ea2db916

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 239a00b2adb5f897d11d7b7a491d759fb9883e71a71cfd90c4147a733b4df4d3
MD5 eb0407b750582f16c00e72788488cb0f
BLAKE2b-256 6e798e707fb95cec1afed3fbffbf5eee93f2a73cad6f1445e17e32c6256cf397

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9435acc52438c3c8f5142b9a17a622927618e80a32eed707343bc375cb51cebe
MD5 806ba890fbc98907d0d0abf412c924fc
BLAKE2b-256 176c4795fb7f3ddca33a981158437ff6bd4c532d1011b9d887f47cff45d035e8

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 539d99efe02f4981171ed57bbc085094ef780405ca14663550a56c6c3e265c34
MD5 a414c68b2f87468c172428906cc3d144
BLAKE2b-256 c5ea0c2ae4a316ea919698ede4201da1c07dc1c2f9a86bd3bce3f9b94b0ce7e6

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3611d13b53d4c899c4f2a7cd8eb897064e8b5546c3c5d1037dd6209c82858a27
MD5 bdc9f5611a7eaa32e172eda71e8b9d87
BLAKE2b-256 09fb57a496606a4faf051a3e851cc05a5bab2a1cd37b14fc738a707a5a51bba8

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 caee7ee3662eab1411b44fef8571b87273cb5235061d7463ebd10e412ac07986
MD5 8e38f746a7a15f0b4c50bf0ca1187b85
BLAKE2b-256 9d8ece62bfec64769c28d537ef0481a36dd9ee42795b2975b41846f1aa82f7cc

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f99162d6c6c9522c46eb213f1bc932829c2602131676c92f081cb865b8ef6784
MD5 2dfc43b1f3b4ee87b828aa770e3d0ec6
BLAKE2b-256 77689da530ac64b961f5dcdcaad03d90b35becb43dd7d244241809da11acca34

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9af2b5c26a3eb960699dff040535a86dc2c0f708087b2d63bcfd6452fe9d0664
MD5 5d98d7442e49e652a48334cfca674aa0
BLAKE2b-256 d22be48c592fcd01409bd09eb1a181c31702f7c048d06bca004b8840d101f69a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 495a76c881d78ab87b57c5270679c9bc3c1de36d8c6596d5e3a5a1b5f9c57471
MD5 64ef93695f84539d89ad3382d0017a7d
BLAKE2b-256 cbfc87f3b820bbee3620bdd89047ee617db49700719a632d149e1c8a8c6ec59b

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ca92a4e460f7e25e434a6d7982d94a4765ca242f527995da70abb5a32003b8a
MD5 e67aa2c1b39d641e5d97ddde98c7f986
BLAKE2b-256 7ee931fbe166932d34860271ec5e0e0ecf0bc4166bddb889a260962a448d8617

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d6970b09f5a3102c0aa192f5258c585742ab4ebd94f637a635ad3448ccba567
MD5 fc96fb09e2d1a9e49405a9e48acceae6
BLAKE2b-256 0819776b39e47e0bde27000fc2e68c2dd0bad023d4c470dcd5ec9c98779a62c8

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83ee87feb5eafc0442e1db0014dad20d52a2a7a140b6cddc8f7bc65918f0a7b4
MD5 7fe2da986dc9635ccdef48e2b31c86c4
BLAKE2b-256 bdade2ff0e5077de577211d7d4fd6a436a97d903d6c65e8deb4c958de901b0eb

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 555cdf9303c40bae1ab512ca427f1f0316a574bc0a48db22eec76ec0fd1213cf
MD5 a6f0ebdae962305397223e8d6f7322cc
BLAKE2b-256 d7980458bf0adcf09f1766e069f6d1265d83b8354146e689927f0d14451bf4e2

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8b6b7fce8f47578be9aebf5a0b6b2d6c157b4e97af7586ecf13bfca5d128deea
MD5 2911e38721671e40cd05c02a9cba3188
BLAKE2b-256 add0ec71ea3e29cc745580ac5477bbf3c9235782ab0c7bc08ac065e4c7cb12ec

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b433840a924c8788f0abbda15d22c71dc636e2078d7d3ba39369cebe4bef74b8
MD5 253cbf1525acf8bdcefd1a47c24e43ca
BLAKE2b-256 a97ceeaad2247b29f736cda2632d14c5959940a4b4e8e098559cd2a4065356eb

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2c759e13ebb81edaac3041697328bb1ca8433b55281723879f6b54e74881240
MD5 129211b6302c682f66adafac35ca118f
BLAKE2b-256 50b11c158a64d745e4916fbc39c6ad700c5b2cf3b4456f710a62f625fba0694f

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af7711cc6eeeadcb1aae877e0736a68e111c73a29562da6106c5e2fbb4dd83b2
MD5 35f29c0a90efe46e03a4274e634f5990
BLAKE2b-256 222947d84a333ee00db0cff74fde2aa39e01953abb360d14ffed70ad9195af26

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 619ee3fe03daec8d3ce12239f0c22455676a063b2bcde361caecd788fae5b8d5
MD5 661e00beedc619828c4f46960eb60090
BLAKE2b-256 72a9f5e4c286ae22fff569eb7aeeec7a5342e26e0ed1ac8202c48cf273932b28

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acccb6d90e694684db2d314db2e2b0d3b8949bf1cfaec6d9808a8889f548add7
MD5 2453b32f3f2115f10e888e4698d8cbbd
BLAKE2b-256 16d36bd8b189219ec128263b7277b1cdaed0cf014199c61e05793be2d9cb0456

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad5d9b8e8a6c330208eba413db506de58f21dbf88a1f1d5d75ef5f9e0e714adf
MD5 17169b322dbbe1e8622b7e06a93940e9
BLAKE2b-256 240c5fb11159f50e9a898862fa40fe98b8994eccd224189bb1c805ecfae66977

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d496f9fc21b7457e12395e54088ab99776966c663b4cd4a74770c7a6418ab59
MD5 014cb7f95a8462a23a934ff0dc01d768
BLAKE2b-256 8daff92408a2882ed7c94c3df9038df48400a5adc345e963d488bf716ad25358

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 969ee7db3e169fcc0b2d2d094826e03cc5798dfd6b3571a340ea883672396cb1
MD5 733df317d2f3efc040bffaf894a38294
BLAKE2b-256 2938930e63c374133760f69159da36a7aba98368ade44ae708215addc4079d91

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4ebc24ac38e50676f65daf7ba6c568789660cb60d6dcf2606d4310dba826721
MD5 283abb7fd77731efe0dbc522d9da62f2
BLAKE2b-256 9162f7303a11e8286b2219088bb863974398a1a9f117444e78bbfcefaef7bc14

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1b5ee069001bf7f4fff109598a9396caa96bb35e1b906b2c6d1bab9f9b2c4bd
MD5 3c93d1bcd3c989724ee78775da74f537
BLAKE2b-256 369eb7da9c128f5ed867a62cb8112602bc7a6b6af783bbac18ca303a8a09b868

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a52f7ad9ef9091e81869e5d255e796755ccf542ade14dda17647cb7d7ffe1b9c
MD5 3b7ba3fd5db72643f716b37c2291cde9
BLAKE2b-256 ee6eaf3e17cb48b87176c209ac4271c8a9aaad8c33f5535739b58336222e69af

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56f27c1edfd15c12c9c348378ccd79166930d720cf316b1181a0a0ade2146253
MD5 7d00fe6b7583e8cf298cb90fd7c2c8c6
BLAKE2b-256 714b7f942cdb3cc948a369bfe2530343f2d650aa17bb04b0b959834919f699a4

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fccd1808bb427d6a6d34168461bef551faa93ce3dda489fcef9073bcd9b34a5e
MD5 5df18e7903b80287c44b2323cc41520d
BLAKE2b-256 98f27507dc1b0e513e46de273875099bdc83a18f50f9da176d02dbc25612bc22

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 62a6b700f3d7a2c4d52a5dccca765711a2414e734360b00365e155698a26e461
MD5 6830162662fe019f0399087379f01755
BLAKE2b-256 6d659b1bc1b056b31bdd658906c95ea40e188ae74c61b1ce89e978fe587a7bb1

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 493655043ebea6fec0edb76053bdad46f1f7352a759ca4deb733f13b3c09839c
MD5 6eadd556315ec6948b2deb47c0d139b0
BLAKE2b-256 f6616db9deaa5f8213506be2ea79279fdf9397e4bda7be42c6f8d638ef334a86

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa2848c3116d619870d114471fcd4a9f1aa43587a002111d7af1e6582f1b57e9
MD5 381b37ba4a92e2ed14283f7aab7cefe9
BLAKE2b-256 5fd436e34e27181df73ef9ed7091aa710ca052df2e76bc20cdfca87f3be67c5c

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ff675d036823bff05a2e0f8cdb13f5414274ff517d13b0d57c15527015eb6acb
MD5 d2a4eaedbbaf0b4c7331346920f5c048
BLAKE2b-256 3f7828623ac1401586cc469f67c1fa7254ba1e1507c1a34a6c75b90dd5e8fc3a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8013c1e6267a929be98d10c3a617171709c8226bd33c6180ec65e560c35b6df8
MD5 fe66e1d12c0f558d72f856bc274763bf
BLAKE2b-256 188e295372d9d17160d74babae10014a67527917bbb7cde1905d01174d6efc1f

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1115f3f02eb836b39e0c986a6b9e92c4377a1e5a680409650b02ec6b1a795e6
MD5 b69cdba68f66cda0a7b5b651714ab17a
BLAKE2b-256 ae6fc4c4c790d697464c77f87e7741c2bc438d761d7783950415d6e238f7a7c0

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56807e0dde88d5ab96880c9d668bda7bca1df83cd30d20cbff5d6b6e6c1e9276
MD5 1e68c189d88a272c4726a13522551a84
BLAKE2b-256 4732cdb85b5aca0c5055a351aee768816ac43bbde6a0f9d2b71866ed41e93211

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da51a3a2940478219f19249fcf7cd45e8ddc197982be22efa43c4763e9d2eb57
MD5 38f7aa077a3253c4599b372892be86cf
BLAKE2b-256 2778f6aedee9fdafd59faba64bc053efcee2ac9ad7d3971311095bb36d542c00

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5695d87969fed5b3799b8a98848cb04fe2873fded46efe9f3f2f341efd1b829
MD5 3f8a5cd29fa7e98fe2a75dc159c6fec9
BLAKE2b-256 a866812b9c6ed40021c5e1a04d5a65c347c339f89057642e48bc2b8bead0c83a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57aa56b1eca5f63ebdd25fe8fad02eab7797fc45ad1efc5eed2a830e2bd2038d
MD5 55762e2bc0a29ddf775b23b81d830d42
BLAKE2b-256 369a8dc0e4613acdcca5f14efe327f6fc0f5f0908288a3c6fc7d1d368ee96c52

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ad5f712a32be30d28eb96e119e85818747a43cea253de6c3160b464b62a5619
MD5 6f8aba5db3c2d9dda166bff33465aed8
BLAKE2b-256 695e84ea7bb7dfdc232f0bc2a58f957320b289a01ad6010098c245d4abad092a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41c7d1914c1f33954aa2ab0e2c309be5d1d4afc75ce524762eaab4dd825c5ab8
MD5 80d1fd5f6930a6579aca699e751c705f
BLAKE2b-256 77fc723f92efcbfb326b9091a6acc1385bbec4e0a3f5850fc360ee048ad9c9ab

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9aa2890661b238730e680ccd6eb06f4da625b2dbc1730052dae6f2d88957192
MD5 dd7759f6d3c5760808b487d63b72ff03
BLAKE2b-256 c754439befffac4b2d14c965928175cdf45586680824adf01fc19a6bcc7b0342

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 490118f4af5a3535923c76be07e937ef1cb4cf84c489b37471aa95455fe923b3
MD5 89260790250427b74b5348dabfec8cf3
BLAKE2b-256 fe71749ccfc054c2bc0935570e2782f82af81624c2d47c234e33ba805ba56c09

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-win32.whl.

File metadata

  • Download URL: python_bidi-0.6.11-cp39-cp39-win32.whl
  • Upload date:
  • Size: 158.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 94f7f66bd7680d3f2085adaeea91c01b3281a79bb5041db1a51cbe8af36a9d88
MD5 f5f55dd411c10aeaaabf5a8b347afcb8
BLAKE2b-256 0b7fe3c1b284569cbdf2eccccfa58e5b8df4bf760bb25e48a13230253ab3e20c

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 337ec315f8b286399e411f5bfc339fc2124db07757409b0595ceb46de087c4cd
MD5 32e60abe388131a6f17dc39d476cbfca
BLAKE2b-256 1964ffdbf065b58c979d993639e6cc422641c48330e58708a84c4b67d6c7eacd

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc69d594682fbedec7d0cc81cd4d5f14fb40b6b365587238fafb91509cfea020
MD5 ab4f42e3561f7689f00dbebae5e6de66
BLAKE2b-256 697ea2d80cac9a3916b015069d4a956de61438ea0232a8ca94512dbf61df4610

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d339c4ebf3c2501d7569971a22e762fb45d8af7e19a0573afe260d69b35fb0d
MD5 edbf81eff060695f0340f6a15c333c87
BLAKE2b-256 919844d109637cb1d088c8241358975ad77e63fa5d250fb69cf2cec0484acf6c

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0ee4e80dd3b2a46868dcc73e00aa59f99c0e1de54a2ba783faf0fddba2ccce2
MD5 d97df8a58afa84be78d11f3a4c1b8134
BLAKE2b-256 ead26c73d5819c7a5a27837884c9de19bc42b3a75304c727778ce79371b0adc8

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55f27bd2cdeca96f46448a741d393575fbedfc70e38e09dbb030ed98dba8cf2a
MD5 bf6f6f18fec7f0720de907fc9de9ab3f
BLAKE2b-256 14247f423e1525190457244e4be2d8ca5d58fe8bc7e7c8eeeb26df05a90456ce

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f9ed312d445a691c0afec995ca4f726abe357d8da500e389f77fb874fa7ef76
MD5 3b8d2d87c22a2f901c04cd5d5fa2e132
BLAKE2b-256 e9025d2411f422c6a27a2ae5bc7fe50e40a1a01efc419894bb3fa879e5c055e5

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55fa5b22cc8c220a6daf077570a8e29d3b607bd978bd3dbc04b445d01a17de57
MD5 0c698ba0a7321f0402cd2d51c7edd7b0
BLAKE2b-256 e47b6a18296577b74cc8a6a46467ae0ae6b42b3424762b61b3b6895ba0de0b2d

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 519eb90bedb04b5cbba0bfc8062984a5ba054a019d81ada34053dc67397d61cb
MD5 5f98052d6ffd13a832d86ea998ac5cf1
BLAKE2b-256 07b99ec04faf44c7270f22e61550a59a71ce45f667e674f0e05f5f238e106636

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 777fb44a6f1e91d6adde36e815024c210b0208f35d00762880257b8fb04dc849
MD5 07a6587b9c62c1793cb7d738a6142d94
BLAKE2b-256 8157e16f520ee040f74ab0f75a1471b0f9f602db8c137660fc749902caa51e6f

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8655ac559dcfce7179b150ebcc207982d4d60e67b3089b2032eed3a0a78c07a
MD5 209a1c18d920f32515d996075d7c40a9
BLAKE2b-256 1205694eaba4fb821b3ae58a8d25394b75a6a1cd75964e0b058a92182c2888f8

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e142820537e08d567c2c017e26df05f88856a03f0f3948209cfcdc39617df363
MD5 b472b92f917572d56c152daf8011ce48
BLAKE2b-256 e578dd072b29e51244a162b31d343266260de89bc1c1949116b1f0c900afd521

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c17393753ddb77377f754ba2a88cacfe3056040a8a5dff8d43f9d5e51bbe1edc
MD5 2ed7b2c0ecbc14b9b710a36156ae7d93
BLAKE2b-256 1e4d8e605d3f28498365953036ec689fb0ba3204f397fad296edf91d25a68902

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7cb34dd8d22ca1847653c0e1cbba8fd96de09c24b8c83b7805eab270c81e863a
MD5 6879e6a3511dcf2b6017779172a9f8bf
BLAKE2b-256 0a967c43d832c22b84567e4e2b1131cb2fa2d3e878949a71e986fba211bd834a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-win32.whl.

File metadata

  • Download URL: python_bidi-0.6.11-cp38-cp38-win32.whl
  • Upload date:
  • Size: 158.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1a639a2c62f825e72eb42901fd1c69296d09c192ae003195e6cf773f92d6bb42
MD5 a8838e5dfca652695b07daee669ec6b3
BLAKE2b-256 f9c1637783355717328bf152b43d0bae07811e242b933697b7a0fa8e915ec46b

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68c3e570f2908ac39db0b269f5648e257fab5204344b9bf6dae80852ae4cbe1c
MD5 62f7c8b5a4b3a1ae573e53f94a32e573
BLAKE2b-256 633b81e21998567d13d07b11c167c0aabd3ca63464837e1f0f08afc252fa07bd

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce2ef68dce82ae4067cf28910224d77b45eb2c2b3904db6eb670d1cddb8d0eb2
MD5 a7a2f5fa61ce05869e1f595c8af34ad8
BLAKE2b-256 b52fc375a173d83ac0f97043898c908e790ea94c0db4caa7345cc682c9908668

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56dfa3c1c13cb89da39a4e8f2f9442e4291de01877511a13f830125d36e9ce5b
MD5 97e88bfcc7ed6ac1ebd5d3fcaf827045
BLAKE2b-256 205f77c10285b4b7ca17c2333624e6c3c2acf90ba7814dd8cf6166d91db3d7c1

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d18916c97855d68515ca2b3581948b6d864c304cd386210ab5aff5e0fb9be2c
MD5 0c7f12c7d439661b41156b97f3cacebf
BLAKE2b-256 db29faafedbf3a6ce462f0e062dbab55c007a1d64b693481fc130e071ea99e9e

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5dd49c11ae87ee6ced68594faa78b34a89a1a3c43647fa6157765f9726f9daf3
MD5 0469fe45d571f910ca6e503cec9adf68
BLAKE2b-256 179f790449e421afaf3a0f4a2e795bb501d517585cd339d37d2aca958381c856

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab8af1cc29c3f400a0f781d50f8ab52a8c63adf2fcef16f14641cd97e06a80e0
MD5 e1efeb87d6f6b916a2d5259b3be1f8c2
BLAKE2b-256 6a08cbcd91b3a67322cf87ba047f50f8aa824ee1ed1f22ddd8b26147efa54271

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 60150bffbe43bfc1e356c0c2900ba643a02ce09c37bc0c553c4d83e5c3de63ad
MD5 fdf7640de6a9dfd9a459521faac94340
BLAKE2b-256 3d6c2e7ed3cdb7626af71c794909da36c91268bd544f89c2e0802a6a4acf7b6e

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a873e6f8ab28b5a56201d5cdb98f4c7d2ff88e636a58659c5ac271e287001658
MD5 a3da88ddb6660f2c719c9057c8507a31
BLAKE2b-256 011c6a078e38ba87c5317b8c9a030dd097cbd8265e5c0cb565e746f7e12403ec

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6aca20472d7040bc1f0aadb510cb20d40b3d6caa4c8bf82d075ba2650a41652
MD5 801539dbf090bbe4c7c06832e95f0164
BLAKE2b-256 b7f44bf739067dfab4eb3a0850abb72a03f4e6d42b99e19d0e0ff883ef5f97c3

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c4dc0d1328321aeb08054be654e1d39f171d5aae8dca931c9332860f18f57d7
MD5 b95dfc8b85481cca091856d5f0190604
BLAKE2b-256 e5c9178a19ab81653f256c78d6524c03b12d530299c86c8f1fcdb8b8dd1e698a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19d13c70b1f7bb5dc69866a11624f3b78123807b4ede18f4f99f656ed86babec
MD5 6d1b6f5a747d9b9256d4e88bcd5634ba
BLAKE2b-256 423aef9eec7d4f1ab72b3e35bc229a90b2ff5660a8e2e83224ad7d8ede7c869f

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.11-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.11-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b208fc26ab2c7adfd2c4d84753a5045f664e0bec19ca462af2406132e62f92e
MD5 9e13fa00dbfe27353a063fa258c88de0
BLAKE2b-256 1cc568359bb633a29eb5e8a1f2eb0f0b7ee17c3cd6f1b1b0692a849b1ba49e70

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