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.3.tar.gz (45.1 kB view details)

Uploaded Source

Built Distributions

python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (453.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (473.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (470.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (325.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.3-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.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

python_bidi-0.6.3-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.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (254.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_bidi-0.6.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (258.9 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (453.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl (473.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (551.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (470.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (325.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.3-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.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (302.0 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_bidi-0.6.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl (254.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_bidi-0.6.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (259.0 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (453.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl (473.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (551.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (470.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (325.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.3-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.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (302.0 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_bidi-0.6.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl (254.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_bidi-0.6.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (259.0 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_bidi-0.6.3-cp313-none-win_amd64.whl (156.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

python_bidi-0.6.3-cp313-cp313-musllinux_1_2_x86_64.whl (451.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

python_bidi-0.6.3-cp313-cp313-musllinux_1_2_i686.whl (471.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

python_bidi-0.6.3-cp313-cp313-musllinux_1_2_armv7l.whl (549.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.3-cp313-cp313-musllinux_1_2_aarch64.whl (467.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

python_bidi-0.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

python_bidi-0.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (300.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

python_bidi-0.6.3-cp313-cp313-macosx_11_0_arm64.whl (252.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

python_bidi-0.6.3-cp313-cp313-macosx_10_12_x86_64.whl (256.8 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

python_bidi-0.6.3-cp312-none-win_amd64.whl (156.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

python_bidi-0.6.3-cp312-cp312-musllinux_1_2_x86_64.whl (451.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

python_bidi-0.6.3-cp312-cp312-musllinux_1_2_i686.whl (471.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

python_bidi-0.6.3-cp312-cp312-musllinux_1_2_armv7l.whl (549.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.3-cp312-cp312-musllinux_1_2_aarch64.whl (468.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

python_bidi-0.6.3-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.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

python_bidi-0.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (300.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

python_bidi-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl (257.0 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

python_bidi-0.6.3-cp311-none-win_amd64.whl (157.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_bidi-0.6.3-cp311-none-win32.whl (151.8 kB view details)

Uploaded CPython 3.11 Windows x86

python_bidi-0.6.3-cp311-cp311-musllinux_1_2_x86_64.whl (451.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

python_bidi-0.6.3-cp311-cp311-musllinux_1_2_i686.whl (471.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

python_bidi-0.6.3-cp311-cp311-musllinux_1_2_armv7l.whl (549.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.3-cp311-cp311-musllinux_1_2_aarch64.whl (468.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

python_bidi-0.6.3-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.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

python_bidi-0.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.3-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.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (301.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

python_bidi-0.6.3-cp311-cp311-macosx_11_0_arm64.whl (253.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_bidi-0.6.3-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.3-cp310-none-win_amd64.whl (157.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_bidi-0.6.3-cp310-none-win32.whl (151.7 kB view details)

Uploaded CPython 3.10 Windows x86

python_bidi-0.6.3-cp310-cp310-musllinux_1_2_x86_64.whl (452.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

python_bidi-0.6.3-cp310-cp310-musllinux_1_2_i686.whl (471.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

python_bidi-0.6.3-cp310-cp310-musllinux_1_2_armv7l.whl (549.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.3-cp310-cp310-musllinux_1_2_aarch64.whl (468.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

python_bidi-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

python_bidi-0.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.3-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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (301.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

python_bidi-0.6.3-cp310-cp310-macosx_11_0_arm64.whl (253.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_bidi-0.6.3-cp310-cp310-macosx_10_12_x86_64.whl (257.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

python_bidi-0.6.3-cp39-none-win_amd64.whl (157.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

python_bidi-0.6.3-cp39-cp39-musllinux_1_2_x86_64.whl (451.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

python_bidi-0.6.3-cp39-cp39-musllinux_1_2_i686.whl (471.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

python_bidi-0.6.3-cp39-cp39-musllinux_1_2_armv7l.whl (549.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.3-cp39-cp39-musllinux_1_2_aarch64.whl (468.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

python_bidi-0.6.3-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.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

python_bidi-0.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.3-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.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (301.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

python_bidi-0.6.3-cp39-cp39-macosx_11_0_arm64.whl (253.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_bidi-0.6.3-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.3-cp38-none-win_amd64.whl (157.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

python_bidi-0.6.3-cp38-cp38-musllinux_1_2_x86_64.whl (451.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

python_bidi-0.6.3-cp38-cp38-musllinux_1_2_i686.whl (471.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

python_bidi-0.6.3-cp38-cp38-musllinux_1_2_armv7l.whl (549.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.3-cp38-cp38-musllinux_1_2_aarch64.whl (468.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

python_bidi-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

python_bidi-0.6.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (300.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

python_bidi-0.6.3-cp38-cp38-macosx_11_0_arm64.whl (253.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_bidi-0.6.3-cp38-cp38-macosx_10_12_x86_64.whl (257.1 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for python_bidi-0.6.3.tar.gz
Algorithm Hash digest
SHA256 e12114969001a328aea859f79efc30ab9c15241befb86e07029d8961d97fae36
MD5 34f50384b016e1f97ccad9fb3b2cea16
BLAKE2b-256 74b5c1684fb8120ad868b43e4b037ac83aafaa70724cdb078d066bae836c31f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a50d62f4f1e10682babd529d46e9e62236ff202d3025a223c17ead32035cb410
MD5 585616fbbd8aad6dce8afe5e285e657b
BLAKE2b-256 849e6956703cb46b9bf7dae4256123b363e9f8550bdfe3fddd3e0eabd3c75f6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 995ed295f2d9095facbef3025d79e209ec7ae1be0d1f385a49818edb2cb4421e
MD5 c1d17c4dbb289eabfb498b7d880e58cd
BLAKE2b-256 198cecb89be8ccf908bcbd1ccccd36662ac7c0710b194867525508385fa162e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3bdc284cc4a1d70942ba0582b91853403c5ca7df79909b755be69089ecc5e17
MD5 850ab5417a80266f27b255ef8cd4ce2b
BLAKE2b-256 413fc886a8ddd11798ced50470f6e2beedee338b6a6960e190ce1f025079d333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 584dd7c4617ea0ef39900ef7b06b8c61e6ce3ccb4b90c28ed28fa3bf770c5124
MD5 f53aa2c4cb75b6bcab4608eb1e34506e
BLAKE2b-256 0ae655ae3cb6f117fe4d150d22860c7409eb733c97daf7f3b34f204867c19b88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57bb5fd4d9ccad52584ce8ad1468ec2e5b535519840ab1debe05c7fe4d32b800
MD5 845bf9802eac9bf3754ab45382080ebd
BLAKE2b-256 b2b9b52b327837644d25debc6d1bff633578bf3376c10bff3a2e212c8f3721b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ebac008620916b0c02623926fd80719f2e61e4fa9b626ed1e309a6818b57486
MD5 50c883c2aeb5af643f6e0329d4ec04c2
BLAKE2b-256 f66ab2d13d7ca80221ff072f8cfa1d78a8c11ca85d8e728312ad065520cd783c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9635ae0c9ee71b69f11cb6ab9523165c79fdb82ca53afb5afb0d401616fef80
MD5 9dd99d41378591dc98852407375c9186
BLAKE2b-256 0773653ca3948deee129ca5a674bd81300cd825e22875397a45c208570cf5cb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 440be542b334da05673bd94d53ba4922482b06fa3f4daca6c8fa7434afb33e8a
MD5 e75a7414f725f1c4790fb7d906c7e754
BLAKE2b-256 87c56480d468ae982df6985d7c99ce48b46b4cff2fb1c8264d9bce576a8eac96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78d12927cab0f6b8304f04c9ed72bc1a2880df8974d8596e40e7e596c6a98b2e
MD5 aebdea2e7adc85927b2eb7f125297e49
BLAKE2b-256 2ae597c0285bfd52b26f0050c24ac568968fc911c12f9b1128dc05fca3616ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1caacb766872c54742cdb8a5c042bec1282c5a3144e4aeba6f8650ab8911d7f3
MD5 533e2ff3fef615061dc698c8e007d90c
BLAKE2b-256 9f8ebe90d3fd423848baf6ddc2728af168a4688e273115439093ff4881dab1f2

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4eab3736a14b8d9daea3e8e638ca5a24051497152ba32fb08db9259dd77b858
MD5 9cdf0c3cc1f153f7fcf530e8dbb0613a
BLAKE2b-256 052f8330d6c9ff768d6e76f765ba4bf082c74c1abcfda390efb4888421a47c5d

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28cd25ef6141a77e04a7fb6fef0a19cc307106f84a891777fcdd3306ae8cfc20
MD5 3942c4c0e1c1f2cca5eb65d3fdb37fce
BLAKE2b-256 72b999e91d30bcf0f61f1ef055aa180d7337321c09b5684246b83c6b2b4aed69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44560c6abcf3a512e618b52b33bce3d053eaf020c0677d3b4512167715900e66
MD5 b8f0bf1d94ade958f450df3d964df319
BLAKE2b-256 640180be9899383c4cb79ee1e06ef2855231fb181fc1b5e75acee6c2910ec4ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5bcab7ac734c5102e90b0f41274b81bdcf55009b05aaa6a653320d63304f20a7
MD5 23c80c8e032e9a5fd885b1f7d545468e
BLAKE2b-256 c19a4ee76dfeccf4d57d94b793394d74149f12b08fdb86aa25f017babee601e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61b8a3dc229617b2f8c15165001babf4a199af9001087cad10ded14ec0a028d4
MD5 84f54156d44c80a56dc2a5927f9d00da
BLAKE2b-256 7008bac569f9ff4df5e1539e3336eeed22f4de196e0080a2572a258d55188a64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6132d661a3bfac2b8cf0d301bcdd59c7cc3e2145ea090b75505816604d8118d5
MD5 06d9345da920bc13d5af0b9c31e17585
BLAKE2b-256 8f3ffcbac1df91fa26fe14faaf3deddcb90bcac37006bbec88a6aaf6e4ac1ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa68ef8e955d0d63fe2d9aac4f8b8b9f47869bf98a8773c7322918312dbdd109
MD5 ac3f147799f0c1ea59b137070e230628
BLAKE2b-256 6527d46a3f36650aea27267517bee71d2cdb5c77c2a82ff35abf6502ad4be8a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 042d0ee4bb9286b605b252488501bdae6f5b249fe2422fb12e4884aa4dc316d1
MD5 9565b1094d8943bd1d4785d48fa67b1e
BLAKE2b-256 8d111b066dd9d86b57af0ec61f972e7b1a15fcd2869814621dfdf8fc1e8557a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2b2ee73e0f799ed234ed52af258f77a72aca216477d3ef072c59303f1a938c9
MD5 07e728b81ef29f7eed0b4f28e1bd6e1e
BLAKE2b-256 c044eccacac878c080e4cb330955efc16455880ae64a101fc4c1b5ffe130c7ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a6a3e0e130a0db20c4808242470277045e921b414cd9f545cba67a8c17bb785
MD5 259ad31e8c65b5143ee0255154ae4ff6
BLAKE2b-256 03b419356630d8f548526be6985d6a72e5052c17301628fcf228afc9cbece9c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f92e0d6771d184bbb7b06645edb069c023f695de312bf78e35efe45e0da7f66
MD5 b6a53510341f8732ec4a59aedfb9d170
BLAKE2b-256 a4975ab7e04845ae47653fbe21b5f60f072144e647d4c6a190eb2239463bc306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d07c491c2cede5b022356003070bc8e452a0dcf1d884db4a384e9a3383b9efd3
MD5 757a329df6b81c3022a14abcb2f0c27a
BLAKE2b-256 f2537e1b661f6c5c8f711b82f89cbfe798af3c730dfc74e7658fd9aee0e811f8

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 835b1d72364618fc8313bfdba2f65ce8e11bd9c1eab01fe9a3c3ec93063cb5b1
MD5 4602f1adf43e390f39c843491911e484
BLAKE2b-256 c4098a103bad1cbbde88c6a0fa08ada7d24516f46a49c2ad1420d6267b696fa2

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b2ee6cf7cadb5d5cc05eca4b8b55a433dab922633faf85b0d19ec2aeed9ad5b
MD5 531a5967d5dbfe5faa309f4832bac2d2
BLAKE2b-256 86168a3adbf0d94437255672ae53b4e392aeb3ab318bfaaa2be7ac63b0963e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f832a45f05c15072edf473c6c3b9b164b25a2515f723d42c7400db848c299e59
MD5 c001edfd787f904e4d8d0e76e20ed203
BLAKE2b-256 6b6bea91fe1db5e95f4063cc2aea50478f2eaed8cb607fb72c4b811f8cf41cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 197fcd6cb88f021333622f83d7d68e842ab9e2df492ab04e1e84b6de8f15c698
MD5 111f0f4e18c3f5c14bfe1f779d5b36e7
BLAKE2b-256 a93dfdb7fe2ac0a3d5a6ee6bc79f9c99813a50f75b048f6d96469826d24d3191

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa857199f9d797c615a92ae1dec90d443a50373caf7af2cf4e791714afc31b2a
MD5 27853c2b2f73fd18260b201f45efa7f8
BLAKE2b-256 0f37f3a0a445efb24118635abedac5068bd7a201113ad8f3bb235548a82977b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40ab8bf2f528a28a70231ce4015d81aea6d8f0a0cdd2bdaf024e9e7849a5ee55
MD5 7635ac86528c37599b84dc41acf61d5c
BLAKE2b-256 4adb3c89cffce317eae26873d1fb05de4534f322fe613a12a00a9d16b75fe72b

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 308ee73ffaa771048b1ccec37145a2735da9d67df55583c2fc2cb73d78e86a91
MD5 1e9fbe991986df94971d7b7c7559027c
BLAKE2b-256 d79e9a0138d6386c53ca22ba9405ab59ad0ed9e471c8da38991b65e2c0bef572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e226a888e13c9cf1e9f0de0a2ff5c98a50561cada19c0b0c69c76343685ee54
MD5 bb1eaf69751af89c98d41be17b0ee71a
BLAKE2b-256 9b59e24291f657420aa2ff34bc51d21e8618ff170c6481d517e7b7f2ac9b0060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbf64f5e3f19913f63f34832c0ddef5ea6a772c5dda54907a949e804c20021e3
MD5 65ca5d66a0860f2cf1037dd27b5c8a9c
BLAKE2b-256 e422ca5e15e047f5f0b752b29e1e5cf8ab61cf5b36e09a62247fe721913a5fa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8d76a8452c9fa1ece0a70a7be15a516861c3875bb621e125305d0141ceac8e3
MD5 fcfc7b90fde35573c8ebbe45cb757735
BLAKE2b-256 9cc075f4f9d8d9662b20deedb6e1d31cae91022ce01ca02b05a8990b841e064d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 435579d0bf2a7e2f872bb5c7254fe89cddfdea6909ed6dc3e8af4ffe1f3f1f18
MD5 06c4508affa09a792a86b61e9b71b18f
BLAKE2b-256 24d01ac95eb831fcc905f3517774925fb30bded40c21b3c01cca26816b139a9b

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d85744ddcfeb207bbf6774b7e1a29af6e5e208ed5dbecc5853ec60ed8bc8242f
MD5 192a9d27dbdf334ae0671ee75cb1b692
BLAKE2b-256 81a1720a28c47c1c22ac6f5a56f7faa80cd86c6472620c0e2cbcea18b793a2b5

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe9b6a33f281814dfbf12fe27f35b8780edd6da62ce2a034994f006d6d0184e7
MD5 cdf698ba4a63f7eaf2eeeeffdd4e157f
BLAKE2b-256 22e7764aec5b27125043d28f006c58fdd3c61a698857e32821572cc727d71c0f

See more details on using hashes here.

File details

Details for the file python_bidi-0.6.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_bidi-0.6.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea2898279afde47dcfec7a821abb54f7476e5584b655389aa731a50b90f8ea52
MD5 4b16eb8a7c5014fe605a57d7aabe583e
BLAKE2b-256 1369f99800f2eb641a756bc5e2ba34759d0aea6544b80fe14f9f52f2ab7b7bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 36b3fb05ef990613a81a23822246eaf6eef29af5182f8d8cdd174be13c92d1cc
MD5 464320943cc89d663251c3983f62a1e5
BLAKE2b-256 b3540b698ac336192ef5ae5c055ff60fa7d15f2411ce107129d3703323196ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-none-win32.whl
Algorithm Hash digest
SHA256 f9b8e024eeaddecb4ca189e3199181985fab20c224db9a1f08db48b905c9905a
MD5 ee85479e0892a6bfe2dee8bf070777bf
BLAKE2b-256 afa4d5e062e07fbf070c8982468280bae6418c513628df7881fdf46a5a02fba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1563a8d9cfaeeeb5b4fc806f52a500b19893c63652bbd497dd6ed9def7b9ee8e
MD5 9486b1da399d98c12e3f857eff295b01
BLAKE2b-256 06b6929538d89494ae493bd67ed671e9a01c88b9054a5dc85dd4f400641cbbe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 702527506ca97bf549710ce03d89a2577ebe35e34c42eaecfbacb0862ba06dc6
MD5 0b86295f61cb03b25438d33a030ca5ce
BLAKE2b-256 c8086cf732e0945e1aa03e189c61288f1d67acd051ffbaae84cb85e329d22d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ccbf53bc71a0a1b7f77524d1c2e51b245ae23a4f16afb80728071e21c187a768
MD5 2b6063a101446a8ba8a80fbed8ca786e
BLAKE2b-256 44529b7ee589eae15637722e17b7fcfa7f1ad7ead4b623c46fed23eaa687144c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7dcbc7eb70a0c7c66ed5219213ee2afcc815988cb9e4b134631579c4ae46980
MD5 a47612535fab1faf5dfe5cd6931b9de0
BLAKE2b-256 e1c83d89cef5bd8ebe6fa262f5035763ef99878a7634455a6b0eeb2abf0f1c0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abdbd5c265d64251798243d97228bb78441a1320fe3cf51c9a31191c56407839
MD5 ff8fdad0cc99aef236db32d5329641a4
BLAKE2b-256 9a1f7757dacc33e95e38fd47f02dcb6d4f67ffce0ea432ae7299568129aa55a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 144adab8dc3a8560e294461114ce6dafec1a986cde6297994c1d31b3252f3298
MD5 30b6e6cf97a643f9a60e3d15d2128036
BLAKE2b-256 b8aef0be940ac876ef120e26a40b3614996e2ae55c8abdd0e98e7e102207309a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 905e212b12c9edfaa3a916a3acd11426b89507ed0f31641257ad586467602e8d
MD5 e3a1e93b6a0cd6d32a8b7012d9d6925c
BLAKE2b-256 c54b793e5fe37dc59ec9c48349bfa6373aa771a02dc2270b14a90fa6d14a7920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5a0e852e8451147d96876f8233a9db6ed28c914d9767a6696cbc899e7df00c2
MD5 3f9926a7186b10c0ed9e7f400792d7ae
BLAKE2b-256 635029ba7d99cb23138da8ce070a677cc1eaaa1545f18cb54350d702366e94f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0999b77af58396cfd789c8d068bac78d2d51363265aaf1369622099be9e0eb32
MD5 3e5c2a86503208a8a1d2357135352882
BLAKE2b-256 cbc9149957c1d75156bf617fd9824b92b7468926a4ba90e74cf1254acffb31de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 65f824a878a593121570ce3da847d3b9ac50521782c433996d7f81f770d3ed00
MD5 6659d7bc8c9668d878d64105dd5adda0
BLAKE2b-256 7ab0be55c786d54e8d37e38ca5199727619d616312daeefa8a0be21ef1366412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81f418d54948542b21c03cd8ce622a480ead85fc53175a124c4562bdf55cec49
MD5 dc9bbd3f4baf9f543d96315483bdf9eb
BLAKE2b-256 397eb66b86a1aca9725366b6f4fd549ff36162de7acd53ba13de7704cbc56968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 617d4391b19969de725922a256599e8218fc9c1ef0ff85884f1698fff482a977
MD5 e5ea0a1b572b7f824782e6d54319e6c9
BLAKE2b-256 6177957be8fa4f681c31af11323376ecd2dcac6cfbadb12e8555e2b826cf6653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 350e6c76f942465871f2b473a2076f5002f1df06e4c7abee3029ccca5f006786
MD5 dd482c7f86d12111062818df2c9c6974
BLAKE2b-256 aae7b4f6a71a7e7aec0e17c36bfca2ff5d962b86b0e04e278de6fc6c0cd6d643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 cea395a7daee14c7d50a7e20890d12b9ff1938d81b23eb564f1707a175c37202
MD5 0296601bdad8ac3b42fafaeb5fe2af3a
BLAKE2b-256 1d1f0539881d381dda2a281056ccfb55905439bad86cfb2787792065a2d8d08b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 926164ec594e9ea9a64faf54273c711d5e3233bcc6ef8966c6eeaddfb3b3075f
MD5 21efb32e76b78cb0ee2d8f9a0e5b6897
BLAKE2b-256 dd5ad3d0588caeb041bbf85b421b30a7a9893057c72fcddcaaf2d54289123487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bee94e3152a6c9ba731e086c9cc6203904290506ba52c505a2e59abab481eb13
MD5 062ecbde646e55496ed07ff233be0a9a
BLAKE2b-256 363a5b6b6b73a210cc99b1d1ea697741fc4fc1853aa788b3db1737bfdcaabc75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b30e620d39e85a30bb42f460fd8b5274caf261517edeb853b975d9ea1939b6bd
MD5 13ac42cea9b4ca56022ae5d61f843820
BLAKE2b-256 6846a9d285552961670aedc0bbac403defa7c9c4b17ab6957ef0b7db05d12eec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a99114f33f8c0273a61b4afe7d4d715e098318ee4e5ce8f6bb5da8dcd3f95c7
MD5 a04fbb0981fd615f7ebd2f1a543e5d83
BLAKE2b-256 612cd50a50adf51b6c53022b9ad247d65cad50acde94f877fbab49a8854ccaae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 933a17938f767fa64a8365732eba787a81c26214d89e1b3abe87912325ba26a9
MD5 b7e4108242c4409ebfa64746a647bc4b
BLAKE2b-256 c927fc5777273bcb3de7b82524852995edd67dc9948ed916a3f9236714628ae3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e17b67d86cd38f2bebc4a46090f83cabb0d1da3a3c920c68efe8093ae1a8d0d1
MD5 c30c48f3aca10e8e029c62363b4ffccc
BLAKE2b-256 26dde795e1186ba6b9e3ebb9bc316c6572036e59d0c2841a5e182403d483eb57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 208e09819ee0485c2ed4dc1932c39fc073dac3f2cb70b6d2ae0b7296e86831e6
MD5 8b120c5f5f17af53b16b2660a84e3383
BLAKE2b-256 e49ebcb93f0e30abbd9fbbda736402e3ee86566b1253ea57d1e9b465eb4b62a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c75a9b68b3f5a8da9a33fe37607d9b267a8a3c5806d283a4a47365256773dd1e
MD5 e8b7cbd31e849742ea027ce579448d43
BLAKE2b-256 637bd1ca351cdab44300296a4b758a370bf923666deaa4d19819a7fc4478dc52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb3091aa5efbfc4da6fd52a2fccbf7853c6dc253ddaf9a189bcf3c4345865aa9
MD5 2379ddbea5634c35cfb05474287b5137
BLAKE2b-256 cab255f4d18760dac53e542817b3a2e11e3d5ae631678f2c2248c6f1e67336ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 772efb3e0ef17396bfd9d47da4805c74ed6c04f27cac08d7757f76602837fb9d
MD5 5c5b68118db325935dd39512f81dc633
BLAKE2b-256 e91190b4072461759074564a29d05a83128f02214fea1012ca0984d3a5a7fdbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0775499b8037103278f05b2bf92d25bf04f40a9f77884ec3d42b01a1e52a40fe
MD5 5b951195bf3ef4594204685bd6d65c18
BLAKE2b-256 ad2a9b54acafa641c360ba3a632726046a8da38da1f3ed7b816ae6eec748ca95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4bdc9dc1143c558ca6931d6712339a30470959f2b7eecb3d0687db7075c20a87
MD5 5d984e040edb49d1293d56c9e8470fe2
BLAKE2b-256 99154f316e1b463ea71b4533e904548f47000f9e20ad394b3e8c83ac65638534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 46ee694cf5a632a8d47cc35de6926581e586425b582216962d3e6d913aea0b88
MD5 bb6ed595f5965f373ef3de75e6b51e2e
BLAKE2b-256 f5441fcb4350e6283a1ccd64666373274dd76eb0a9f91c3c1ac8e06e5046c5a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 8c5fc9f065c24bd8058d7e9a5d42415134de3cc1aa480eebc27e2ca132919dd8
MD5 060bf1defe8ee87eb4c192638dc26068
BLAKE2b-256 26f44f427662c154cd2ad7383ffa14740d39f3032ba088a973b95796d868f065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e0d574c22fbab1ea996ddb1ebb3eabae521f5d129d7c699445cad81e81bc351
MD5 69f40c106eaff86eab65cf927e4bdb11
BLAKE2b-256 ee6f583ab5578e73487466f1f12130689422f866be20b9b1b61d06dd160fc981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d6829865ff94925280af066c8536ff9595a6e40d300f9fc0e6ca4ebbf3bc306
MD5 f4d087c241720d2ee7763da01bc6bc9a
BLAKE2b-256 b42115e9444084c234758b32cbcde7be57f03ca9a153d8d82817723c85df27cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7527247a9d8e0aa9d2d4ecd24cbd8216bc4e3e89e77f9c833eedf278d9761cc
MD5 3d094ea1d00d8385e9bca31377417ba6
BLAKE2b-256 56cd0e197aad0a8b8ff9c980adb4dc5dfc34ff1c1709c8dc3557dc15efafc73f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10f7c23dbb23dd0d2b0f67f7d4c2ba59eb42f777e1749ed9e13dbc8c4d28ea75
MD5 96169d6160014713907d2a9e15757376
BLAKE2b-256 4893c36235c48d68003a63401591fd4884cade4369ec2e666af3029f1db12667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b1204f2aa62ac6226f11dd1bee250d428abb128046cf1999317b3f303c70ea2
MD5 eb3958f0a224af2c31e1a2017c5db137
BLAKE2b-256 5961c707bf04de816c3278943e3fb1378ca41a4381ea8fedf9ca2feba87748e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da00726ebf17f857d458b310e868cae4b3bac668396cd5e874e17809894417e5
MD5 97f2b72666e7d2c30fb86fc18d17391a
BLAKE2b-256 4d486bf8b48d1d8712b951cc5594bfd3f0d53cfc5ffb02e1948475888c9c1945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12b1d522cbd0af85094ccce8ae95c57a6a9d4f98e85f3e7c1ad1fb5d1c2cd09e
MD5 a66c61c127f960a4c06af85b5a2a8418
BLAKE2b-256 3bb6a04586be453fe3abaed5c190e3a00f19e33e7c0d98362bb522533457d2fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22f293338ec7d44e02991787d306d39e02f0b145810eef60802abd7833b6c2d0
MD5 c4affc3ded458adee651fcc14056f5de
BLAKE2b-256 ef36747d1eb808c075d065b6fbab065b42c8be4925361b40af01e65afa598ff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ad3f50925a5943d244c6ca05e0553922e917b3cc415580460d86af6a385ee23
MD5 85f9f952f6fe7416f6b23de4cd0f1ec5
BLAKE2b-256 fce4dab2d83eabaae763ae637190a0af97676caf4f7bbe3fc12f25e5d3f4e2db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c99881440b2a4d8de7c2d7f3ac23e5f0a0ee0c5ae652f53188a21e9b0911f2d
MD5 06c80b398cfde2528c2259e2aff720cf
BLAKE2b-256 613b57b33a0785ec9899b02d70d061607ba33e4479c48ade36b2892c461a7f0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cb80856ce1e3f24c0d878fc85ab767c201ab8891a68f41d8da87eaf39c827de
MD5 cc96619d17e891ae8bfa0163ed7ce8b6
BLAKE2b-256 2929298501cf59ed614bb1e78728d1cad57555dda7d114e7f34aabf215a45c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a656b91c74b77a5b005e6dac092947f00d546cce5d0ca70b6b6741b93f7705bf
MD5 5b8fa37e7bb07359354e2266b4296a1d
BLAKE2b-256 00b0c3921d4c7b498d749cd0ca6ee2be9a78b3442e871bf590fd344118160f78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 866865bbbc97a144e74508e2513373bb590d38fca3b6e52b6905de54b34ddbd9
MD5 0d4dfd5aa45018ca23545d7e49cccfb5
BLAKE2b-256 efd65ed0414bdb9ba0c7d2710d967197c7b3a2b3c40d4f2b1974ba1ed175b8e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 44023d51ae78ae119ef11043b5fb8f3dfc5de5ec04d937d7c5abc4da8cba1770
MD5 673fab500fe7c1d532a69a52856d2bad
BLAKE2b-256 83c41cff2dfaf363daa8e17ece18f4eee2d9543cb1f55803f6269aba1eb2329a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a05249eac27e983a103babb9a2812726312bd8f685fdc3264f78b8ff8124d09a
MD5 e1c82eb28a6e47daf196a9cdf65fba49
BLAKE2b-256 46807d2c44d640d71b7c236936043ec48b4a72a320b8dde6e19597649c0152b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 205aac547f8166005e041b33069da2c8a345171b0d7c8177c3d16408acde9acd
MD5 9288562af6e4e62b6deebf4c24517f59
BLAKE2b-256 f521282ea630232e8dad595d2e5a55303eb86496f22fbcee730868bfb426403d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 631d32fd1414d4795348122b820dadbff1ddaa6e53a70c1ee9d5a84911cc3c2d
MD5 eff1d541512e6bbfa92215e39bd8b86f
BLAKE2b-256 2651fe80453916c398f67f2ff33023fe683c8c8f873dadda3a2a99388b504f4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24ea5c9f5cf9f3919d81669d24a1405709f4d66c82c3ffa7f982fcece856b325
MD5 e232771d36089528de598da37e11d5cc
BLAKE2b-256 a0cf515e91808c2778a0611dd8c09f11708ee23f5bad43ef6546ed2bbecd6734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a4b7b6e458173614348db8e4a4406e468338c13ecc7b74d1e208d38d0d1d264
MD5 d3c860f1ceb60390454ee9302e23e47f
BLAKE2b-256 2ceae451f3c838dd4931756f5bdd2bdea88d47c09399a5b7f018907281359569

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c0635bf46ddd56cf3f71d0711fbc160fd90c36fd3176b3e91b0bf7447e549f1
MD5 b8c97c34a7d15a965369138a776d09c7
BLAKE2b-256 d96b09c31613ca545da21191d8e4f1956a7a1cd737a963ebbe5bf951301a045b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 855a4dc2d237587a734babc6179130f9e7b7c028651cdead6ec5b162115ac112
MD5 2dc3971d1f6bc0882879a5856b8c3521
BLAKE2b-256 52c1e579542a519f7999421670f6d0b825371111a8542cd8cbccde1400ef655a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fe4c4ab61701a5e3b916c6b63811c6fd708539a3f189ec6ca6bd22948a125af0
MD5 81f1dbd2c91df1c143699cfe40b6ad0e
BLAKE2b-256 33e07f4953f874edbf19fded721c6dcb77aff1915709735b5781816d78980d30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 854edec3ef1ef50c49f689b44900fb6c51d35f277e10b4749755d053f405a44a
MD5 24dc851da8db2f820edba7947efea3ff
BLAKE2b-256 94aa2f8db528f278a65b1e4358c08f8c5c227cf9ca1cd2bbdd54ea22c680008b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 25a39a3b61851506ed489867c69f3580ba75063195bf4b00f1983de88e02bf30
MD5 2df18673b4159c9ca32a2cc3eca40ea6
BLAKE2b-256 79fae008ae3d0da6f6414195754aa52d8d7c203fb2cc891d2af5d029e67096b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b8035f02c3fcb52d372bfe51db00a0c95a3fdd6f0504a32e70d4f799809070d
MD5 c05bfed9e403d7e51f65f2582a3ed6fc
BLAKE2b-256 99b4a8a28b0380d3117ae8f206e38111c98b24b34a06c5c03457e5796998222b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e2a62d7ebb4af9831c85921063154ab4067c73768ad04f466dff1359e6f2650
MD5 117dc108787ba92b06e459733bdafedc
BLAKE2b-256 29602e3f97f2b47dbfbaf4af9b0a2b44c50cbc2fe189a8c6aafefb1fc9f437d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 4be0d628b84c2a524d080c653726fba6e518432f33ac970db25c6366b9b71303
MD5 3bd39cca26f6e2824ceced0a566cba48
BLAKE2b-256 992d72494d95d6bcdeae6a4d203b408e5bd5c73431c40060d0c5cdf80c53156d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a153364706cacaea4f97a63b3d5db780d56b66c0a64f1d202065d3863f782075
MD5 bf2bbf2887df8e060d700fc66ce825ae
BLAKE2b-256 c63b9fdf03f1335c679dc05f3b136ef9e7038e359aef4212e75de915e2db6d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e083f0e7391b5672f9e76393d8d111e1bf875f784ad3659776a4881440ebf1c
MD5 6259264e9f11acf088cc3e425d74ae35
BLAKE2b-256 978070e04d2e165f1cc262b81f802da84523d8abc413d7d6c93f595efc43b1b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07eb504fcefc9e9f416f03c089dce23b1ba79d0dd38e976f6f00944d8c708461
MD5 7539c5d053e73ec847198c476c2a42d0
BLAKE2b-256 88f80f4193432a78638d7c3ab056ca4a80decd0a6bb99d63ce4bac9aaca90420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04448d5355db4233da49c9f656b43b34fa0467f6b0c8ff766c1543eaed52f974
MD5 0035916e777667c5b943ca3132a88901
BLAKE2b-256 63aca5b1c796aaba31365b1eb4c1d7467bc200e2d9ab2010b20d8ed07f97845b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d352154a636a243235260ecd8dcbd2b73e3e7d1f42c280fdb6802876152f1435
MD5 b54ca88ef0dcbedbe300b86ab24d3f55
BLAKE2b-256 08cb9fb1836d14244db536ac1e62f0c5cf01ae43b9425a65c19de618e1176450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae862fc829ee747b30cce23353b2266c706376c9b1ebfea943d63731eb1a0cbd
MD5 1b982616143db71ec3395f6388e7bbd3
BLAKE2b-256 69ec95957d02ba60debe20b98ef3e2fbda3c07bb5b3ce0679d9ffba69ff892b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc5a29d459deb7ce923cf33283de15776fa8008c55b42e1eed5ba76980cc01f3
MD5 778e1794ebca1192ffd8d934ba1b3556
BLAKE2b-256 3f819b17bd9cfc51baff7da26770ef4e1c752977a63ad3bb0cad579f6b072459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3df42de54d0f0daea931439abefc97da6c642d3665bcde510cd31689230777ff
MD5 8aef33d31ed2c062d1a026b3093d1a50
BLAKE2b-256 2a16c4551909563302e9ccc0d2ea779c650c951c7de16337d27a8fda654d313f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 304094c931a9ca45a347fa31db9e01b9cbefd48a194950b1441f20ba24ff0d17
MD5 6266c1ffc7612e263229b41d6ae7bf79
BLAKE2b-256 e01812aaf9471326e34d89d65cb97fd45b6396c1492a7a6d1176f4aed108c41c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce288cb2af08d5242b034ce4e6936e540046a4c5fbccda72610ac67d8b06b5cc
MD5 3f2d1daa5f72c29904a031f9e3ef9274
BLAKE2b-256 9d4f7a69b19e8f46d167b9383f59d5b8a9a18c1bf648a631e2b5514072bd8e05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9419c87a7657b1b39497302461c7e501bbfd03442186083007e9a1627656871
MD5 111ccee15a5a127278919e3320b8cde4
BLAKE2b-256 7a29fa628d0b33b9f2f9be15fcd79427ea3f1bce3532587056f9e4ef925be6d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eb231d9ab92bfd4a9b7e7282210f02d130d7935ec8cfb1d82d6d53fa858a3de
MD5 840960fbffd5c6187cb6e58c2c42a3ae
BLAKE2b-256 128d4d6a3f3e457e50216161f7924dcc35bc6322fa2ca5f0e0db78ef78296f9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d0945a3f116700ebc791911797096afe3e24953927b335c9c818f56475915aef
MD5 818dfefab2ea53b953fa62f3053f1389
BLAKE2b-256 37012e6c15ad74d213a116cd4ecb9fd9c0ba8ba7531d37aaa56578c23b196a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 535069329c12ea08ad6a3b38c48cba2d912a704dee25566e7a37f2b67be9fece
MD5 dcf519d86017f5f764835e98bba49c13
BLAKE2b-256 f59ac68f68556e08270aea3abea8bb9af15bfc6066981b7bb8350565e8c02da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 5d33d011d334795ff4d5d0de57457a980f76055a338ebabe558e795f9e0fbe63
MD5 12857631dce39d3fc62d7ca8829dac8a
BLAKE2b-256 ac4647676c4ba20faf21b29a39be3d07d0f055c4b40f35df985764a284c712bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 282c60f86f30ba6263e10427fec528ab17dde97c7a6653c0187d8e2412dec6f4
MD5 380cb715522d28c08fb4f3b8a1181508
BLAKE2b-256 49999c3bde08ec866301b61b05f91b9b05e44f3f2a11ba0e951cf7e0d44cd6e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f859236e69250a0cc857968b8beef749ab4f7b29164cb9a8a3150d094c318fc
MD5 88e93a5b44caf73c0f6fa6f4263a1585
BLAKE2b-256 3e4fbb4e5e26b73067ed392f7ecc5befc349317a72d929688049b98cb4bbe3e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b5f60865b4d10de024c35d9900efe371844da4a0cda1cb2a4bd35746ba69097
MD5 a16375becbbdb2ea89b2de99b39a711a
BLAKE2b-256 2b45e995e7933404303a85a7fcffc95d1a24d8436601b3dcb46d32bdaecd20e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2825a720d9dbd8ff6158a458edfbdc55bfd3de3f8181a59c7126f78ef3e27b7b
MD5 20dbfb7073b088e7f5278eff65ed8bc4
BLAKE2b-256 11f8502b5d31017700df767b6dbc167cf7b7df2ba921475d130b9852c5e2eb13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bedcbab3867227519e2dfee6c3ac26d7722ce6a048f5c72585cf83779b8e61f8
MD5 1e060802a97c0fb5b2f7f93e354ea46c
BLAKE2b-256 f71050a2e2402f541a1e442548484948aafc02d6bfd7b36c0bdf1c1e7d79e23d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 984cb68c5bc7980f9cc66ae2f9d06b7426445b7dfcce4d555ff04333c34d01a6
MD5 f14bc1602ffe2895fa6f3f9a1930a371
BLAKE2b-256 2712e5a9f03755e50e85122cd244ccb062a10783863421b23b2363deae365da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4d4a8917804a1c749e92aafb152d239cd25127cea0bb8710b99315266022009
MD5 0f25414994526ad358b01ec1d330be5b
BLAKE2b-256 401d5ffbf00646a7792316a5efe4ae1d3d9e87322c2066069824daf7d24e608c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ee410954d7dc7591106f9526c3ce9893a64345e69edf86d084fe8841e62bfa0
MD5 77df70fbd554fd07982bfbf6bb3cec2d
BLAKE2b-256 11875c865591502f0d0bbbe451f13cdb47e4292ded3901d38a33c00fe55668cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 982f805714a5ee83b034b8ad6a27f37db994483b72657c7898053333737a5fe3
MD5 bdb708a117cc7d2e4d497d62d1af8e76
BLAKE2b-256 f91ccf81f8aef9acb5357aec6d267edb6e3620b73ee88771ea7d478d4e984c87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eda3e04c6f54e0e44e55433da0fabab6776c69bcfb1965f09e4bb5b5b4446846
MD5 9aa38c3fc9c6e792f97b31c4e9e6f8a4
BLAKE2b-256 8acc7faac3de5e9f61bc7019808f4a09d43918fae4e211fb820a7881109fd02a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f482f205a62c958273e40c20405141f18c2d0529abb22ba6aa440602655f43a7
MD5 5e5df0364e269c1ee79e80bde89af856
BLAKE2b-256 1a513e133215aa04d538abfd2b78a114896a4d1d4b4f616433f83fd77e4158aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.3-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ef3c351c19348133e78aa4a05bc939f9f11d53c6733c5e8ec160a9fd78c902f
MD5 b64cf673c703914afcb8828db402365f
BLAKE2b-256 733daf247b79f648cef63cc9e07d20d607424942f48398dcd78c20350a1ecd3a

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