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.10.tar.gz (58.2 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.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (508.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

python_bidi-0.6.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl (541.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

python_bidi-0.6.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (581.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

python_bidi-0.6.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (475.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (325.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (419.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (305.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (299.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (322.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

python_bidi-0.6.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl (272.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

python_bidi-0.6.10-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (273.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

python_bidi-0.6.10-cp314-cp314t-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

python_bidi-0.6.10-cp314-cp314t-win32.whl (160.3 kB view details)

Uploaded CPython 3.14tWindows x86

python_bidi-0.6.10-cp314-cp314t-musllinux_1_2_x86_64.whl (504.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

python_bidi-0.6.10-cp314-cp314t-musllinux_1_2_i686.whl (537.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

python_bidi-0.6.10-cp314-cp314t-musllinux_1_2_armv7l.whl (577.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

python_bidi-0.6.10-cp314-cp314t-musllinux_1_2_aarch64.whl (471.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

python_bidi-0.6.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

python_bidi-0.6.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (321.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

python_bidi-0.6.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

python_bidi-0.6.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (301.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

python_bidi-0.6.10-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (316.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

python_bidi-0.6.10-cp314-cp314t-macosx_11_0_arm64.whl (268.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

python_bidi-0.6.10-cp314-cp314t-macosx_10_12_x86_64.whl (269.7 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

python_bidi-0.6.10-cp314-cp314-win_amd64.whl (165.1 kB view details)

Uploaded CPython 3.14Windows x86-64

python_bidi-0.6.10-cp314-cp314-win32.whl (160.7 kB view details)

Uploaded CPython 3.14Windows x86

python_bidi-0.6.10-cp314-cp314-musllinux_1_2_x86_64.whl (504.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

python_bidi-0.6.10-cp314-cp314-musllinux_1_2_i686.whl (537.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

python_bidi-0.6.10-cp314-cp314-musllinux_1_2_armv7l.whl (577.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.10-cp314-cp314-musllinux_1_2_aarch64.whl (471.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

python_bidi-0.6.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (298.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

python_bidi-0.6.10-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (322.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

python_bidi-0.6.10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (301.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

python_bidi-0.6.10-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (316.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

python_bidi-0.6.10-cp314-cp314-macosx_11_0_arm64.whl (268.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_bidi-0.6.10-cp314-cp314-macosx_10_12_x86_64.whl (270.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

python_bidi-0.6.10-cp313-cp313t-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

python_bidi-0.6.10-cp313-cp313t-win32.whl (160.5 kB view details)

Uploaded CPython 3.13tWindows x86

python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_x86_64.whl (504.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_i686.whl (537.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_armv7l.whl (577.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_aarch64.whl (471.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (321.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (301.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

python_bidi-0.6.10-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (317.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

python_bidi-0.6.10-cp313-cp313t-macosx_11_0_arm64.whl (268.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

python_bidi-0.6.10-cp313-cp313t-macosx_10_12_x86_64.whl (269.8 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

python_bidi-0.6.10-cp313-cp313-win_amd64.whl (165.1 kB view details)

Uploaded CPython 3.13Windows x86-64

python_bidi-0.6.10-cp313-cp313-win32.whl (160.7 kB view details)

Uploaded CPython 3.13Windows x86

python_bidi-0.6.10-cp313-cp313-musllinux_1_2_x86_64.whl (504.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_bidi-0.6.10-cp313-cp313-musllinux_1_2_i686.whl (537.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

python_bidi-0.6.10-cp313-cp313-musllinux_1_2_armv7l.whl (577.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.10-cp313-cp313-musllinux_1_2_aarch64.whl (472.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

python_bidi-0.6.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

python_bidi-0.6.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (322.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

python_bidi-0.6.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (302.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

python_bidi-0.6.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (317.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

python_bidi-0.6.10-cp313-cp313-macosx_11_0_arm64.whl (268.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_bidi-0.6.10-cp313-cp313-macosx_10_12_x86_64.whl (270.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

python_bidi-0.6.10-cp312-cp312-win_amd64.whl (165.4 kB view details)

Uploaded CPython 3.12Windows x86-64

python_bidi-0.6.10-cp312-cp312-win32.whl (160.9 kB view details)

Uploaded CPython 3.12Windows x86

python_bidi-0.6.10-cp312-cp312-musllinux_1_2_x86_64.whl (504.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_bidi-0.6.10-cp312-cp312-musllinux_1_2_i686.whl (538.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

python_bidi-0.6.10-cp312-cp312-musllinux_1_2_armv7l.whl (578.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.10-cp312-cp312-musllinux_1_2_aarch64.whl (472.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

python_bidi-0.6.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

python_bidi-0.6.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (322.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

python_bidi-0.6.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (302.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

python_bidi-0.6.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (317.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

python_bidi-0.6.10-cp312-cp312-macosx_11_0_arm64.whl (269.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_bidi-0.6.10-cp312-cp312-macosx_10_12_x86_64.whl (270.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

python_bidi-0.6.10-cp311-cp311-win_amd64.whl (166.4 kB view details)

Uploaded CPython 3.11Windows x86-64

python_bidi-0.6.10-cp311-cp311-win32.whl (161.8 kB view details)

Uploaded CPython 3.11Windows x86

python_bidi-0.6.10-cp311-cp311-musllinux_1_2_x86_64.whl (506.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_bidi-0.6.10-cp311-cp311-musllinux_1_2_i686.whl (540.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

python_bidi-0.6.10-cp311-cp311-musllinux_1_2_armv7l.whl (580.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.10-cp311-cp311-musllinux_1_2_aarch64.whl (473.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

python_bidi-0.6.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

python_bidi-0.6.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (323.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

python_bidi-0.6.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (304.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

python_bidi-0.6.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (320.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

python_bidi-0.6.10-cp311-cp311-macosx_11_0_arm64.whl (270.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_bidi-0.6.10-cp311-cp311-macosx_10_12_x86_64.whl (271.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

python_bidi-0.6.10-cp310-cp310-win_amd64.whl (166.3 kB view details)

Uploaded CPython 3.10Windows x86-64

python_bidi-0.6.10-cp310-cp310-win32.whl (162.2 kB view details)

Uploaded CPython 3.10Windows x86

python_bidi-0.6.10-cp310-cp310-musllinux_1_2_x86_64.whl (506.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

python_bidi-0.6.10-cp310-cp310-musllinux_1_2_i686.whl (540.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

python_bidi-0.6.10-cp310-cp310-musllinux_1_2_armv7l.whl (580.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.10-cp310-cp310-musllinux_1_2_aarch64.whl (473.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

python_bidi-0.6.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

python_bidi-0.6.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (323.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

python_bidi-0.6.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (304.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

python_bidi-0.6.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (320.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

python_bidi-0.6.10-cp310-cp310-macosx_11_0_arm64.whl (270.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

python_bidi-0.6.10-cp310-cp310-macosx_10_12_x86_64.whl (271.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

python_bidi-0.6.10-cp39-cp39-win_amd64.whl (166.3 kB view details)

Uploaded CPython 3.9Windows x86-64

python_bidi-0.6.10-cp39-cp39-win32.whl (162.1 kB view details)

Uploaded CPython 3.9Windows x86

python_bidi-0.6.10-cp39-cp39-musllinux_1_2_x86_64.whl (506.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

python_bidi-0.6.10-cp39-cp39-musllinux_1_2_i686.whl (540.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

python_bidi-0.6.10-cp39-cp39-musllinux_1_2_armv7l.whl (580.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.10-cp39-cp39-musllinux_1_2_aarch64.whl (474.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

python_bidi-0.6.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

python_bidi-0.6.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (324.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

python_bidi-0.6.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (304.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (297.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

python_bidi-0.6.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (320.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

python_bidi-0.6.10-cp39-cp39-macosx_11_0_arm64.whl (271.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

python_bidi-0.6.10-cp39-cp39-macosx_10_12_x86_64.whl (272.0 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

python_bidi-0.6.10-cp38-cp38-win_amd64.whl (166.2 kB view details)

Uploaded CPython 3.8Windows x86-64

python_bidi-0.6.10-cp38-cp38-win32.whl (162.0 kB view details)

Uploaded CPython 3.8Windows x86

python_bidi-0.6.10-cp38-cp38-musllinux_1_2_x86_64.whl (506.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

python_bidi-0.6.10-cp38-cp38-musllinux_1_2_i686.whl (539.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

python_bidi-0.6.10-cp38-cp38-musllinux_1_2_armv7l.whl (580.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.10-cp38-cp38-musllinux_1_2_aarch64.whl (473.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

python_bidi-0.6.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (301.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

python_bidi-0.6.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (323.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

python_bidi-0.6.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (304.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (297.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

python_bidi-0.6.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (319.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

python_bidi-0.6.10-cp38-cp38-macosx_11_0_arm64.whl (270.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

python_bidi-0.6.10-cp38-cp38-macosx_10_12_x86_64.whl (271.7 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for python_bidi-0.6.10.tar.gz
Algorithm Hash digest
SHA256 a7853e894f723675489ac49aa4b52dc8eac87d7a67b5940631c8c9d2aab46f90
MD5 660cf2dff8d9b4b1d079600535654956
BLAKE2b-256 04fd0caae7b35a30e4faae305c315a84826a8795ea65922c33ea14d67b7a61ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9545c3cd8238a79ab7e0ff7b27326bef3439001207984ea47fa3be31551d364e
MD5 81264d3e16324e96159f02bf3004c975
BLAKE2b-256 90a595ef66dd4e11a29c69a34610aa33299982fd2dfcb6d81ac3d366a82d2513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5fb03df1d641d19cec53ee9eb5b89f659d0087d03ae94f06e78e2663824d013
MD5 6b89949a6fd8542c631f5c926dfc737e
BLAKE2b-256 90438bf067538edfcd534f94d67dc8ec00482e4039a89df3a8b16878c380ca0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2371afc3f50da896212b2d1ea7f461134ef292e1737c87d7547dd0384c092388
MD5 74d3a400e982d9c70a28efc5632f39cc
BLAKE2b-256 bed7dfe84304601ddaec07babe520b944eb08fdefebdb3a88a770f26165e553b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e13dc08bcf7ef257d0635400e3377d3a776ec57ea25e985e903b00bf5ea06911
MD5 c1d91d4ae19931f3088b694a2acfff6f
BLAKE2b-256 963a440b49c2077d3b569eb4069029601b520cfac825aebf164282e2f445527f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78248580e38051ba799076bffa5d0498d2550a4fa6d2ec733c38e4ec5a2d8039
MD5 6a16a72e651c074cda9ad549b4e2130d
BLAKE2b-256 9624c1c262525b49878770c8d77c67a013577387223c0fa113c4c8b50cb95384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2e81871fa3353376a35260bf0313e631624eac6997d8fa4d60f38beee3f633f
MD5 168f85020338feb2941a57da31a0146b
BLAKE2b-256 2fda12707b74e7011c92994070abba8f7bdd4aed8c2be07f1c95bfb8b165682f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ed6794f07fcb4374e74a1a973350c5997c2088ba6143a8fedb533010f379502
MD5 48f6a1622d754db94f0b2fab5605385c
BLAKE2b-256 11a22844f7ba15a32a9018ab46b07823f2c6ea5e3af4057c6260c83d591036ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5c66316296044bcdda0fa37296322973c73b708eac737565d5bbc2f6fd51037
MD5 e851489e3161d4d37fdc2757360ac578
BLAKE2b-256 61a61b7456ab8e82b32ff0b3d0a3ab809af9607797002594632c9abffbd5e7cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ebbf3915c39ed8d0095e3672ed4f824dfe9544e950a273513956b147528a18b
MD5 d6df2a0f86e3a96e19a922133141e256
BLAKE2b-256 d15d29a8af2b1af70b1a9eaa72ef7a7e9e37485e13e18d30268192b36e8c484c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bca06cdbd6d90a939af253ddeed232e7e122a1e027942c2ebd431307e6471be6
MD5 a88bdb151e980843114cb21c2e99b526
BLAKE2b-256 0a5453bc5039cb5974e01a98238f2d681f0c3cfa2a9c12c412613183f5dc2007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a2013623ea8713e4bc712922d37449a4a86a504275b42447e1d2f22eb565f9d
MD5 16e446aa98b56229ccd4e4fd09822b4f
BLAKE2b-256 5532394b00d661a16af7fa7b0a97516ff7c837057aca160d6c0a0d58441ebfb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ae97eed360514e229b0c407095a4184d8a0e6383bc87962972ae27f6ecb96e6
MD5 41545c80f8ccc2a47f8c039d435df598
BLAKE2b-256 53d8379cace94ea82aafed94bd4c7496ccfbb28391a0863cc4922176b3224481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 09d70ad127cbcb9cc5e90c4f2f427d998450374870f305345a8c23338a0bca55
MD5 3b3a36a3fd844973f61afe9be782789b
BLAKE2b-256 76210ff74efbc90dfbb7c113eb5b2c86ad3f286dac82cac9ad492bf1bdc1d0b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 341d75c8b0e107bd5188e30a8a340ec5e1a26066f21de3c761b53fde54e6cd7d
MD5 36b5ce55bee87389d37df85e6862331f
BLAKE2b-256 d7c8b4157ee4088f37e8183c45c471b1037eb0bcb3750e5f9be61b2a09838db9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2960742693ee19663bc448328b6b7035f6ae4ad28f57379568d22180911c7d5
MD5 56ce937e0810e6de54fef0efef45e60a
BLAKE2b-256 572a9f382e5ce65dc3e98755723e8cf3bf9323af536f202d380cb6b98b53db66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f1c310774819302fba49b0608126033ba4b2bd0fb01d23b2c232df6d31003a4
MD5 8e41501a118125144e043404246232aa
BLAKE2b-256 5bed3a0c0ab081595d7caf4735dab41b2f451b141acd8c3bbb3072617052545b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97692e9fb3271a637f18d728d5db4ff729c82ae25356e35d371fada2fe0ff006
MD5 88b9ded54ea109af5b02fb76620d3412
BLAKE2b-256 b48dfa8bdebc35a772bce52b44b387bf1005de3d0f9b4054151eeeafd1e0c44d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b97376c559d90d80976a2b3c2d1f7699b6e3ae69ffd2bfdefaacf1eb4bc45f8e
MD5 4137dfc4c4be535f2f200b950004a9e0
BLAKE2b-256 39cf57d1cf320680cd8710b33105f2d1db7e94c21327a2039768869161ebc78e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32c6075f2b44c1b3d01e7d0c8a5bb519bdbbc832bee2d4b01a06908117d3b050
MD5 0d9f80638c589c95020d11057d426e6b
BLAKE2b-256 fe61690e16a0faaff4857bdf5c9b55d94770e3f0f7fbf25adf891c1370a7955d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44e6566093397def4e72f85e47d246d442838c497e6be3b14be0bca7d9761a50
MD5 55a019872de04c50c592ebf09570e28f
BLAKE2b-256 514c3aa9b71a1b41639a196d03817c0373c9ae88bf91085b3d24d5cce475aa0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22f51e0e5c64e18f5f9b6ac2d01fcbbecdfa6a2d571ae71323d3051d0635b9c6
MD5 2a759edf6085b5c27dccfbf10be8bd63
BLAKE2b-256 f90683b4195793143dcab3962ea8117088f1fe60d2758973a833cdc391f9dfd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81b27ffd3e40e2d8f274e1acbf5967873e53d6f32bf677899e0d8421170703da
MD5 703529f8008d94b8d63d50b26bec1f91
BLAKE2b-256 d81546839c36c82b14e3c57af9174a0d187f4912ed46dc4b917aca41a41deed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6ff61cd6e3a60ae9bd559aa5ab5a7018e8d26067e7f80ca0ac30e08c76bf983
MD5 f253b164448e592d24ffa9b49e9a8aad
BLAKE2b-256 1756db357362abb52a8153c99e83e4b5a90eabd6f2dec7cb1e8bbf6412365fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0ef816ef2a04ce92108cdcc61c7710860e0f2b11906d493e14c6e5b403b09a01
MD5 a48c61bfdbef7cbfa3f616055d918d87
BLAKE2b-256 e57b5eb59e387c7ac0fd7a9fad7a936e39cab4d8463c3518c63ef697c29a701c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff693056db843b5e4de6d8e50b4847c116481406492d10517dfe4d7c573c8f82
MD5 f5ab51b15a11114612fe3bcc6bac4ab6
BLAKE2b-256 38dae1b205ab81e78b40d7e41b7cf769f298e8ad253fb0dc2266ee9117f1f96b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 704c76e64aa0f7c0d4b8dff04ce9e8fb38314bddd1426985856e2533e66d7d21
MD5 56be4b9ebeb83a72c078327e5de687b6
BLAKE2b-256 ace21fd5f2b3fc2732871d6ccbb6fc74e6202b4fc16b5b5bbb46927520e89445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 15f0deadc4e8bf4d5458d62c4c94f7716c1d29f106751f2d9f5a478698465df0
MD5 fd00be032a3c6394ec3774b2fffe86df
BLAKE2b-256 22bad60d35c2d45d7c684fa31f1ab5861e4c8748f30c2f36f40cc154df1b0cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7a5452fda554628660eb4c1c4da6187986c5497f34fbeb07f920c867b6daa943
MD5 dd14d7c24064dc4e105d95220f609aa7
BLAKE2b-256 1335b0bad46687798d81f1997bbbd2a552c755f8cd6b1acfbc3a48e208ab1fcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a156226a8723942b50ffa210d1840688da158c185e3d0840743345003249875
MD5 3fe8d4edbe34b5613e81033e9b56e7b4
BLAKE2b-256 77fcd0bda592e800529517bc08d284743d35993a18bbb0e7869504a023cf7bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82897bacfd8fc2fb1157b1828a011af954c24b1dc25adb2aec33fdbcacd3935f
MD5 6bf898af20d7cf14e0f607f08ec72c6f
BLAKE2b-256 b63457ff9218141def08dd2f000c341d2819581ce5e55c1afa41d4a3e7812e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a50b1ce6c5a2aaa4febbd72cf030ec7d9bd63a063977850e484fb4a7983f7eaf
MD5 2b8811971e0b0374d1eaf6bfbde2e8de
BLAKE2b-256 530f23893883c707464dc9addaab6edb36938e4f532db7c77ccf1ce035c78832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 473e718a86e5a9290ee240cf0cf49093ec0ca841d709f0fef191b7f5ea4e8b3b
MD5 58fa7391244c822709cdcef5555d75b9
BLAKE2b-256 2ac02592f8762cccd9051c7f2ff7cdac79c8c8e9705d917bc15c537e06790206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e404d7e027bd47553e48d9e3f207f3ee255698cac1fa80380d4703d4397ffe5
MD5 cea48e2c04904f91c39e98da5ce0ea8a
BLAKE2b-256 96d1ab44323950a7d9d58323c28e323ab88348dce92986f120e0f038bb2000cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6ec69bd053def14e4538b15dcd28bc9528c820b644687c0d38afc38e81fe8e8
MD5 051d5cdec5b34a750df6addab1464628
BLAKE2b-256 d7ae0e7d1bff2c179b00f55e949c8f278c54e39d884968d5a8ccc0b606704c95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e2b535558cad96805b58695353a628471e455f4f30e346d1d0a10468c991d0e
MD5 fea747630e8121eb6cf9e1dde2573978
BLAKE2b-256 6ef2ff6004d9fb6532e5ae11dc560776c656e797d7eb3666dbaec44fcd0e6fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c7b849fa2ed07cb59ed5e76d3cf0e3527b7d7bfa2e70d4fcb6df048a9c9177ee
MD5 5f02ee477085a7df7250f298ed9652b4
BLAKE2b-256 dd20ec515c45389c0eb37596dcb751e28b6db2e361293d54de66563d4fa1b321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d0c48305c58a5ed0017500dbeedbfc62fc8b9cd552d582ea578a10f77eed1c1
MD5 e9469590b637bb23a521bb37a03f304c
BLAKE2b-256 e077879d56cc8efaef1b95b523883b4575954c800197734fd6063348b13cb9cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a2fcfc6be1917695cd6f7c9626481aa81ade7e3ef3f79c0f7a286edf68e4463
MD5 3a8f5313e01812b2447f40bd450d86cd
BLAKE2b-256 19720e591dd6ef5832372622f1d161f2bef9fb64bb9504e04daed8d799acc087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5040b6595e6a9d1cbca5fc2298684994cc5f1036ff2015eaf30063f015f31540
MD5 28fbd15ca63c1a9af2caf4263504ded7
BLAKE2b-256 93b2e66739969109db0919acb1adb5173fd25f07c587da05e0bc902b7bee1c86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d7714b96ab30df31337f5d100bf71ebe637976e2464761c81ab05787c4bacff
MD5 eebd9b753c248d97ca808e90dbfd9fd6
BLAKE2b-256 e54859c84d45e00bfd4c8db9856f1e84d86cbed9e155a506dada2f7bad97729a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 48af3fc3bee49c3be03bbd47b503dc794474c52db249c57d230a4616cf13cf52
MD5 5353306d5a09f2575413cf34314d56d5
BLAKE2b-256 c2525c3f6c8b70c96ca0a7c161482ae916de69651c7bac9733f3dc8606752f13

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 441d931609adfb2d213892e2da0326a5c5048f05e36497d5e37087b97a3287dd
MD5 35f8f057a5ca649fb90c2716532b51b4
BLAKE2b-256 f13addaa345368ca348542577bd0f760ac0ae7fddb6a83dc3eb60dcf44b49dff

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edec736cfe6b5421e6c0fbf3e4fc70b5db30263d22e070526c7c540f5895f9fb
MD5 f6ab623b0fa9377247f7f49c9475ac5f
BLAKE2b-256 e6c1860b8182160304daee6aa5ea8aead6f9efbb6d9dd2c367bcb0028978a6f2

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a3f20dca786d493c1383273992ca87ff78942456898b136e2973a682dad73ae
MD5 e25afd745c40ab3c59ec2b8a950b4585
BLAKE2b-256 9348c6b4a733c13b36491fa429ba2f6b3673ece8ad6b13297f235a9aa23e11f0

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f6a5c7b00ce285a3389e261db3f0477c2c3e893b352e65889410d995ff5ee13
MD5 fb4e845a71e4d5522bdc684ab3852191
BLAKE2b-256 b419a3801ed2b9b5a37a038faa09c050a79d0383e5cb25b51aab3e23bc89d797

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29a476af5efbe7fedfb53c8d05d1447e4f4149da8d88fa0643716a374b6abf27
MD5 762ff483ae95e34e05e5b8d10ed69199
BLAKE2b-256 230ce723f1e89c6c98e0e56cd4dd06ce65467ec1d68a9cb3cc6c4a688f1b1948

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79ba6f914436c674cb0a25d4e1356e54b3b788ccd1498e1b130edd6ba1ad2f8e
MD5 61c933986abdb2b1a234f5e71d098ef6
BLAKE2b-256 aa3209f1d80cb985af2c0564493445ec338f54efaf5a1f25c907fd6a548df26a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cac7477518b8cfd53e78527a873be7de5a69183397124f7ebcae295cc39187c1
MD5 a8722fa27ba882ea2d941cf471effc11
BLAKE2b-256 a46140212764efa5091a857bdec8b1a24ea8f721550398549c197fbb60d9db59

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0533a900b9b9fa94e1c906e8cdb15b579389ce3fa959af228a12e8527aaba8cc
MD5 91cb94e4bc30eb0322d575a247ec4cf8
BLAKE2b-256 072376c7ebc88a8b29b00540e0d2e0c96124b5c661b33f77bd975c6cd18aeac8

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27fc502f2e368ffcedb97b674956f8306573f43cd0204e2ed9fbe7f41d116a7b
MD5 7281213bb429b64c79bfdd2280fd401a
BLAKE2b-256 c8baffabc68131b390b2ba59cdea9290098016f17f8c6ce61ffdd28cadac998c

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9b83026c2907ad207eff37d5d302ecdd20441ba87d89401a79fa4b9af11f24d
MD5 3b9d6415e960bb04f93c0552e80b61c3
BLAKE2b-256 859aa9c25420d129a0450b19fe47a9a5064134aaf3a3a2e79d46d65caca97640

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c1726465626bcad9518ff878be9edb6897b42d57c1bfb9e4a00ffd4000980c48
MD5 2fa0b8075da8fd827a91e8cbbd4331c1
BLAKE2b-256 145b7d8320c0635f8c3ed706a5c2f506aaf89547d22f6ae5fb550d52c5a47d54

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15298befde960a80885729c3603a95058f611b7d71de645cfbdd875f98146e14
MD5 0514271fbca98483e9e263437914b33e
BLAKE2b-256 b99abf2f3775f2e9df5aab44d2af1582799946bfa54a67ff2d65b6a836f1d9d9

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.10-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b528e71c3f4b867e207418ea4ed465a111306ac6c2838bf75ff1e465c74ea933
MD5 b503c01562f1510f03e04cb5bc6270f5
BLAKE2b-256 b8918f460c2a100e8ed66448c7532145b96b5726ce009a1a88b1eb4cc898ecd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a06a6e54a95b5c5864e117af2479113bb367660b0d95295b4adf314b3dff77af
MD5 18c297022cca9e2d200c6376d1cc7071
BLAKE2b-256 759ec2fc7a5c9c7e3b64ff7f527bc3c31b304df48ef7a9bc01eb4795d0da1034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 de06759a2b223599a98a200b01b9fdafec7e346b513ce6a31632f7089234eca3
MD5 2b82214fe55855c7a67b8da997e70565
BLAKE2b-256 5a02c797cdd446ec31f5a5aee4096d13097d1533f69ac2750b52731fceb79122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b47233bf36749ab63561ece99b8b32684043558415f1e4ca6c540f1793fa12f3
MD5 2829a6166db52565ddee5ccae57600d5
BLAKE2b-256 35bdb1728d873cb3d5f07ef2e6d40c58f2d2c76c59c053075c852afc791d0bfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7d9b2602cccbb92fc6a8b8ab2b1f0f03c77c126e089f22f7747b19499cb3e1d
MD5 046b5596c6adc36a96834d7dae59d681
BLAKE2b-256 04ed7e55255020ab1f106dfca71781afcae0e2a8d3878914e95d006b7ee51d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 452a7ff78909edef965d1f2dc87e8cf04e6d4234771eef9b876688fdd821ab1d
MD5 f3e91087978ab0c670b85a2da1e647cd
BLAKE2b-256 ebb8085f396b0c2ea7f5df885f3bcc2a52deaf330947528728b5a008fe4e2dc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d698d1354d7e30d3a3fbfb91b7b6c904e13875b4ed2dc40c726ca23d82b5089a
MD5 8b1d1f8908ba6fb10a8105876d04343a
BLAKE2b-256 89c760497b7ac68db1ce90431a9b01308fbb02bf961a213c108e65ffbe301d9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07de0d6b998184233e8f753cbff5e828e0204b38daa3deaa458af6cb53c0960d
MD5 024bb9c72159230d5001fd2221797f27
BLAKE2b-256 31483903d3c6eb78349ffd464d6d081e89122f249b1269fcc6b258b249f134e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a51922e22ab237431c3d5505b2511732748f936349ab65d0c1a4a13e224144fc
MD5 4b858a589233b49fbf80c012385c2570
BLAKE2b-256 9302d235e12d86db3868d17a8bf8e1573995648aaac64037afe5a22baea2a1da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 903b8e4ea0fed7d453e7e437d41ba0357be55572a108f8d6110ab74cbe3b2bb0
MD5 1a6eea35579a995213fc50199c635b22
BLAKE2b-256 38abf8167b9009d65ed4e8474e8cdfeb1e3389131f9911171d9f3c80732538e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4871a8955ba6c4d80eaffc0f44af6ab724a99f4ec2ad6499243fe542027494f
MD5 ce72c771c8e8497c6c3f4b1fdf240a59
BLAKE2b-256 3120fba8bbc2ffeba576b5d1886ba24abf20fb9f37c61785643c07f221926aa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fdea42e1356d428cdc1771e3468327cf776da51c44a8ced855b67b02809ea56
MD5 4ef1fb104ef89e0bc527707329008560
BLAKE2b-256 577ad54898138aaf3eaeb3ed5abf1d41e414d27a2ce66c28e69d64676afc6f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 644d068e01071c7af565a70269f8c93f6434c031df2b1428625ed8f6040b94b4
MD5 e981ab7cc92319e77bceedea99f75920
BLAKE2b-256 2e49cf8530b7c8d38251006a796722ec66fa94969df06aecb70c23aaea06938a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f53dbcc5b1ab75ee593f9ccdd474f9091e21b2051ade79db9930540188f3c9e3
MD5 693eaa20777e23024b1b45fcd8b08282
BLAKE2b-256 b9162bf12eafb2ecb84c7cd59686951915c44103b8388969c07805bc3bb698e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e65f8b3029e64af05323cc630550b27649d8b1b612387c2e88411ae32c6a5b59
MD5 8f8262b88aa641621b0aa6a4eb70a9d1
BLAKE2b-256 62ce95dc68d933c6a0a7c6242d3c381076b46932c960aa74b7d927cb698d8a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6a75d9ab145003094475bc955120b4577d70f34ee02f0b69696d7f216b513479
MD5 63e256e91d8da10dfb1d3f68368edeec
BLAKE2b-256 a3e805abd3d1e16992d1c26f20f33549397ce9d193e74568f3395b19cc744947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a2e1da56d841ae506c49df41e16893428b96d3c8c255f096b1aa83c512302c94
MD5 03db4d042b0e038277d3b501be15b583
BLAKE2b-256 eb41b0e0f7463b47345c975d15bca9856e9f6756fa792e7db661b697bb3c8e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 322bea01cd3f9c1cc153ea4ca3b8f82d27efe5ae8c4bd81cc981420e25490bd4
MD5 20170a1c95306e2db513c06108b55166
BLAKE2b-256 0642add71ef22bcc0150862065d4a59a74744dcdbf861aad0016c910dabbd773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7aa354a62e727b592cfa181a5d435d9a946aba4dd2349bb18fc52c869d470f1
MD5 aaa0718a14710226b6bf2091567ed07c
BLAKE2b-256 c98bc5289555a9c0d1adc7e95d204b7ac1d9f5aa6bec66f51bf65a20e4508679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 153a2f75648ceb583a09e66b4da99ec54b82e3226e5c0992f79e05d2d00d5a6e
MD5 5b55ab20336472c6ae12e03986610a2a
BLAKE2b-256 4d2743b89480b7c9f6d8f837a7c8638c2e906dadd5ef1c0bd555955b15755a32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6fb6b3fef1b611841f50688c46d722ad5bd9bb5b9beec9d7c51885519f6026c
MD5 1e05ce02acbdef55b4753eee53a2a776
BLAKE2b-256 4e0aa9d9940cb5130334934ef614abd25556abf4968f217a431da5a74add0d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7871f1226a062c641c500f81f05c2c00274c23de26707d747ce16ede43a6fdb
MD5 374fe65aabcc219f12c0ec584e7c587b
BLAKE2b-256 6605bfd3ee064d9b740b8a70af1be2de247da5a1ff30c2e429a8929790a9d0b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b35b3c7e2c91f67dbf49de4513adf80ee052b06f15dcb9e7e5c6cd6f37373114
MD5 2e0a19de9a251006cb43022b10136149
BLAKE2b-256 777a9500fdbb0a879f28cc49ef2bfc5f815bd78db387c0dc03d9c9876ea98dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce576c6e9a548e09c853e47cb88a95bb29363586c6ec7778ead517e61449b275
MD5 ceaf23d4ac5497d53300fc249c88c0aa
BLAKE2b-256 fd38206ef7fe94971dab61ed6305e6e2f3b1998c179fa7a314b201e3ee9e75ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b0c77d935abdd7e3bee0f9b8a7d0ae8a7c230e5aca3a7b9948576b2e151c9985
MD5 9329654ffbb73032a1e94dfb1ec55d71
BLAKE2b-256 802ba235dec440e3464b3bf9a6315f2ec4f05ece4f335e1da2d0b5cf6133c11a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afd28c86da0968996595b3dcc1166b24367954d69242c186c0916721fe36274d
MD5 5a57433c1a3fe526caa7939437a6e3fc
BLAKE2b-256 bb59209614da6a47fd17dc094a08dda951dbf67164ce0f7b4b221d4a2271bede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 84f6975f51d2af2e9b474669f26673486899138ea985f9967db4f6ab9a431b95
MD5 0afc9754247fe0f186cbb8c9a79e574a
BLAKE2b-256 9b75080e8445277c851023a1313fc5ed57e245c63bd55b7700d92e7256411439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0fe5c41dac834dfbf1f93f29438393fef13ce250e699d67d2c066da6a0eb8af
MD5 bf22c8c7f1b203bc889195331380fbce
BLAKE2b-256 1defb6dac101bb848185f6b296c649c11a25aeef11d3b0a2d98a1af8fc3bfe59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 446f1cd15783b14a280fc6c8e8931afa3f4ec1edc0b341b82cfca1537886cf28
MD5 621ebef4c6434c9aee0996be93f7b012
BLAKE2b-256 38ff0e692d5b0caefffc8c2894bb0546f2139e8f8e7ebd90de0f919a21a25810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a84f26e55770a9326cedf79c005c2e7f9c13da9e0cbb65bc36890382a793bda9
MD5 d2a72283b44a171c8aff47cf9fbe54c6
BLAKE2b-256 d55680366cec51f08346269c1b64ede5e8b6decdcaf8a5f0ae5eb7a7e022d160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1552aad47e65e8458346307e8b3fe7ae8eb0fcf3ea4ce3aba5cf44c50117e30b
MD5 b7079bf1eb98e5694f5595547c882837
BLAKE2b-256 65465fafb3a60c1f143b7c7abaabd1d3a25c75bd2c7d40ca50d9db69220a2f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6054e1b9920a917749fb4e7547b378e0647c25095c012a2a7c184493b9204ef1
MD5 838f0548557eb97d5b6ce38fad7ea933
BLAKE2b-256 57f984e436d07d1be589c0cdf2b399ea8bb0a1fb4c6a5d98394f5809ba4d0899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c63bf9de0646eb7cf8d520e258701e5086c010e18cbc32e8ab884e29d5ff12f
MD5 acf5b482c3db9215254f7af5d5e86ead
BLAKE2b-256 aee9d87a41d8da2ca4a9af207a7c3f92368d695c2beea35bfe758cf0287df145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 732ad1ebff85d4669152ec8c0bbeebdf945a3460e26ae852a30d39d93765765c
MD5 ab7696e4be3ff5330ba17fbc97a7d691
BLAKE2b-256 b443cf1a4b1be60a815761781b8e445317173f39166cce315cf8d975062de4f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09c90aca4713ed86422acfbaf90d8c5c9f64cbae02e737e7f82f13cd2ff4f34c
MD5 7a9872fa7a9e28d34737b2531b17d2de
BLAKE2b-256 0e10c11273d6ad1f22dafa1c24fea4cb024077bf5ce30513ad44985f2315a03d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e4752fc7228a2d70b69dc81fe4bbe602eca44a520b3d7ff46b50fb2b68d435e
MD5 ebed10a52aac33de24a04b76d08ebddb
BLAKE2b-256 e8bb230de69a4a3bf170d822f778b148eda1032e69321dba924aaa156636e595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d11a3eb283fbde362c4b1faa32a4053413a83aa6abc2274827e1f03c89f53f4
MD5 ae979845ddfde163517f080b11d4ae43
BLAKE2b-256 43f727149e323132f06fa192a6f24554e842dc551c0460c42d317460342670a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 916688bcee55ce613879751a27b25977f75403c681e6d110cdf301edb48027a1
MD5 ff6b6f4c26be763de9df5b3368217c79
BLAKE2b-256 5503ad71c81b9bc8710147699bc7c4a90ce392848ebd3a225654a5f2c96d95d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b223d1f5493530777475fc40e4a47b6854a5ac56ea3211196d7a91809fa565f3
MD5 33b7a0547223e41c154a97f2ecd22650
BLAKE2b-256 51403226505fc84a0af0905a3d08a66cf0620a028aa85a6e0e974e32c4befb41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e75704f210e8fbcfbe9546f33d4ef86ff9932830d74726108b45dad72d5c1b55
MD5 9684f3bacb458fd7d5a50eaf4552dbeb
BLAKE2b-256 d6bab3367eda388c8ef230738d2ff3269e4af1d2fcafc093436181a794b0e13b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 099c3c29d813e263e999205ec9d59658c519c3bc51256e8ab3761ff3dc46a1b3
MD5 9f982be7bc10c95f41d33f3bff4b0441
BLAKE2b-256 32c21b021e15bb0ca6b62715a9e375f6922090903ad4c15e0fb9a5452254b13e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44e21c6dc51b88ede76aafe730a208ef5a23cf7275d30d7870ff46e3a6ad4314
MD5 2bd6a6c2e4fba7e8140ed53857b3398e
BLAKE2b-256 db5d52ac2530d6998f684f482885acb65c206b622f3d43251636259d9433b414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0675bdaceac9e2bd8ea99729d064435d1d1502e1875b87ed72ad93a8da153ff0
MD5 aa958a89171f61e06762a1968a06f308
BLAKE2b-256 39db51a3c3c5e62614cbe5309341682d982e6ae2838ffc4f4192cb69f9b346c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a0df4cb0fe94de7565c3fc875888431ef774d643f00b030bd041fdebbdcd189b
MD5 d35d7342c51f6154e8eb3a8e35e20e18
BLAKE2b-256 895444a046c6c0b756635a796dae8c8371fb1b78e2d5782cd640fc137f1fc3ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f3386c4370515f7acb3372ca49b4bd6652b65c381f50e772b5de96da7df2dbad
MD5 5b2b277bfc2ba35904c719739ef9be4f
BLAKE2b-256 a245a8ba0d6149998a39bdcbc533537661cc556aa8b54c550250640cb7daf371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00e8f3504e63a7713bdc1367b3de46270ddc76551f1cf04510039d65a123fd53
MD5 d1d897651d880ff42137f4c62962c49b
BLAKE2b-256 adbffdb0b503f047a12868582aebaae87f93acfaee6b1a110b6562b44a8ff67c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ff3bc2221d8c32427cf90999b60ee9bd5e31e2e0b7f54b63ad54a05912725b8
MD5 9dc767ac80173eeeb0bfa798fc797a31
BLAKE2b-256 e0349547c8ca444267d499e2c39edcd2eeb161c2e9751eb705413db72af7876c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32eb932af02b2dec7d3043daed84a80e34a3f46327a7cacf6a813773369fceb8
MD5 c3817d3e1dfebbc2b57f8d192bfff55c
BLAKE2b-256 e4ce19225aec3f0376dcd85f23b5956d47b313fa3b72d50a15d4ea96e3027306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64d4adc41eb79de0561874bbbe74e8f7974b3bb947070d0edd73d388c98e1234
MD5 60296f52e0fdbb4cbb2990bab41237f7
BLAKE2b-256 e47e1d4cbf6ca16e2a434ec1ce1225d98ae327c3c18b72f8c3e58b7233b70979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fedf838627e262a5a3b9312a144582e7c81ff3be986a3b0ecd51b9d904747c0b
MD5 4514c2bc8314f5d6c73e7bcf31b52e19
BLAKE2b-256 1e9b39a4c9e7f3f6c8bc99544fa48be7c539c553d33783cd3e3d4a31b126bd6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73bc12f9599cf1dbc39e3792abaa8fc62656cff30340308c3341583631ea5fcc
MD5 22ca0da77ba681d7395fd58691138f98
BLAKE2b-256 aa0e1a7064320044ec98ee1b6e240a3e26e72aa5edb81e9bf30a09c49c79bde9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b35ff4e825c4ad912a30909f2922eddd684c84bffc48e713c8bf22a4f3d7794f
MD5 d4fd8c9fae1cf9e36ec4307f31a6ff1b
BLAKE2b-256 034843df45d904e44ad33bdba437ca34f1a4f65a29ec5901d23d9ddee7808ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2598937e05401111ade68cd6e2212fa556fe8cc401b541d19dcd039496a0cfdd
MD5 0575a3db5d0fea96b53a44fb7fe86246
BLAKE2b-256 4be38eae05d6be95842565c50f1110ce57ec5fee7b65f1c6920628795a8c519a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c267e531392cbdd900e46796d410dda380c7b311434bf5090ee261bb05650bcc
MD5 2486a150d538c86b7a3deb4f5577013b
BLAKE2b-256 76834433f39ed294b64f99d14bc0e6457416a629861e10d9681acc076b7cd647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 44caa945d27b7634bb4fdfe8fbeaa27b33fb12b66418e326e5a491d235b5c61b
MD5 afc7176a47b7dc82cc72175c46605f78
BLAKE2b-256 15ed7ab96b4f978ce57336546b7dce50dda09dd52879368cb671aadb1f702e3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc012f8738e21462b8b173278ef9278a822373a64f558ac1bfa36eceb56296df
MD5 0646fc9331e562c761ae2ea50d173cd5
BLAKE2b-256 f43a90f6c93a8fb057be1051b6b5fbc96ee9ab0dd775359dd520bdb6ae805c1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 327e570f10443995d3697e8096bc337970dfc32cd5339759fa4e87093cf5cdf9
MD5 ae27e59bc366622b5db9df7e91c6fba8
BLAKE2b-256 0ae3f95ec47cc996c0b3513837c4349ccc5f11ca9abf1b870209fc775bf60f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8012aed843d01a96fbd5c2fe4d8062696f8720d38990d68eaf871aa692652e98
MD5 b35f41075f34fed65bda7d5e44f54196
BLAKE2b-256 4ffc57bdee71e64f54e3e3fe6326a5b80033c91a9f29108493f7542aa70baff2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9c2ae7649b77a4354b6db6423c495bd57ac5727d62266dfe98254896eb573b25
MD5 5281ac9280843e8fc5a5e1272b5b4ca0
BLAKE2b-256 9d3ef8bba3f15f4d1af634f007bc4e941fe029641b7b29a7764de2725edc19a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5899a244bc0b60d71ae80dcf0dfad16c72e742857c13c0d040d1c975bb758983
MD5 ba3aa867e607baaaadb71659cd754f0c
BLAKE2b-256 25125b48a728691663eadb71fe460a8ae10a1206b5165595710f98dc11922df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7f1fa876d3b7c09c1c6be627338502e78d3cc6e9b21ea94f8eeec6ad4157afa
MD5 3017a6b762d5b9b5cab261a3a9659ff1
BLAKE2b-256 5d2ddd55a8f36f0cf69994f071b79f330ebbed4a6e2cf02cde23d9aca5d89480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6dad7fe7f004900a45b04ab2ef51dd11a46c7be4b182c2e533810435e197249
MD5 af80705c4eb063efb85b63ece6aa8af6
BLAKE2b-256 f356f378dc7bd47c055d1b149808a454fb6cdbb3041ef4259c35c8c65a85a271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19c06c20f47f4a3daad14b5e7c2b4e23e76f4277883ef43616ecd9a8eff73203
MD5 8214990cceb770fdbe2a19c62ace6b5c
BLAKE2b-256 a254d5e7d9fbc364167eb495404966ddae899887825eb0c7d83b683921ab7aba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b048ba7ec56dfd0eb37bee34d395771d1ce444fd7a32c6e8ddd3bfc92090a1d8
MD5 26b86907c5e16c984d7c1edee1ec9147
BLAKE2b-256 f4f38d93980f88ff72a42e4a1a7b11f53209b752481e9592158e12e8cece93b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86dea78bc3953853afb701b7bf3531f062e7aa7d0a4bdb1a59f496200967bbf7
MD5 f44a3175cae3f59c207244d3faaaa072
BLAKE2b-256 86f4d8e15a2a0adcfc0b395bc528597831dfa36fed899fe80635c88caa57a857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd1247b5138e23824b62f96aa03f1d45084dee6c76c46019784546cc432a85ee
MD5 1f98c4307cc92eb6024055b8cca1d4bc
BLAKE2b-256 dd91b79d7af155521fe368e869f779db3d3ced3f2838043a58f402ce19f2d6d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 929c705687f506fed02aa1fbd6781fb310203d7a20420dd7f106cd87fe1d01c5
MD5 6403bf26e41522bb072be670caec97ed
BLAKE2b-256 120fe19e7ebff5e728093c15e149c9bbe6d4faf583cf9366f81d783be8639914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6bbca74b7d39d4f259c0eebb6d62fd970999c0beae553db7232319d151fa533
MD5 76195eaf7c1aba185f962864c73d065f
BLAKE2b-256 51bd0222fe10c9d111360cbf117524d5ccd7222c1b0ece390b1d8d6ee8ed3653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 038d29ba39a638a5aa904e3f86547f6f883ca16b3ea1db98fbc861e9644762fe
MD5 899a1ce213cc24a453c96398418acbb0
BLAKE2b-256 72c4518c031a14213be6dc97a5b9e6e904b8063cd0f8914730734d25142dd2a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c55787b0274b1e06530817fe6d375a5443a0e32d5ee55071244fe5af3483fcbc
MD5 c88469f32ebfe2a696f1cb806ec12070
BLAKE2b-256 952e8e961b7148e3099b67ddcb940931132dfc6a7046197d3c8406ab0c814f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c5be3141bf22d2908d6269e613c2bc3824db0f31560a61b95be75d224812c67
MD5 d46e44d39c0f3a9044e45f7fd5e02a4a
BLAKE2b-256 ee62cb4bc5a119e1fae0a5eaf24fbcc847a721cb6ffb2e3bffebd9d4e4d9c12c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a5aac3c9648872dcf11543751e2a8970ab0e8e3192fdf83ed507838917f50d70
MD5 79c79d71d28edf5f03e92055818c5e36
BLAKE2b-256 d76266909aa9e9e69ef4ba26c1e8460109d7f4d20c6b5d10efc00e890bdda2cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f6e8fca537eb348409549b75f8721fe911cc001124cc7cbfa1a4722e641584c3
MD5 e4bfa2e39b08508f2b226f34a04a277a
BLAKE2b-256 21af3b24a825a3cefae534cb01868308da0143a45d18145d4b9a74f7fabb2599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 099b82f05557c1588973cceab0ebd2535800990850b4cbf8eae57682ef746a16
MD5 5027de7ca4b8677bfcde4ab4fabd94ba
BLAKE2b-256 801aa92c861ffba6428482d488b3cdbdf4b2fb2f3fdb408b93fb962cb94d881c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b45368872b3770b20d101a87364ffeec5c0cf02d8aaee1834c30167fe29ddaaa
MD5 ee71b74f89b90190dbf0a631f7049ec3
BLAKE2b-256 eedaf284fefd85da06d656e0a2e478278d070086ddc22c6214d905596e9fc72c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 df0a3aa46c78e56ebed8c5be33da34c0408d4114c6b782103208fecbd3b6cac0
MD5 4f0996098794b8967bc4e866e100e42f
BLAKE2b-256 c26a6422114f3839223a6b77e9a800031255350190b8163991d050cc7b3ab33b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f3febf9b547b3b237429fb8c214ff8faa50972c6de0fc0fbaf060fc29e4696d
MD5 a13399bd718ad251d73d461381b12d5f
BLAKE2b-256 273a890791db5d7ed11413ed451326f56b362c978d0211bad0031e9adb73cd23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d717dc455632ab75284969106c4f40cc1533709f852c50d6db643b20e903b23d
MD5 5b9972da1c99f9dc128a36bb8431da2a
BLAKE2b-256 6314e3eaffbd78a68b00e4eddbdc8349eee3633c2d0e0996c43d5e38f334ed7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f95878c574eb603942561ad76d09ed8b05e2ffd46917b32f15bb83878f7f40e
MD5 ab7769cfebeeae47cd9d7d26b1ff0940
BLAKE2b-256 a37a2238b19d7521dc51d963c1fce2766679435c3dd1a2e78abf3362bb70ceb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7965b1c468b986a1bbb9fd3ba8641b51f4f93352cefc83eec851fdf15850019f
MD5 c3dad69e1087c48c9851034a6b876cfb
BLAKE2b-256 74e5e39d3f0252d4a27575dc9d122bf818e20afaa569fd03496b139e717f4c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8af0d7059829d43e5b9e4072103f09d3869d3da9fc6db66b51e93da0ed0b1161
MD5 872bb7894a0adef6cb086b5cd5647e29
BLAKE2b-256 a5fedb121d5fe599b97cac6d2687643b5253d624a338f02a4998c5a114ab3910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a485820e499c74332929eb9fe9246cec92fd4e6b8c2abde03e8d8f0fea00728
MD5 945bb6c39be938d090859fbef88f81e7
BLAKE2b-256 88e088f196c9ebb8d52d7f5c04567a48021cd466f44ed8f7fe4cfe32f73d8b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b497a46082c3b0e0f9a2571d573e745686ed1a6f7a9c631ebe2b9d6f55ecc87a
MD5 2fa7ef45f19631f79f5e1563f36ab7c7
BLAKE2b-256 550cca0551bea7a1d6807e33d2b867b9db79bceca7f750e24e5775dd7d1e260a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de7f4782b4381ae5b0dfa36ce1e4b0a925ccecd4f52330fcc50bcd73430b99fd
MD5 5a05b8b49e9df04e78db63561efff011
BLAKE2b-256 ce60df4046079b84519304a9d77fa4f94db10d441820904a14c54357f948d80a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.10-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cdc2933960f9b1b160551ff4a0cc543ec3866550ad13f35f1881c22f08b5ad82
MD5 c45c590c34e8a0068326580e8d00db59
BLAKE2b-256 463ee6759041f9ab31be5d68bfaabc79e35ae70c0d1795bf44623c3d95c82656

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