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

At the command line (assuming you’re using some virtualenv):

pip install python-bidi

Running tests

To run the tests:

pip 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.2.tar.gz (45.0 kB view details)

Uploaded Source

Built Distributions

python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (453.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (473.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (551.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (469.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (302.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (454.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (474.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (552.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (471.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (332.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (326.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (299.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (302.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (454.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (474.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (552.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (471.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (332.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (326.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (299.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl (457.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_i686.whl (476.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl (554.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl (473.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (334.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (328.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (301.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (298.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

python_bidi-0.6.2-cp313-none-win_amd64.whl (156.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

python_bidi-0.6.2-cp313-none-win32.whl (151.3 kB view details)

Uploaded CPython 3.13 Windows x86

python_bidi-0.6.2-cp312-none-win_amd64.whl (157.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

python_bidi-0.6.2-cp312-none-win32.whl (151.6 kB view details)

Uploaded CPython 3.12 Windows x86

python_bidi-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl (451.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

python_bidi-0.6.2-cp312-cp312-musllinux_1_2_i686.whl (471.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

python_bidi-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl (549.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl (468.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

python_bidi-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

python_bidi-0.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (300.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

python_bidi-0.6.2-cp312-cp312-macosx_11_0_arm64.whl (252.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

python_bidi-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl (256.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

python_bidi-0.6.2-cp311-none-win_amd64.whl (157.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_bidi-0.6.2-cp311-none-win32.whl (151.7 kB view details)

Uploaded CPython 3.11 Windows x86

python_bidi-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl (452.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

python_bidi-0.6.2-cp311-cp311-musllinux_1_2_i686.whl (472.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

python_bidi-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl (549.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl (468.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

python_bidi-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

python_bidi-0.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (301.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

python_bidi-0.6.2-cp311-cp311-macosx_11_0_arm64.whl (253.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_bidi-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl (257.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

python_bidi-0.6.2-cp310-none-win_amd64.whl (157.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_bidi-0.6.2-cp310-none-win32.whl (151.5 kB view details)

Uploaded CPython 3.10 Windows x86

python_bidi-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl (451.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

python_bidi-0.6.2-cp310-cp310-musllinux_1_2_i686.whl (472.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

python_bidi-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl (549.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl (468.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

python_bidi-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

python_bidi-0.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (301.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

python_bidi-0.6.2-cp310-cp310-macosx_11_0_arm64.whl (253.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_bidi-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl (257.6 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

python_bidi-0.6.2-cp39-none-win_amd64.whl (157.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

python_bidi-0.6.2-cp39-none-win32.whl (151.8 kB view details)

Uploaded CPython 3.9 Windows x86

python_bidi-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl (452.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

python_bidi-0.6.2-cp39-cp39-musllinux_1_2_i686.whl (472.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

python_bidi-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl (549.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl (468.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

python_bidi-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

python_bidi-0.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (300.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

python_bidi-0.6.2-cp39-cp39-macosx_11_0_arm64.whl (253.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_bidi-0.6.2-cp39-cp39-macosx_10_12_x86_64.whl (257.6 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

python_bidi-0.6.2-cp38-none-win_amd64.whl (157.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_bidi-0.6.2-cp38-none-win32.whl (151.6 kB view details)

Uploaded CPython 3.8 Windows x86

python_bidi-0.6.2-cp38-cp38-musllinux_1_2_x86_64.whl (451.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

python_bidi-0.6.2-cp38-cp38-musllinux_1_2_i686.whl (471.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

python_bidi-0.6.2-cp38-cp38-musllinux_1_2_armv7l.whl (549.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.2-cp38-cp38-musllinux_1_2_aarch64.whl (468.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

python_bidi-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

python_bidi-0.6.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (300.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

python_bidi-0.6.2-cp37-none-win_amd64.whl (157.0 kB view details)

Uploaded CPython 3.7 Windows x86-64

python_bidi-0.6.2-cp37-none-win32.whl (151.5 kB view details)

Uploaded CPython 3.7 Windows x86

python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_x86_64.whl (451.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_i686.whl (471.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_armv7l.whl (549.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_aarch64.whl (468.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

python_bidi-0.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (300.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for python_bidi-0.6.2.tar.gz
Algorithm Hash digest
SHA256 b6947aba17a09f37f2ddcd01fcc8a3589e3216ef5e5f86cbc993ff304ba22f8c
MD5 98a69fdd2b0ed99e4d9a82902238ce10
BLAKE2b-256 1432a3cc933180bc4fe769ae1b7c22f5cf2d48ae988085493dc7d526c948be54

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d48523aec8dade3e05d52973ba593adf9671b68abf91ace0a85bd2e2ed405904
MD5 24c49fd75b02b84085e551e065b4b684
BLAKE2b-256 376b5291d77f5b0bd719a5f3dd17d350785809701c951be83d44188ead18a20c

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a4629ea2c8161d8e32502f9bfd3937229c321073c16d03efdcded16f8ff8c47
MD5 22e180d89457d507f8091a0585c0f376
BLAKE2b-256 eaa167629f63bfeca312737b513859e99faf16f3ba0e2e8a0924ed7b8171900c

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1bf2cd4d2701b84d2f0ea48860a3ed94ff909799e8137eaabd1f803a04cffa2e
MD5 7c12e7a772d1062aebedcd695fdec8b3
BLAKE2b-256 7d61ea75aa746fef04397ceb2100cb0827490c469a0e1c3a6df96d9b78a401cc

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87d67a11ea1335d5fb7fd9c3bd7a722079fd04e1a77e5b842487db72946741aa
MD5 a9d4df2fab6acc0abae170c8e4e4fbb9
BLAKE2b-256 c60d21230dd51a3ee5ca137e8c4a54ce3674f24685194735a719b83a464dc748

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d3ccee88b9e924dfb98661be8c8a2653634f7962008ccca6a63359bc31eeffb
MD5 d26a613e38cb1868f841aaf2b4852336
BLAKE2b-256 9b192cca38c3bdcb9000803e96a3e7c740df1c10d0586397748a8e14b238f6a7

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89b86e38e4e12ce11b77987fa1d1c26acd56eed104a32cd5a7158aca04ebdf6c
MD5 a9fee1447d1b0dbcac406745a2a49516
BLAKE2b-256 b3e0b2110a87d632919a120505d51f4178078831e55b7d26303eaf1f78b53eab

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9bbcc6874b6591b50dd99d7a9f0afcfa6a57948758e1a75033c78986ff5d1684
MD5 1c2a60571fb50bed4e728d9ebfcde939
BLAKE2b-256 d694dc26b91b9b377aeff6721fa5d87da5b8ddbcea20dd784d65ad53b3f6e629

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa381812a9e1189d123d59a209d32457dca1ffd64bbeafc83ce77ac958f6d1e5
MD5 ce76c0ef2f81135f08ab8428092cf3a6
BLAKE2b-256 cad0e28aaa56acf0902fb738ad80d9c7e1c10bfa3915cbde9a80e39b9116ba16

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9d3e00b7093d3e7328460855f1e92e99c4dafbbb28940e60c60e04426f02eb3
MD5 aa1622882950fded37cbf99696a4e666
BLAKE2b-256 9918bb1c832ae04f8221adb78034b13478e524552b46032149e5bb3f4ba0549d

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d7d4cd9f9900194d70b771730f8528f26c1315a4254bfd5260a9d6544383a4c
MD5 6062fa220631d522a3d09ff94b5fa20b
BLAKE2b-256 e8f277d52fd0b4bc433fabdd15ab52cc73ebcd74f2bbc6379d76c32fdbecea75

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b592565cddfb657fe6a36cb619e4d2f1c528550b5d70092c415f7030e329ad9
MD5 020799efa2fa6c8bcf515d87051051ee
BLAKE2b-256 25e90de2fe1362afc081f3fb8f64644e30194694c73d599925ddec2471bd2c4f

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c75a2149d5ac53a209c7fdfa28cdaf40de9249bc187c9ee5dbc98f30943763a
MD5 5d7891d23a0512f301c1c35668fb8e66
BLAKE2b-256 de9d3988473f18e3e9c97fd183fd12e3d23ad696880691cca45dfdeb7661cccc

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 59f99877f8fb4a31788160c771426f06e78750051e38a019315dabc465994673
MD5 8f63c46866244758200ca12118a1f8b5
BLAKE2b-256 d4962aa4a41c2f7ab5ee2b017b3a80bfd9825af44c5a396a5560b3e1eb1ebdc5

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ba7b1d9392ab96231534d3243199da571dc7d5ff6a1f38a4bddb65859cd6320
MD5 d9b1288fe5807979934a282a6e303eea
BLAKE2b-256 e69840a468369f6614094767f0fdc33f687faf63c99051d3ee67e4ed007e6f09

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e898708c98b7284390f03e7362818119a6d444349db316c482dafcb06540b3eb
MD5 f5ae1bda25704b5fa45589b26113cde3
BLAKE2b-256 c5ad3578b587380a6419d2eb48d1be5e834c239753ec21806fe8cda4d174ff80

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3b69e286ed59faf2f33d661fb44151b047ad1b07461f6fdcc14b2f4a9403d22
MD5 26a2a61e00cca8333639c06408d2c0b6
BLAKE2b-256 3e9387b24a0ec2ccf32de80a553dd913081e0b26b81418481ca2ab329ae8c2c5

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 395e3ef8057cddbbaf76f55009fa40712de7ee8085bd1905c91396cf513adce9
MD5 7fbfa043e12e691f1bf3cffc74e9a6fb
BLAKE2b-256 0f3bf8f3fb12d53d6ad485fd88974ec803db04a07477e0b8f188f841b7bd8f3e

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 654f6c48bab5ed6347fb66ce2ddb570adeeeb162d94504e30c0b90cbf0caaa9f
MD5 eb5cae14598e349dc91ba45746686d6b
BLAKE2b-256 0e247b442ccfa744893a10557021106e8104f3c1c644277b182fcf6a1ba27086

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76cdcd21e3862833e712c30189ad97ada3ae13b0dabf42bf172d2c76ca99f447
MD5 43f0a4d1a9bcbb1b15fae275d157cef3
BLAKE2b-256 a1b63126ec54d5e9eaf0cb29ed863c38767e16294b4c82e01efe36255a2c9afc

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c0d8a69434b02ad2644d973be6e0cc3b78ba77f8ff208a7623c98a6e93d3c52
MD5 fbd7c99ff3e602dfcff4aea4c6ddb35b
BLAKE2b-256 14899838fa552f949b448d65484a86963ab3e41899ca30acd11057b7b323e277

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f80f71d8d3f0a1a83a01912b01e4785db47601bb32ff0a2c3f6e93e86092e9ab
MD5 298bb5ff658297a0169c99212a3bd5b9
BLAKE2b-256 fe33da91f20b532d032559a5a0460bdc23dda9d786bfd477af8fe0fa438e4681

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d68c21dce8f11f025e51ee8d0d95c3cb95938c1bb9803518d7bad88c10741b9f
MD5 d5b9e785d0db5c10dbd9de4a43b8af44
BLAKE2b-256 3a9046ee6cd4bbaa8c098ce05911e3267c1a1372a292dd0edd2210b9b01505dd

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a96c9f31c9ad86c7443b90d1d4976e178e985f7505e6767645e29b75fa16ea20
MD5 d9beb9bce2020a4ea3b065aab7f3aeec
BLAKE2b-256 59bffbf31545e46e37da23e899382db5ee9e40029e647faf7716118649604eaf

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd60616b37b4c461119631a0589bc9dc6753f67f9ef591cb8302afa409c91041
MD5 3cd7c4164cb427bbcbc660bd80561e82
BLAKE2b-256 e2e809d09fad213bb6fd07fe8e5c4ec9019e6dca06d8332a663c6522ebe04a7a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 684b20773e98dcf6c804fbf0136a6bcd0382928b724f6c70cd29d77a9235be0b
MD5 70cccde8e39a48077380baeea469fc6b
BLAKE2b-256 e3b028f86c74c61b9b72b4cba3e4f1222b6ecdcd6677fbef07678c83422a8255

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8abae0b1b7a0bc3c9ad018aaf496e0457ab8907bbb96a5de30d3a8636313741d
MD5 26b7f44af72fe30b294b290932b940b0
BLAKE2b-256 03d80ac6522b83c8029a0136d2159e6f34fd01709cda70ccf2f0becd72ddf893

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7376d8f7b7fedc4fea0102038673899fdf4bf4e9a607c9618d0a6f21ca85a957
MD5 5386868c5950014770e271b2ad6499a2
BLAKE2b-256 4a41abb1389a50780b9c4f7158e903a72bdbddd7b12bb4597a1bb161f0590197

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86c1597b638b843910d64cf438525e195b1f2c7600101e3febe1f39efb7e09ba
MD5 8d85a49f87e033860015fa12e540cbae
BLAKE2b-256 350b69d8aba65eebbcd69ac76bc061e561ef4b7c8535a0d6af655d771f92144d

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6605d35704089a4732c7fd947d0a213f8e95125793f56d4d4ff0a7d6c6c3730d
MD5 a434c6670a2317df4b7fece59f16f87b
BLAKE2b-256 273b91be070e07bbd671a38c058bef6ebb37aaa2005c0bd814940ac26ee58bf9

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6db01840227bdbada3582ba9396517f6e272075609c0c7a01b78ac596b6a464c
MD5 ed948aef398c012b5e3c027b23e5604d
BLAKE2b-256 78d4116539d8923c1cb73d27216a52e878da5d48e4e3eb3d852a431798ebf41e

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d1b79f7978b68c66580dd0a622b918c22ed38c04157d791acc55ae974161d0f5
MD5 879a7d6b22a1c25951325c9047947029
BLAKE2b-256 be952eeeb6a9e8653db3d82d70363f7676492b2e4b3c4c73579c956860f180a6

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e341ef2ba08cbd2043ac3aa7635d36eb389889f544ae5dd7e7e8c2207e8dd55
MD5 e70bdf52451b0a2cb9c538186840e119
BLAKE2b-256 48ce6e4797440e0679f8cead1c8b46d325cb1212dab1be6d762d7412146027a3

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd18386d95d8d61c4f60241c3337a6eddebfbf879de946b7e1baa2490346bdbd
MD5 82018619c34d5e16dfe3af247ba8a60b
BLAKE2b-256 0edee45d55a8bc5f9c60abac5c2442111caadfabcc225acd09095d3cdc2b5571

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66b56878ab49cce4151362808127f1d99b4750129073bcfaf77023caada38acc
MD5 6671fbc2d73d4f0cb820f7b2cdfa6fd0
BLAKE2b-256 7f3b63073da1db1e5c8529b313fd780b1bcea41cef2b9cba7b8fd0e5281a2cd1

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4773c267fcd2854452ad5ee9e0c2e227fcc38a3201d7cb1e128ef37a7d3e660e
MD5 0abd0f1edfb30e3dda39e96c706e77a5
BLAKE2b-256 2783073a2ecbdce5fd8f1b262316fa29cf0a8d1bbc54cbe58b2e9357fce69d64

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a901561ff137985a2c4fbf3b025db0e6510687af593493264cf9fbc60bfea87e
MD5 e5508feb7558337d1ff4001775f91f7f
BLAKE2b-256 8b6a2c1af89bf3c21e18257fcb5405c5d9519bfb46858a0632170e7df09eafa4

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 c4789f242b4507793fff6e4813e670f31f6d016c0ac41f042f9de9fd7e1f735c
MD5 af196dbfea97fef4fd14d67c43e510bc
BLAKE2b-256 e26b9b382b3b28f838c03f4eab0b991d77a7d2eec8960629349b1f4567a35254

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp313-none-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp313-none-win32.whl
Algorithm Hash digest
SHA256 fdfce9a08233d8ed040a6e95a2619753fd138e917ff0f572b8b5365e21ca9da7
MD5 bfdbee91c2495f047a5cc453846ffd7f
BLAKE2b-256 e416781b9c92f5d53f6d00d4107bacc853cac9b34a1afd48917b5ddd3472d7fa

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f055b32fe817f46db5c1ca9ad4fa57a8e19c33cb1884db3fbf38e28e14a303b5
MD5 314bd7c05596b32a00c5881ba6a17b62
BLAKE2b-256 e4f77f4399bf8dcf58c94af61bdc951d9c3d99a0751c19f80f09faf934779633

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp312-none-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a29fec00c0083d1233515f85b3d470efa1cec6077fa2de9c80edddc39b3974f9
MD5 6b47c0df50eb94db8e7f552bfe33d8bb
BLAKE2b-256 788485fdd8b4f92695fc3509f1e68ac9f200323962e14e9ae48e40138166d511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6046b6f6ced0962cd7b23f50c9e836428760d239867d69f522ecac27bdbc46ba
MD5 a166ef07d76f04b8c5e99a0f800eca87
BLAKE2b-256 bebf85929a9d024938a7566c3950ec1fef7051c3b3893c7b168d8120682ace93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b993be3b671c5bc640f3874d52b63c124a9b3fbb137c9695cfed2a86a15c53e
MD5 16cfab6b3591a177666ef6567bac0260
BLAKE2b-256 05ddbf411d34ed38d6f4d833b55985f83b46cc6332e78366ba4baabbd7c5103f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d070c34512a34017706c91d1dc5ae4b90af881b2b0047fc48ca2bdde631540eb
MD5 369b1021d9c51908d579d1ced307e668
BLAKE2b-256 c06f9ab4b37db753f22e01ba3c26e5499ec39114277aad86dbd8da397c1c70a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bbeebb23c294b5df69202cd1a4546965380a1d9b36cf58d458012abfd6b80d3
MD5 241cc57f740e6959bad72bb5693e5697
BLAKE2b-256 baf10bb609801ca9b5e7c6593c2df9b779653752dacfa0f6dc59abd256cd9f31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b5bbcad81acf66d3ebea649a4c51c322424dd511d85767f4366c797f9f16821
MD5 eb99c80fac9b259c9ede33a55036a21d
BLAKE2b-256 dc19a6d3e05f89ce88c7aa254546ce54caaae2a0a8132d349e6be8d5d8d164a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 178ca98e667b534cedd09c48dfc5aba9bd77d5ebdadd108136d19d54d4457047
MD5 e5f18571a2b44909507512a1fdbe92b6
BLAKE2b-256 a73276f6707baabb073047c3caaf49bee896ed01985b5063e2b4017310dd5f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8172fbcdac9e349677d723f36a96581c58ab20c7c7334c44ffffdf825b98f2a1
MD5 5ff78e57d26a90e4663c5d88bc210196
BLAKE2b-256 0a49ae75441ad5a053f99bb6b41079616390e1f6e7301b5c55d001c669b6cc13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e54b14bbb9f52acd27782623af054cbf00be8f7701c7775a6809f171c0c1fc1
MD5 79d9ca1153134d8ed2ef6882d42ab1c2
BLAKE2b-256 014f41070b6efc2d78e6c730fa5b9a8de8dd3bd6b30fae81d9a3839062f60b31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55bb2abc3ef8fc73db452758e432ae5254f6ff9fd41ee0febde8a5bd573fcb34
MD5 565f3d0e7fafe2233a9d7a1b6cf5b716
BLAKE2b-256 3214080cb455356f93df16026e223347a2820db5ffeff38833ee3345459d0984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d203ad58f683fd60e679b79822b607ed556d3a4e1d851a3aeabfd384c540f76d
MD5 3c37b2ccbc1769d4784fc141be363ed9
BLAKE2b-256 7d45972c997a27902ca63e2fc9a3c74b0b9da70da1e578ba71d31c2b8336140c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5ba29231ebe19228cb0a284a0f1bee140ad66f8b689764f5b89736a1327a857
MD5 6cc3e51b082a1ed639dc50135c9f2540
BLAKE2b-256 d7f98f65f3f9cb733193c4c19a0a477447509ffd5487ad0d0a2e800717bccd46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 deb65618f91cd66d021d95906a708aca9ddbe72f2faf8fa6df0f9ad88c90ab6e
MD5 ec6ef5f9eb868ad50793a998b179813a
BLAKE2b-256 a82c7079168d42f01ae70713097816509c2e44be04e41fddc6b0b6449bfda406

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 62336706ecbf11d4d81d7cd91abf8661250f2cdd2cc0828647c14084298bf9fc
MD5 0b262abf5a58dcb2153e8a34c03a5bb6
BLAKE2b-256 1e70f9efce5753089cffe022bdcbba5fcca13983d62a140c4deea6035c424c3a

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp311-none-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 47be3b115944e1603c92ae6d7e8382ec3e88533663e3d9df0315274d8a1c82ec
MD5 71cf11ca83f3464874bfb4403e4db4d8
BLAKE2b-256 53032053196d43c35349ff7ba53223e12278029b4ab6912372edec8e7785bb8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4bc8b68585df767338c93232a57cd7a6fbe7ce0a0b3ac0fcbed74773f8703fa
MD5 a91b56650362280c2c7998b7d4937c8e
BLAKE2b-256 b9d51ce0042b0d94c613f846342a1e6cc52f9c9c77f4e836f4a0b8ac1d083a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1fa67cef813b462064ad3ef63e5918373afc2b281f4d753239bf2353c8d3a0eb
MD5 602f3907db47c4883f01eb44cc110e40
BLAKE2b-256 53ba768c49717739311f2a4de9648a431302836e116e0f6f427748f32467d806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8b15bd1fc3cbdd3350438116739bf35b6712897f1db728e32f951f383e0da94
MD5 19a641e18380b0923573273b6c6a3b75
BLAKE2b-256 669de480828bd9fe4a5232ff6a7d0c76863b4abc163baffb890ac8cf18d830ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f8481baa827ca3e09dba58e41faff93fa96cb54879ee8df2c319e3b214fe528
MD5 46cd9cd16a5d1356b670cebf71a97d84
BLAKE2b-256 c5c920a4d36a1a3f95c64388d9f5f235a890c1126c0337ba9fb0d340b41629c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dce7d7fcbb54a17796eee0e724a66de5ce2ca76b032abc428083c2ab0caf39e8
MD5 d3ca1c0f603f17a223b299e41663c924
BLAKE2b-256 2e2e213a852e6b2aebbcc9c145ea1576a52a6e867a0e5209194ae839835bbaeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afbaf2ad4d4f66730c4353ab0b79777c38d0922de4050c0318bcde81e8fd1d17
MD5 1341877d9a23f186232d7525e48bd608
BLAKE2b-256 8a28190509301aa557fb826eb6ab475a643ae56d899e9bd38647fe76b0adff7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7e717e8624ae1cada80c756d261cdaa7c768dce957f8dfda61d9d7f15643611
MD5 ffd380f2c10561d7e35cf41fad268644
BLAKE2b-256 11a7e29fc9a9a86d8fc126e6ce0dbf3d3833bbb8897b9776140d7657444be87c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 590afecb031b90d27d7b6fbc9c003934d4e6c6fef4a56a07fc7b855aebca796c
MD5 739379ba9a798fdc4800beecee4f8428
BLAKE2b-256 5eabca3a06352572506a3835360ebb372f947e5c4d26df0d6e36124db97dab96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3f7e6dcc97acb09cd4512d64d976fabc850517cfcf1b88c1461782b5043c35d
MD5 2082a22d38819ca316cd839062881953
BLAKE2b-256 8b2b44eca7ee713b3869a2f982c8d3f505c163523dfec47bdcf9d4c32a385e72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e83a4f3ade81c58f92690e5b4be00730011fc6b236503f979e9f5aca2396a374
MD5 a23ffd8a44417c23844d0f109191a96b
BLAKE2b-256 d317487a7dc735a8769e2e40e468feac92e38d838a791047154b7458dc4c8328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac24df260057d586271d535d0b38eedce632793c2c5d1b8f57b00d9948d3c158
MD5 a4b58370d3d069f9c29fc4f4bdb64fff
BLAKE2b-256 421dd187f9f55fdf00c9cc8dc52ffbdde2df1a000aec07edc45a7cf1ec2d5cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bac16eeafd7f60342cbada2cdaf5fa11b4bd1e41aba0bdd6e2b49c5505fc1347
MD5 b2a59ff2648809bd280816137b678bab
BLAKE2b-256 59661f925bef1e62e93b1d68d4cd10418dbc0eb1f94bd932fbdfba45021468cd

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d68c394364373e91c23c48f19506b21c1d912a1216ffac7765babf3556ad536b
MD5 4b2242d73e2a396643a7b6f03ae813db
BLAKE2b-256 cf8815a25ee1e6d6178a5434fa4d575ad94b382c54e327e68ca1e3df6a66f68e

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp310-none-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 f7f90a17a3179575cdc9c5c6216e8bc947111563d189e36d3b5e23334131bfac
MD5 189fd59de824f50aac1b762e89f8fddb
BLAKE2b-256 b851e5946f77680ec1f5cb64da3119fe8fae646a8baaf8662d69708ed054eb3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a12b64680863203bfb096123f490e589edf572212c5fe3cf66fed1237564b353
MD5 a72dcc8d577fb4fa7441346a09bb5ba4
BLAKE2b-256 82dc0a8bfb641f07a068dafa14ab492acb3084ff2d32ad7c859549bc2dd88c04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 148d55fae0d8a2f955d3ea7992879c6748d8485ac13ca2b6b6b348b1e3ecd9b6
MD5 73a50d6163be8f524e731e630b551840
BLAKE2b-256 11bced548997a0912f15704b69567f6246c6190b93cd8453875162d0a1b7d7d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 732d7326ac73b3a6785181ffd0a9474f5e206aaf2dcc76bc47881aefcf46649a
MD5 87b7ea92061cbce059414366e10cb611
BLAKE2b-256 185385644cb7331e1eb34db85d1e0ee57c9aecc8c5387f12904911c55431a8f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3461b14ad7871c2c0506a22effd551e9486e71ea919a61fcb4a25564997077d
MD5 183cd3e6c3ab877e6232f3463f6ccd6f
BLAKE2b-256 0287b6d348e04174038bfce783525ec0211702382e664e2560324992aea8424e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0229f50ea0adeca6f168dbfcf22ffd0671964842493cf7097d9196042f0c3a0e
MD5 394ab767883f72d40300b1181d10eb96
BLAKE2b-256 f8334815bbad28f953b132d831db7424a89192856747f8bb4855f0e2b2fa6c7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 689298f36f5644b7ed021645ed0c93b5406aa3f8c890eee8ed1c202bc98ff552
MD5 cbe143efac46b151314d564c22ce0991
BLAKE2b-256 a6996ed29577ed0a897ef69e755f7311d8b6214332fbb84a193d161f36b302f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 487dcad77939f6a30aff29610ef6eed4119e809bebef9130e24074112f9b9d26
MD5 b30360dc3c781beb699c0fcdc171d630
BLAKE2b-256 57d77188cbe4b2f2f88e96cfc611b25f679b4060db4386e3082ce3215f356edb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa2cabaedd11cb1d39bf9cf2c725a72e2681222bcd8b9c4abd37dc7f6b150ca5
MD5 0d24d282a45cc58ca489466b1971ce8c
BLAKE2b-256 7573f45e97165988831b2e57051fd5fe5cd66a776be46df25ff96e090d619757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a3ea17b06979a77b61b49478e739cc55c7a79d4fe05782521c276c8d0845f3b
MD5 03039312d25f42dc36709af0348a89af
BLAKE2b-256 5779ff6d5048ada9ec7bc40c9cb673d228528396357c8b86b7cec55ee40ca3c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6f88d6da2cebd9a84f1175ffa35df6472e0872127e39bb288e163b1c3cba0caf
MD5 02f6e46e7403ef8a238906075f5d7c85
BLAKE2b-256 4b90081026ad4114fb2e98676ed93f3451d8fe4e15cbe3cb2e60c3e07bca57de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a655e9e5ed7750af0faeee5dd4ae8718bcf1a8e325ffea39a3af72e5661e8b80
MD5 5a55dd36a02ba22e9a23278294d0d121
BLAKE2b-256 6bd732ed703952836cac53a0675ed4d29507fbcd1727644a24a7af56d5db44ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35aeb4d780dcdeaa17f615248007dfd705d4c5e21d8097310618cec7d0358d7b
MD5 23e872683e80f82d2acffb98e772576c
BLAKE2b-256 59e175e9a5a36cd3658523d6eabea51aadab76857aa6dbaaa1e6ce75496d62d8

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 03803302f93e45d4874ed7bf31771d3ac124f5c3ec0c0182d0c805c00f400da4
MD5 b15a86b8293167d2864404e43efe73ce
BLAKE2b-256 6450313f2f1d779f7ab8de24c8a5d9e16274bbfc2bb66f97cb2452ed7736b639

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp39-none-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 64106fe10dea7306d15ab8dda74854729f95c55c5749ded2ac30deff2c481c5d
MD5 a788e36997212478e32f0407c4df4049
BLAKE2b-256 fbf7b782284c014af3aaf53d3b442bd7596181970bc017f5dc171e6873cf5dc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83ee5ddf2c463bc054ad0246c8e6ee0039b6ece1a0e78f913d0cfb94f079f740
MD5 f769bce61d3d8c50312b161208e1eb57
BLAKE2b-256 526fad882c39046ed16dd89d7c1ebc7ba852cd792e6b018fa4bdeaf8d3751c75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52eaa0b21e03d9e9a36fc7b3986cf7bcdb9d281a77253628ff4278267852510f
MD5 a307197635c728c1150e4705924560f1
BLAKE2b-256 68632da24ec68c50f2b9729e0ebfd51589e9d50122107b7be4684a69bc50bc53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4bd5521b72c9255e7245e4902d3f469a64127b155584327aa092d31ecc06b0fc
MD5 52dc8df38ccb0c2f8116f7c7a75333fe
BLAKE2b-256 ac274a5b7560d8b8d239661a81020edc9dec9f449218f9dd84371188642eef58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 edf573b8fd1adcf17965c18c5cb7fe588f3e461f09c4b29e8f75ead1b6bc24d1
MD5 4746493d2d30c985f862482ac85d8ef4
BLAKE2b-256 098b1d7a629adc9bb1933df521985707180cbd14675176d750572837dee7d80b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4295d773f3f54b9b82945159d30daebc0d9db2db34298f2f034fd706373d6ec2
MD5 949f08777caeb464db61710e1877b0dd
BLAKE2b-256 18db56d59322f53c8fef5392710c14c67821aea3597d68f50d529b3693b1f5f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15b41b6e980db08ba49d8b279fa004d3ffb388f8a95842c82ff8bbf02ad51606
MD5 0addb02ad84949a92d8a575ff2100681
BLAKE2b-256 f6e3de5ea3070fe79bef97411c7b0793000a50901f3063e0d0128d417384e831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aaa75506e0a2bf58d66ee7079b97ed136027054e64155b5bef22bdd4c47acb17
MD5 9d867cff1e7e67a288eb40434b1905da
BLAKE2b-256 f1429382d633dc99c3041ad751382adf9dd1a338c0c24fc57130ce8e592eef78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e93ff6fe8294eb3d8708b1bc5f5aaa1d28457f9e67cf81404cb9b3329ca56fab
MD5 306ec137135f4df305b6448b83823d3e
BLAKE2b-256 2d9afe0dd4417c31fc6ffdeb69686b79a7e562b70f1eb177c216e782e856e22d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 117b562e57496dcb8900cf24a3e58bb33125255d351098b2ebf1912306f8d720
MD5 fbe02873e02364e4662215869c884e20
BLAKE2b-256 1176fea7843f4f3382c6534a45ffe7cf2567048b706be1b17575212a9d4ae9d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a872413ed69d292b64e3c74ad99ae0832a562b7c3d1e8453d6f0eeaea6c07319
MD5 5307f6cb9c74ffde0f5631c2b5641c6a
BLAKE2b-256 0d01fd123e05db418cc74788130fbaf9195726a7069039e43891195eff5a3e44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f049273d4cf2be8070644938a637fefe4ce4125d6ce13bb7ec3224712e789b4
MD5 f3247cda4a3852a6746f87489fb88b21
BLAKE2b-256 192a5abda32b2afdee31f0464a148f8770073a0494cff3f7c2f934da47b50622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83cea9f653da10a70308fdfdc1fe68265bafeae99f2df9f949b11a81f09a180c
MD5 d4399339e3ef7009707b49724180a874
BLAKE2b-256 feff8d42ef3149bd1346daf0eaf0d97aaa5c505ee7faf663c1d7cdaff3df4563

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d8b39c07b4cb9108606be1b52aa59520fea11b3ebf0be22b3d3bdd3fb2a1a7d2
MD5 6bd729dca16a13b4637fad826539cf4b
BLAKE2b-256 74d82e8e748473f42b9047ee4e80b07ae135e38ce4e57c2b96495340b55f3621

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp38-none-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0366c4fbdd1c50375f1f1b28f0cfe917ecafc4f94577265e8c28812873a0ec0c
MD5 b6194d18635c56f013be9ce26e4b3720
BLAKE2b-256 09e051dab088cf29e369c35f064a09e675ee3930694eb5ec327ee3ea090ec7c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d16a3f2bcb8e8f7bd0184e9c2ee3862a3418e14e978ae1b8f9be972ea654a85
MD5 3de844639615fd5fabbcb69efeabedb4
BLAKE2b-256 4c5e2d495b403c0d56e0bad77815bbfe45be7c6599740c217967b75b0594d822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17b345a8305ee5e69cb8b61d56ae22357d5a6b97ecf0ff1ef5b3992606301103
MD5 b44228971adf233dbcaa76d19a01c3b8
BLAKE2b-256 07f075bdd7b6d3dcd69fca54a51e0aa9fd400bbd4b83a15aa19697804e15f1d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67c3aaf871e113c61d085495c8dca650f1135ff16e6c04270c37109559058ec7
MD5 1295de0b33ae73fd759bd475b4856c51
BLAKE2b-256 0495e6670ee013fb0936523312a7448fae0d1b8a4e6eac893c34a64d26255813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d02a1d2179cf52fc444ca913d2b2e9720f9bad2ccba2b177e60818ce9641be9
MD5 1baed79e9c6f5fbd73c3777e1908965f
BLAKE2b-256 a6d49ba16930920556e6cf08544a32387bb1af9e27ee9b69007efc16b26a5b71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9633be1f2205c25978d307f6e63a863c0981c191349cdff6dcc9a629b2d9d6e8
MD5 f7001498cbbd74da3c7874f731e910b9
BLAKE2b-256 a36f0955a2d9b72cf3a2d9fdfcf484a767e970084b3aaede57b1c0cbb6064f15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 032b0e882d540de7afcb190913219412ce58048c96c3a666444476550f6e0a51
MD5 61b779ca96e57ae22aaa0c69f3f3c591
BLAKE2b-256 0f1810d72499bd2b7d8ab7b8ab7915bf524830ce5c19111774aa26a9eded0e48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b06b33d0ce90b17a99bf57db8f9f7121b1138b7614cca71e8f3faef320ff12b6
MD5 bc13d4659ca0296b389fc3a6fb734f4c
BLAKE2b-256 8ba257bacaabd5ed0cb71aacc8964eac5c73a3c1ac4c9da98d53a22e3d1f6e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71cf85b6d7c2386f707be880c900960a66b91bd20e6d43a075974beeddbf5088
MD5 85d1724eadb61c6f5fb0084b4c7a903d
BLAKE2b-256 4213d93c5d4b758bba0a784a7886f61ac97b4ec19a2f30dafd7bb5858e60e679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e430e2213132713845fba355562906051139dc47c7663a1715cd76ef80e42c19
MD5 4e0896ec9eded2b68e2781bfbdae91a1
BLAKE2b-256 0e5f2066c61bed41bc9a958f44ca73020d35ba3eb194489bf89e9326c3fe0ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de4d5a057344072b473fb52fffb903cc805c15fc6f5b80e5cc9019600b6d9663
MD5 394f6edc863bbb065c0f3af1e37e527e
BLAKE2b-256 8778bacae0f1ccf79121d5ebaae0f001f3980588b03c9c461db3dcc05f8a7ade

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 dd84d7898432e80d7cde7ba8253f0aadb6bb968742d6dcf89e863cf8cb3c312c
MD5 f1b1b5574beb3742f66ea3eca828278a
BLAKE2b-256 97f1dff189330257d0de285807ec7eff24a9a259aa150dbe5bbb15ff2f290149

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-none-win32.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-none-win32.whl
Algorithm Hash digest
SHA256 ad197f3e209cbf8c1135977bcb0510d072a508891a5947ecebb59cd21f8aa0da
MD5 025f782bba7bce4142799595a7f09d4c
BLAKE2b-256 3f570dbe0a7857cf9241aa7ebeb9683512233069ffc6cb13535c5964a7b6818c

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa8900ae53414d89c83f524e3ac56d9c0b1ccd2ea6fe9feb40da6c5f956d683b
MD5 406fce0f31ec2a518531765b882fa22e
BLAKE2b-256 56a796bab2ba681469efa67cf0b24b18e8d4f9575ee4d4b3041c80f03a7f894c

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 377ec0199869a4d5658ee6f733ec0b93f46f520a93a86f53c39c73252d8da36b
MD5 8d8c835c9e35042cf8c1bdd39125a4f8
BLAKE2b-256 5512e29a3739c456ee7cedd0fdc6a0657542f880456a593616ca1072b22f4018

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb84d429212a2be5c272ec9817f0ff56ea1b7d993b0bffd00cbc5536e965a286
MD5 fd5c3ca534b4758ef95fe3d21a40251b
BLAKE2b-256 0cf02376ef1edd246700c2239c8ae41cbbe0917ed386c346d9cd9d6b71c2ecb9

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f32042e0365ddc95643d3b241352f67eea05851da6484042c68f0fe24f6e5e65
MD5 456121bf8e7298faa97e6dba6120f7de
BLAKE2b-256 e6996cb911f51d1ccbdeec5fbaaa01007d1867335e5b8d36373547c36fbf04ad

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0836f98f0d00640b2af58e67566034e92b64b2e7d61e22e0d3682ea6c17166bb
MD5 3f3d78f3f3dbc130ca6f56b9cde03eda
BLAKE2b-256 d1180b934c800b245ec37f1c5fbf320d796d98d1ccb603d56286a3a5003d712c

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d573b22bb1f8419cd7e73b359d75d8dfff4b7df4d2bfdf144648b0198f5d2f4
MD5 846b90b2beeabd76e943a4554b24b808
BLAKE2b-256 25dfdb9f5c87e59e93531f14e7d867fca6c49d601ffafaf8c592e5a866cbb548

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c60973141e7ec2da88f11018ff30feceeb62ed088ab58f2c7a9dd7a8f98a725b
MD5 2c281188047c9a2c512d242680e64b49
BLAKE2b-256 0084bfc5eae4e9aac0e1b6fc1805ef23719154f0ae4103255b27da505f1c0433

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7185ec908c1cab54454c9a9f40e5e5aabb2554d3194c2c7529ddbe9cfe44f2ca
MD5 f2ceb2b583b02d4bb698353c1066ab2b
BLAKE2b-256 b52a464b565be2b6da18a831ab3c153ebcfe450eeebd0bc737c999d7b6769274

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 936a6ce24e34e24c0c66701f1f636d892d9671ed998b6442612837b07f412aac
MD5 5ed4c9bc6c3b712ae2ac0a366fad2a28
BLAKE2b-256 63c1a603c99dc0142af12f23a2f6c2917bb7310df04486516d79af16e9d9e1fa

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a2d58f8e80694c7f8bd36b1fb6fc4d75e4f8cf5efa2c4826111587d0541ee8e
MD5 83df6bb9a85594281bbf29c6f7ba4389
BLAKE2b-256 09429dafe153506f4bf44ea8ca5dc2a6c627ef0d3bcdc6d87e978dd08f90f64a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page