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

Uploaded Source

Built Distributions

python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (461.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl (486.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (558.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (466.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (352.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (299.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (292.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (309.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_bidi-0.6.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl (265.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_bidi-0.6.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (271.2 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (461.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl (486.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (558.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (466.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (353.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (299.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (293.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (309.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_bidi-0.6.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl (265.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_bidi-0.6.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (271.3 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_bidi-0.6.6-cp313-cp313-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

python_bidi-0.6.6-cp313-cp313-win32.whl (155.0 kB view details)

Uploaded CPython 3.13 Windows x86

python_bidi-0.6.6-cp313-cp313-musllinux_1_2_x86_64.whl (458.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

python_bidi-0.6.6-cp313-cp313-musllinux_1_2_i686.whl (483.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

python_bidi-0.6.6-cp313-cp313-musllinux_1_2_armv7l.whl (556.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.6-cp313-cp313-musllinux_1_2_aarch64.whl (463.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

python_bidi-0.6.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

python_bidi-0.6.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (351.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (306.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

python_bidi-0.6.6-cp313-cp313-macosx_11_0_arm64.whl (261.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.12+ x86-64

python_bidi-0.6.6-cp312-cp312-win_amd64.whl (160.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

python_bidi-0.6.6-cp312-cp312-win32.whl (155.2 kB view details)

Uploaded CPython 3.12 Windows x86

python_bidi-0.6.6-cp312-cp312-musllinux_1_2_x86_64.whl (458.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

python_bidi-0.6.6-cp312-cp312-musllinux_1_2_i686.whl (484.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

python_bidi-0.6.6-cp312-cp312-musllinux_1_2_armv7l.whl (556.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.6-cp312-cp312-musllinux_1_2_aarch64.whl (464.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

python_bidi-0.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

python_bidi-0.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (351.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (307.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

python_bidi-0.6.6-cp312-cp312-macosx_11_0_arm64.whl (262.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

python_bidi-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl (267.2 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

python_bidi-0.6.6-cp311-cp311-win_amd64.whl (160.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_bidi-0.6.6-cp311-cp311-win32.whl (155.7 kB view details)

Uploaded CPython 3.11 Windows x86

python_bidi-0.6.6-cp311-cp311-musllinux_1_2_x86_64.whl (459.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

python_bidi-0.6.6-cp311-cp311-musllinux_1_2_i686.whl (485.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

python_bidi-0.6.6-cp311-cp311-musllinux_1_2_armv7l.whl (557.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.6-cp311-cp311-musllinux_1_2_aarch64.whl (465.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

python_bidi-0.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

python_bidi-0.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (351.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (307.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

python_bidi-0.6.6-cp311-cp311-macosx_11_0_arm64.whl (264.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_bidi-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl (269.5 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

python_bidi-0.6.6-cp310-cp310-win_amd64.whl (160.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_bidi-0.6.6-cp310-cp310-win32.whl (155.6 kB view details)

Uploaded CPython 3.10 Windows x86

python_bidi-0.6.6-cp310-cp310-musllinux_1_2_x86_64.whl (459.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

python_bidi-0.6.6-cp310-cp310-musllinux_1_2_i686.whl (485.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

python_bidi-0.6.6-cp310-cp310-musllinux_1_2_armv7l.whl (557.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.6-cp310-cp310-musllinux_1_2_aarch64.whl (465.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

python_bidi-0.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

python_bidi-0.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (351.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (307.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

python_bidi-0.6.6-cp310-cp310-macosx_11_0_arm64.whl (264.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_bidi-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl (269.4 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

python_bidi-0.6.6-cp39-cp39-win_amd64.whl (160.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

python_bidi-0.6.6-cp39-cp39-win32.whl (155.3 kB view details)

Uploaded CPython 3.9 Windows x86

python_bidi-0.6.6-cp39-cp39-musllinux_1_2_x86_64.whl (460.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

python_bidi-0.6.6-cp39-cp39-musllinux_1_2_i686.whl (485.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

python_bidi-0.6.6-cp39-cp39-musllinux_1_2_armv7l.whl (557.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.6-cp39-cp39-musllinux_1_2_aarch64.whl (465.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

python_bidi-0.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

python_bidi-0.6.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (351.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (307.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

python_bidi-0.6.6-cp39-cp39-macosx_11_0_arm64.whl (264.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.12+ x86-64

python_bidi-0.6.6-cp38-cp38-win_amd64.whl (160.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_bidi-0.6.6-cp38-cp38-win32.whl (155.1 kB view details)

Uploaded CPython 3.8 Windows x86

python_bidi-0.6.6-cp38-cp38-musllinux_1_2_x86_64.whl (460.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

python_bidi-0.6.6-cp38-cp38-musllinux_1_2_i686.whl (484.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

python_bidi-0.6.6-cp38-cp38-musllinux_1_2_armv7l.whl (556.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

python_bidi-0.6.6-cp38-cp38-musllinux_1_2_aarch64.whl (465.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

python_bidi-0.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

python_bidi-0.6.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

python_bidi-0.6.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (350.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

python_bidi-0.6.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

python_bidi-0.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

python_bidi-0.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (307.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

python_bidi-0.6.6-cp38-cp38-macosx_11_0_arm64.whl (263.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_bidi-0.6.6-cp38-cp38-macosx_10_12_x86_64.whl (268.9 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for python_bidi-0.6.6.tar.gz
Algorithm Hash digest
SHA256 07db4c7da502593bd6e39c07b3a38733704070de0cbf92a7b7277b7be8867dd9
MD5 39d23d7525337e0dd84473d48fa9b66b
BLAKE2b-256 c4de1822200711beaadb2f334fa25f59ad9c2627de423c103dde7e81aedbc8e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dfa55611022f95058bb7deb2ac20755ae8abbe1104f87515f561e4a56944ba1
MD5 5b8814ddd3b40f70f96def4bbed9d8e3
BLAKE2b-256 114046a72df7d1b703023749b73b68dec5d99d36d2740582337d572b9d1f92c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6ac2a3ec5ccc3736e29bb201f27bd33707bfde774d3d222826aa181552590b2
MD5 4fa76236252391a6f61343d98d3a3194
BLAKE2b-256 2bc5b7829e222f721339f0578f102d467101633970d1443c65b565654944c114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 91a8cb8feac5d0042e2897042fe7bbbeab5dea1ab785f4b7d0c0bbbf6bc7aefd
MD5 47d91bb6794ae2d7ef4f2b560b551ea9
BLAKE2b-256 3bdbef34eb7bb88d6ab5c7085a89b975e19af821713395be0d3a7423df3db60b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39eed023add8c53684f1de96cb72b4309cc4d412745f59b5d0dab48e6b88317b
MD5 56c6d240f38ee2e949c15d7c263b705d
BLAKE2b-256 418ff58e2b990fcb5c8f75aab646e4a16925f119110bbb3907bb70de2c1afd07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 804c74d070f4e85c6976e55cdbb3f4ead5ec5d7ea0cfad8f18f5464be5174ec9
MD5 c6fcee39edd4499578ad9ea7762ac4ba
BLAKE2b-256 a001d404c3efc450eff2322a47b5f37685bfff812c42e99228d994ba05767f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00081439e969c9d9d2ede8eccef4e91397f601931c4f02864edccb760c8f1db5
MD5 936aeaa6f7bcc11614cb65b1bd783cef
BLAKE2b-256 06cc2f5347a5bf7f218d4db8a35901b9dce3efe2eb146e5173f768396724dfd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2f227ee564e0241e57269043bdfa13025d08d0919b349f5c686e8cfc0540dbf
MD5 f4e53765233f9569fca0c2eb68677ad8
BLAKE2b-256 307ef537fac0dec5d2e994f3fe17053183f8afba36f8e5793fdcee7d0e9996bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4142467ec0caa063aca894ca8f1e8a4d9ca6834093c06b0ad5e7aa98dc801079
MD5 c8c8a61b295a2d22041545c0e606a551
BLAKE2b-256 420b1185d08bb3744619afb72c2ec83bded6bcfb6e4dcfbeda1cb523c3a48534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0e715b500b09cefccaddb7087978dcd755443b9620aa1cc7b441824253cf2b8
MD5 f259e5138057ba2c3b593b49090f4962
BLAKE2b-256 5c1ccaf6cb04639c1e026bf23f4370fc93cef7e70c4864c4fd38ba5f3000668f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0781c3c63b4bc3b37273de2076cb9b875436ae19be0ff04752914d02a4375790
MD5 90dd817f7ed716526977d7eb5cdeb655
BLAKE2b-256 6e91ff576c53d2f13bf8a84ef46bdad8b7cc0843db303a02818ffdb0861ecd8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d941a6a8a7159982d904982cfe0feb0a794913c5592d8137ccae0d518b2575e4
MD5 5d61a3d53906c84cbcc21278dc62aa79
BLAKE2b-256 fe4e5128c25b5a056007eb7597951cc747dfe9712ccfcfdf7e2247fa2715f338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd9bf9736269ad5cb0d215308fd44e1e02fe591cb9fbb7927d83492358c7ed5f
MD5 ca56a540b60fe35335ecef1eba19ec1a
BLAKE2b-256 11515f20d5e4db6230ba5a45ad5f900b97a0e692fbf78afce01ee9ffcd7282c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b65b4105998436405a3e6bca60cbf9714f6a08099b16c0cf4752a4a3a70eb45b
MD5 ea7880b13dc6e191290bc6bced3549fb
BLAKE2b-256 74cfa0a6d4483b15939540a07af89e40650fc792c11c48de912a3375144f1121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbbcb28474b71e3ad05d8bd483348efe41fb7dfef6bd3046f3072baa0954d746
MD5 f9a666de9b76c8ec76cae2ccee21c980
BLAKE2b-256 8fcc641ee9d3c8bcc58891105c9746100cabc2450cb1d6a4835f4464969014fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c07e4d6d8c8f574aa135436207a37bba522443a8490b0ba720b54d343dfde1a7
MD5 51dc487e73380dd6ab757f7260d81b24
BLAKE2b-256 5056fd599b934410b989542a076ebd254d080daab3056917f3542b705335904b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6255ad385bb90aa39f8340967eef35657e52f8ed011773d37113cafa0ed5eefd
MD5 c9efb871fe89d507484335c49599458f
BLAKE2b-256 abe1c2041fbc433f9db8788eecbe30dcfc32b487f16aa7a9aa9956ae8265900f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0eb12b724cc99853e0e0425b54c1c2219492486afaca106c827204b4189504db
MD5 765fd42c95042f07d86225401e54fe63
BLAKE2b-256 2ff7c7dfb7150af1ae50655e38f09f93fab94b61631aa68bc498210abd4d69a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87a5489189b0a852da0129df77f0cc8e874b7b1ab1f968a209d340477906f076
MD5 2a5e04eac635875cfc08f00d5da1ddd9
BLAKE2b-256 7f5804d878c71c9d2cddb1993c2e72d98a7f4eb389559f2b859077a6513fc150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6cc626d2f77cac470b3167a28d4975744f3d99f5eaf8f5c2048ac9c0b9cba9dc
MD5 115f858c8d32c2ff009da1f44e9492a8
BLAKE2b-256 97e9faf9f5b75d82d05651ee5a2e186b27399fc7e9292d44f56c1f15683eb1f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 471c1a5fcdbb3de47377d74a7f1017216d9464e5428ca4e66f863e49dca73393
MD5 8ee45aa25506a8c93110a0f037e21f35
BLAKE2b-256 7a1a4f5e75997606eebad3aea14d805b6267d2035394adf24ae59fe4532c68e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d395e537a34d59e776fcdf50a50786d1a82084849d55cf644f4969ef8156643
MD5 8e3e62d5b0f61a39b395509c09dd782a
BLAKE2b-256 84d94346c804619f81ffe4af30ce086807eac2f5250ceb981cca8f44338e7d39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 82e0befbc1078a964c6b6f2f7a616ae8015b52fdcd2f03979abf0fb1f2f18b48
MD5 c605a6fe04b5829bcb9dd2c596c18d79
BLAKE2b-256 63f46881eee008329903e222bf9e961ca26d14a3f3fabfa694ae2149ec1809b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e17441d31a8665a44f5f42dba7646bbcd3c51ae6657dd019f6a7bb12618b12f
MD5 6b75f55ea8a1e20a5e06a699b8ead9aa
BLAKE2b-256 56c0f1f73f7f4b8df6a23d7a214b51e8b5d75c674eaac14ad554c1cdf0b44fe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a138a7607b459414431a5cdcf5834624d6f87911a8863b51dd363a1e2e5744ab
MD5 b55054f34bba3590b9bed318ae366320
BLAKE2b-256 34f7a762d2d75ae62bdc30de7deda9f97d752ebf20d6d092524921c225153722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 63f7a9eaec31078e7611ab958b6e18e796c05b63ca50c1f7298311dc1e15ac3e
MD5 735a4aff070c0ba4528b951a54547a4d
BLAKE2b-256 74793323f08c98b9a5b726303b68babdd26cf4fe710709b7c61c96e6bb4f3d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 485f2ee109e7aa73efc165b90a6d90da52546801413540c08b7133fe729d5e0a
MD5 03ac84efcfc0477b30e0fa57c8db3131
BLAKE2b-256 e9eaa775bec616ec01d9a0df7d5a6e1b3729285dd5e7f1fdb0dfce2e0604c6a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 686642a52acdeffb1d9a593a284d07b175c63877c596fa3ccceeb2649ced1dd8
MD5 2913006de7ee81a2eabc1cb5e3b92574
BLAKE2b-256 487ef813de1a92e10c302649134ea3a8c6429f9c2e5dd161e82e88f08b4c7565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 207b0a7082ec38045910d37700a0dd73c10d4ffccb22a4fd0391d7e9ce241672
MD5 d3e266b75220cd83841b13c90b55be9e
BLAKE2b-256 460588aa85522472afda215a6b436eaa0aac6bbe9e29a64db0f99f61d1aa6527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5506ba56380140b3cb3504029de014d21eb8874c5e081d88495f8775f6ed90bc
MD5 8e1ba40835259347f9e467d1fede6ccd
BLAKE2b-256 4fa836bb9553e00d33acee2d2d447b60bccb0aad5c1d589cd364ddd95d9b876b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1dcd7a82ae00b86821fce627e310791f56da90924f15877cfda844e340679de
MD5 f9462c8ccbaf3ea7e6a92d693436c535
BLAKE2b-256 9e0103341516d895ee937036d38ab4f9987857b1066f7c267b99963ee056eb9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 183fee39bd2de787f632376bd5ba0d5f1daf6a09d3ebfaa211df25d62223e531
MD5 2cb3bf193526cd41d1f0217c33280480
BLAKE2b-256 ca40071dc08645daa09cb8c008db888141998a895d2d1ed03ba780971b595297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 125a815f2b20313a2f6d331aa84abdd07de7d270985b056e6729390a4cda90df
MD5 6b68d11077c942e38d486b15c70b9e6c
BLAKE2b-256 9e66cc9795903be4ce781b89fa4fe0e493369d58cd0fc0dda9287ab227d410d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ada1aecd32773c61b16f7c9f74d9ec1b57ea433e2083e08ca387c5cd4b0ceaed
MD5 7eb26f72694edd63dc52a8a79d30dea8
BLAKE2b-256 3939dc9ce9b15888b6391206d77fc36fd23447fb5313aee1fa1031432b2a4072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43a0409570c618d93706dc875b1d33b4adfe67144f6f2ebeb32d85d8bbdb85ed
MD5 18573fc99aaf3436135a4d513ed82673
BLAKE2b-256 426e4b57a3dba455f42fa82a9b5caf3d35535bd6eb644a37a031ac1d5e8b6a3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c9f798dd49b24bb1a9d90f065ef25c7bffa94c04c554f1fc02d0aea0a9b10b0
MD5 61af518f209ad0cf72f00c8b5ad3bd8a
BLAKE2b-256 0a874ecaecf7cc17443129b0f3a967b6f455c0d773b58d68b93c5949a91a0b8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c4e08753d32d633f5ecb5eb02624272eeffaa6d5c6f4f9ddf012637bcaabfc0a
MD5 0989cb066153332c534f93b110221ff0
BLAKE2b-256 175a5f60915a9f73f48df27bf262a210fa66ea8ffe5fd0072c67288e55e3304e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33bd0ba5eedf18315a1475ac0f215b5134e48011b7320aedc2fb97df31d4e5bf
MD5 6e668bdd99c625b538d34d7638c48007
BLAKE2b-256 0c19d4d449dcdc5eb72b6ffb97b34db710ea307682cae065fbe83a0e42fee00a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61cf12f6b7d0b9bb37838a5f045e6acbd91e838b57f0369c55319bb3969ffa4d
MD5 fb72adc1fc5fd6ffe04b1c78893fd20c
BLAKE2b-256 a5b1b24cb64b441dadd911b39d8b86a91606481f84be1b3f01ffca3f9847a4f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f60afe457a37bd908fdc7b520c07620b1a7cc006e08b6e3e70474025b4f5e5c7
MD5 31f939c6000c9344a3950c1b067857c4
BLAKE2b-256 30dae1537900bc8a838b0637124cf8f7ef36ce87b5cdc41fb4c26752a4b9c25a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 57c0ca449a116c4f804422111b3345281c4e69c733c4556fa216644ec9907078
MD5 81274ddca804867fd5513d06a9b74d2a
BLAKE2b-256 9f1091d112d152b273e54ca7b7d476faaf27e9a350ef85b4fcc281bdd577d13b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07c9f000671b187319bacebb9e98d8b75005ccd16aa41b9d4411e66813c467bb
MD5 c7cc45c922bca34c0245f721883a4aeb
BLAKE2b-256 9e054a4074530e54a3e384535d185c77fe9bf0321b207bfcb3a9c1676ee9976f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7e36601edda15e67527560b1c00108b0d27831260b6b251cf7c6dd110645c03
MD5 338b59c382c1720464419c654ecbcca8
BLAKE2b-256 0f9a80f0551adcbc9dd02304a4e4ae46113bb1f6f5172831ad86b860814ff498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4c0255940e6ff98fb05f9d5de3ffcaab7b60d821d4ca072b50c4f871b036562
MD5 6e87a436f928f2a604f70da5e68c8c6b
BLAKE2b-256 d583d15a0c944b819b8f101418b973772c42fb818c325c82236978db71b1ed7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b5f648ee8e9f4ac0400f71e671934b39837d7031496e0edde867a303344d758
MD5 73a621cd4ee7d46dc6efa4c77f2ff000
BLAKE2b-256 5eda6cbe04f605100978755fc5f4d8a8209789b167568e1e08e753d1a88edcc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b31f5562839e7ecea881ba337f9d39716e2e0e6b3ba395e824620ee5060050ff
MD5 8c2d5673889c84ad2efbf56fbfeebae8
BLAKE2b-256 077c094bbcb97089ac79f112afa762051129c55d52a7f58923203dfc62f75feb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25fa21b46dc80ac7099d2dee424b634eb1f76b2308d518e505a626c55cdbf7b1
MD5 50549e9f613caf2cc89fa288be8e5334
BLAKE2b-256 5eab05a1864d5317e69e022930457f198c2d0344fd281117499ad3fedec5b77c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bb186c8da4bdc953893504bba93f41d5b412fd767ba5661ff606f22950ec609
MD5 056a16db689dd9a4f6f9876de423e3d9
BLAKE2b-256 e00cbd7bbd70bd330f282c534f03235a9b8da56262ea97a353d8fe9e367d0d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a525bcb77b8edbfdcf8b199dbed24556e6d1436af8f5fa392f6cdc93ed79b4af
MD5 84a88db6e4cbaea8c89a151c2c5e7af7
BLAKE2b-256 cd05cd503307cd478d18f09b301d20e38ef4107526e65e9cbb9ce489cc2ddbf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69c02316a4f72a168ea6f66b90d845086e2f2d2de6b08eb32c576db36582177c
MD5 0e2c79a5eed1fd9bb1f89254636d9167
BLAKE2b-256 27b68212d0f83aaa361ab33f98c156a453ea5cfb9ac40fab06eef9a156ba4dfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb750d3d5ac028e8afd62d000928a2110dbca012fee68b1a325a38caa03dc50b
MD5 d246e8cf57d105819a0d06a71c317b63
BLAKE2b-256 996b5e2e6c2d76e7669b9dd68227e8e70cf72a6566ffdf414b31b64098406030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8706addd827840c2c3b3a9963060d9b979b43801cc9be982efa9644facd3ed26
MD5 a1a76c13c50929d372bf0d2bf67bf96e
BLAKE2b-256 b717b314c260366a8fb370c58b98298f903fb2a3c476267efbe792bb8694ac7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 166060a31c10aa3ffadd52cf10a3c9c2b8d78d844e0f2c5801e2ed511d3ec316
MD5 7705adb1f7d8104b72231eb9ce56a93d
BLAKE2b-256 6f8445484b091e89d657b0edbfc4378d94ae39915e1f230cb13614f355ff7f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ff1eba0ff87e04bd35d7e164203ad6e5ce19f0bac0bdf673134c0b78d919608
MD5 da034144b8e59ac7d4a7dceeb96bf3e1
BLAKE2b-256 9541d4dbc72b96e2eea3aeb9292707459372c8682ef039cd19fcac7e09d513ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b271cd05cb40f47eb4600de79a8e47f8579d81ce35f5650b39b7860d018c3ece
MD5 4a78d4d79f5af8c0d4783cd7c1e1f56d
BLAKE2b-256 bbd277b649c8b32c2b88e2facf5a42fb51dfdcc9e13db411c8bc84831ad64893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53d7d3a550d176df99dd0bb0cc2da16b40634f11c8b9f5715777441d679c0a62
MD5 c3128d71055366c6500c7647e2f279bf
BLAKE2b-256 fddb88af6f0048d8ec7281b44b5599a3d2afa18fac5dd22eb72526f28f4ea647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 965e6f2182e7b9352f2d79221f6c49502a307a9778d7d87d82dc36bb1ffecbab
MD5 3c398638c34cd5ac88587609fbda2158
BLAKE2b-256 2de53154ac009a167bf0811195f12cf5e896c77a29243522b4b0697985881bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 00622f54a80826a918b22a2d6d5481bb3f669147e17bac85c81136b6ffbe7c06
MD5 e687cf81b5caf2d34683fca922117ae5
BLAKE2b-256 82077779668967c0f17a107a916ec7891507b7bcdc9c7ee4d2c4b6a80ba1ac5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 994534e47260d712c3b3291a6ab55b46cdbfd78a879ef95d14b27bceebfd4049
MD5 f68e6db6522d9210fc768c3143e2d46f
BLAKE2b-256 4ca35b369c5da7b08b36907dcce7a78c730370ad6899459282f5e703ec1964c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35adfb9fed3e72b9043a5c00b6ab69e4b33d53d2d8f8b9f60d4df700f77bc2c0
MD5 7c2bf75219411c758b0e7b835ff229f6
BLAKE2b-256 7550248decd41096b4954c3887fc7fae864b8e1e90d28d1b4ce5a28c087c3d8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3428331e7ce0d58c15b5a57e18a43a12e28f8733086066e6fd75b0ded80e1cae
MD5 d5bba8e732481307087c2e2f5999cdef
BLAKE2b-256 18e7d25b3e767e204b9e236e7cb042bf709fd5a985cfede8c990da3bbca862a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2a49b506ed21f762ebf332de6de689bc4912e24dcc3b85f120b34e5f01e541a
MD5 307e4bafe7258bcff1071d28d71c84f7
BLAKE2b-256 0011fb5857168dcc50a2ebb2a5d8771a64b7fc66c19c9586b6f2a4d8a76db2e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8bf3e396f9ebe8f4f81e92fa4c98c50160d60c58964b89c8ff4ee0c482befaa
MD5 df1de6bb9c9e2f84b31bcc4cf3fde45e
BLAKE2b-256 954517a76e7052d4d4bc1549ac2061f1fdebbaa9b7448ce81e774b7f77dc70b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76a1cd320993ba3e91a567e97f057a03f2c6b493096b3fff8b5630f51a38e7eb
MD5 ef20b5bba62e0b6094c23525dbb08c5b
BLAKE2b-256 519f2c831510ab8afb03b5ec4b15271dc547a2e8643563a7bcc712cd43b29d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 589c5b24a8c4b5e07a1e97654020734bf16ed01a4353911ab663a37aaf1c281d
MD5 6887482eedc1932aefb011e0df8579c3
BLAKE2b-256 0bd86ae7827fbba1403882930d4da8cbab28ab6b86b61a381c991074fb5003d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c48a755ca8ba3f2b242d6795d4a60e83ca580cc4fa270a3aaa8af05d93b7ba7f
MD5 a46a1c2d2cd84605c3da1b6ca61c1570
BLAKE2b-256 91d88f6bd8f4662e8340e1aabb3b9a01fb1de24e8d1ce4f38b160f5cac2524f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da4949496e563b51f53ff34aad5a9f4c3aaf06f4180cf3bcb42bec649486c8f1
MD5 fd332f1ade9c6a449bab0baaf82f1267
BLAKE2b-256 bb03b10c5c320fa5f3bc3d7736b2268179cc7f4dca4d054cdf2c932532d6b11a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d627f8cfeba70fe4e0ec27b35615c938a483cbef2d9eb7e1e42400d2196019e
MD5 1ea8322db7e1c313c90ee32171ebfb58
BLAKE2b-256 23ef92757e766ae753a264a5c0d2213f19a073d0b0389210b2eef86c65bb02d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 92eb89f9d8aa0c877cb49fc6356c7f5566e819ea29306992e26be59a5ce468d7
MD5 a420c57261500bba67502567cb502bae
BLAKE2b-256 e407e80d714a2a9b089a1bc621f06c29da5adf01149b21d8cb2e10a942126650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3564e574db1a0b3826ed6e646dc7206602189c31194d8da412007477ce653174
MD5 2e555cc702a1f5cdf1e60ce29cf71aa3
BLAKE2b-256 b0e85c93fd22a87913fbbfd35c1d54142601e2877f5672546b885e739c19b070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc8b0566cef5277f127a80e7546b52393050e5a572f08a352ca220e3f94807cf
MD5 9691a372f970c6c1f2af1052ec124803
BLAKE2b-256 f963448671801beb65c1bcdb1c2b1a4cea752037ce3534ef9f491794646cc5d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2150ac84f7b15f00f8cd9e29fee7edb4639b7ed2cd9e3d23e2dfd83098f719b7
MD5 42eeab63405d8a90cc53b832f7a21b66
BLAKE2b-256 2d1a9a17f900770bb1124d7619b9587c12a36a71992a6a3b6e61d0119bf210f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a9de76229ac22cb6bd40b56a8f7f0c42cbdff985dbd14b65bac955acf070594
MD5 57527fbc404595b1dc1ea280bd931ca8
BLAKE2b-256 3be35f7c96c156e50b3318cbd6b77bc95de096f170f88e8efbd90b00a5489671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de020488c334c31916ee7526c1a867bf632516c1c2a0420d14d10b79f00761c7
MD5 ab32ef7dad3c51a0edda2791c39608bc
BLAKE2b-256 2bd3b577d4457f678dd2d61b6e80011e20ee4b1bf0be5233340deaacd358c878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41fde9b4bb45c0e1b3283599e7539c82624ef8a8d3115da76b06160d923aab09
MD5 ea0fc4d371357889eb59de930d9d0bd8
BLAKE2b-256 a37ecb6310ce12030e1c31b1bb743bda64945d1ec047051f1ed9f008f24ffc92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b144a1b8766fa6a536cc0feb6fdd29d91af7a82a0c09d89db5fc0b79d5678d7d
MD5 f0b105d535146044ca4a802cbd00022c
BLAKE2b-256 f6734b584fe00869c14784fd2417f14cf9f7fcb83c68164a125aa8c11446d048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b53b8b061b67908b5b436abede8c450c8d2fa965cb713d541688f552b4cfa3d3
MD5 bef9f4ce24524723b8d58765f7dda4d3
BLAKE2b-256 62eef37710b6947e67279e08619b6c10dcffaca1da9f045137ce5e69e046f63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a4f4c664b2594d2d6be6a31c9254e784d6d5c1b17edfdccb5f0fac317a1cd5e
MD5 9dd27b2744c9e0db75f226698d640388
BLAKE2b-256 aa98f1eada157c94cdebc3dde997ab9f3b4e3e5f43155eaf69954c899231e23b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 27cf629a0ef983a25cfd62c6238ee1e742e35552409d5c1b43f6d22945adc4c2
MD5 2ff61922ae4f2e74534882045f83f05e
BLAKE2b-256 98f21dfc79bbdcac958826c77e787a03668bd52a165d132defc3c71b21783219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 493a844891e23264411b01df58ba77d5dbb0045da3787f4195f50a56bfb847d9
MD5 ef7303ece883c7eefaee02d589c0331d
BLAKE2b-256 f92a7371ab49b3f64f969ca01ee143614268868220a8d5cb742459103b2bf259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09d4da6b5851d0df01d7313a11d22f308fdfb0e12461f7262e0f55c521ccc0f1
MD5 9fa06d70d014388cd05fb2cb07ba42db
BLAKE2b-256 3ee0fdb20f2e421e1d2fc4b519e1c2cd24361cbeb92c75750683790ef0301207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 edae3dd8e595a40d3cdd6ff8b6d9f3860cd17f674792ea05bba5bf5f1b36e5ab
MD5 aa04f48a2ff7031d749c7975cb3d8fa5
BLAKE2b-256 0e8937e7a629bef2813aee8e8cd9b3ddbdc44e2653062e21550c12a410961b7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 691822fac1d6f3caf12e667dd8b41956485c78b211032747c5f97822ba208726
MD5 41de9d2f4e7f98b0577091e5092644e7
BLAKE2b-256 a344637336105fe7e2a997973ac73963e47b20522b21816f30456daeeabb96cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af828457e46b31542569b4391014e6645023f6144de1dabf9fce7e9683235c25
MD5 9b63802e4071beb0add6c5db96721a14
BLAKE2b-256 5440967cc37d15d0d5f1684743cff39d8ae1e397680a73e8eaa27b88a18ab182

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4eb3f28ca5e2f7238eaf67126c7634ec35603cbfbbe9b9b340ffee4a3314455f
MD5 30a74bca12e85100445ca9be29ee59b8
BLAKE2b-256 7dd2dcaa0f8db4e1822f4d5c6d54718b26ce0911cff9d283f32b5b3d39b84086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d139bab64962731b5288edb1b6db76060c5a5183187efa590499951cd230b02
MD5 1cd7324a256769acf7ced3b97dbb4f42
BLAKE2b-256 3f04dedc2138107746dd3f95a08a975bf7797067f7c5aed9b7ba40218716d9a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7906229befa0cea2fe0278a934a27f657b68ce07a2606b1244f814a38b4ab42a
MD5 d13ea00e8904bddf7e033a713d0fe26b
BLAKE2b-256 49d08d79f0d8a7c94504f96ec011cddcf42ce892bebb7a6b9263392592aad40b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 534bc7c84159b6e4b777f5fb9122902d6e19223c4242f5b94417de1afcfe2fd9
MD5 d2a5f3070a15e7e2eb7017a5ad673bf5
BLAKE2b-256 e9ec3088a751cf30eb1bb5a10fd0117d1c12182fd074fd05f503f17ebd423a38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ecfd1d0f6d2927eb2114b55a63b298766b85fc9f0c9aaacb4e8df3e0468538a
MD5 7b83db70ba85a8a8ea6b3e5a15e41d95
BLAKE2b-256 048a657c8e9c03d46c9685d0462b5d929d0f3bc2d1361830d2b607b336a35b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7edb0d1baf45c70384e700e10d723a13aabe116e14453cbf099eea4dd763e28
MD5 b31324a38c5125920c70155701291cf0
BLAKE2b-256 4e4c575f0dd3d9469d326cb62db0afe3e8e7d8173531c675560d06ae9614d137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82c7f6bb3dfc4f61aecb2290f1ea24bb2450a5cbc94ee8abe5d6278b67859e0b
MD5 3b54e02b26b993dda40d44dec5d45c93
BLAKE2b-256 62b66364a4242ec32d26dff79b14b104968143629cb5b58de88635039d456afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 825d15e547a9a2da5501966db672d6c8a5a063c041b2741ba32cc9775694b0ff
MD5 33e2921e6411db04d459847aceae4f9e
BLAKE2b-256 d2ee3776d9604496216ebbe92eb0480d724839126eb95400d5c59653453e48e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 490f8fe09ed423bfe00531f215e3b87e6000b8170408a0ead6ea5626f644b1d1
MD5 c3c679bcefbeee7e9f4ebeea137267f6
BLAKE2b-256 584debb967047a4487dd6311d74b07530fb3e2d4919bef8dbaa8dd125b8f1441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8a83f28c104ef3b86ad60219d885b31728eb40c644f414f505068a6ecba3575
MD5 68b2dfc00258a1d8defc1f1832c234ce
BLAKE2b-256 f3043eef6432d029d3d624f3d1b0ef91dc44f2e9089179645117837490d4fcec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5351efb4e86281eb26c420066fade935cd670c0c0960edc323b80d0b94a0bc19
MD5 718fe8d9abdcc3800ca8623cca08ad35
BLAKE2b-256 5e814619e45ea0ed20f10a8b4bc96b1100abd4066936f612eb7158ccf746ff05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 53122c3492fe3df871eb682c17eb848e24aa702946622ab78141c7027775519f
MD5 ec0d1d80dd7b78c212d9681ce7d440b4
BLAKE2b-256 ab32eae714e76ce80d1b1a8cfae4179cc27106a2976c880b20a84bb6e6e20d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e4a6251e212f828bb10ea69e0aa6b92b54f00bf56526b490fe890ca5f4333ec1
MD5 17e85c11eca9ce7a7a2dfdb03e79743d
BLAKE2b-256 6d93ec72c496d79cbbc089b5c745373ba1513b81b9f37e31e2ed5dc2f001580a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9498ead7f09eee272ff9c45900a8dcdc50a9558e126420a71d15774cc98bb44
MD5 52f97f7180029726570c70a3f729073b
BLAKE2b-256 36f90c9f5eb9cbb6055dd7b42ea737c96c1a53ecb06ebc15f0ef2b5b89711912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fefea733a1acaaf0c0daba8ccd5e161b9419efb62d8f6f4c679c51ef754ee750
MD5 ed87f0dfedb27921c2ad5ca3fe9b3057
BLAKE2b-256 c8a05f19cbf099a706ddf45bb8086afb146d7067a825008b112e7d46a9eb562a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 646e83862dadfee00b75c93a930015e9f1cb924b26c34319a75aef65fcb3ddfa
MD5 1401c2bc9a646ebd2e6b6c4be2189369
BLAKE2b-256 90800d31ea3417ada6d67e59c17c8c0888b65dd0530b4df22e9dd0349e60a630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91c12d58cec15385817f8b2c7c56de8e37523f05926f2de0e59199d3e50e1516
MD5 4f1a0339475a0ba79f8eee47edda6315
BLAKE2b-256 21dd119d27113d9f3df26aaab0e513d40956d3f13c1228266cacd7772169ddc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1d3e139ca3963201994ee7f45d51dce6015166462cffa025daf95508547e503
MD5 b908fe8654a02d7e3edce1fb1d6e22b8
BLAKE2b-256 2b271d302b52d91bb697e7eff8899264eae15f1ab443c1227af34e54c2611d05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02255a04e26520b19081f7d378881b39050f5893e2fb4d65da81b849f58f4f76
MD5 b53adff3ab6156f10d612c717f2d2714
BLAKE2b-256 7d2a1da9513dc3577c7854985b6dc601d0b243fa9f5be5636d60e68b400146cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c298868017614d6b7e0e31293775ebe6622e87009d95e1ecd0abdc1fa5228a2
MD5 779d689b5ef9632cb723d3b56c4d4d1a
BLAKE2b-256 977279a57726548e643d5226ce64dd630f52bb0bc80a1170f3cf25899761471c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c84d901fad5fe3b58a329c0b4a5c9d93a2d5430d150ad41f0e1165fc75ff439
MD5 78aae1889c47ed406b3edabae2a46db2
BLAKE2b-256 4311b25fea9711c3539fbfebde09a1ac914a12b69983b6c3c5120b60f4e58002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd5b3aa43d5222f1deef9894356a42f2443486501405977cda3aad0f23e20f9d
MD5 e94b803358f88337d5608a3347f222a2
BLAKE2b-256 5b6be149a16474c808587b9c9608b9758963192531ed854125aca467ded201d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e99e9ae745ba283f0230ac50af3f91657dd0b763778f88e4f0cbbc53b3e45d6e
MD5 9c9d2ca06518092da2d67ea5d307899a
BLAKE2b-256 d25c2d98960e0274c6b7eac8efbe35fe7b638a66dbe2e25d2456a4ef2f6f5cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1020fcd3c8f1b93091730e3e16810d3741cbf69c6bacaa9d6a95fb15032848f
MD5 3595fcc8d934c50b2e7f563cb0de5032
BLAKE2b-256 c4ef272a1dff862df1a9332c0f7269d73493bc9d3bfa573b22469b5613f26f0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_bidi-0.6.6-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe31aa2d2be1c79300bda36b1a3daf8c2dda963539e0c6eedeb9882fc8c15491
MD5 b131bf02e786e5f3ccd764759d22e854
BLAKE2b-256 bece6b888bb1a889f90f066c8bfeab2ceee70b87c8ff484116fd45111542970c

See more details on using hashes here.

Supported by

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