Skip to main content

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

Release files for python-bidi 0.6.6

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for python-bidi 0.6.6
File Size Uploaded
python_bidi-0.6.6.tar.gz 45.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for python-bidi 0.6.6
File
python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-64 Details
python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ IBM System/390x Details
python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ PowerPC 64-le Details
python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARMv7l Details
python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.5+ x86-32 Details
python_bidi-0.6.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64 Details
python_bidi-0.6.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 10.12+ x86-64 Details
python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-64 Details
python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ IBM System/390x Details
python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ PowerPC 64-le Details
python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARMv7l Details
python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-32 Details
python_bidi-0.6.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64 Details
python_bidi-0.6.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.12+ x86-64 Details
python_bidi-0.6.6-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
python_bidi-0.6.6-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
python_bidi-0.6.6-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
python_bidi-0.6.6-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.6-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.6-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
python_bidi-0.6.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
python_bidi-0.6.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
python_bidi-0.6.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
python_bidi-0.6.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
python_bidi-0.6.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32 Details
python_bidi-0.6.6-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
python_bidi-0.6.6-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
python_bidi-0.6.6-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
python_bidi-0.6.6-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
python_bidi-0.6.6-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
python_bidi-0.6.6-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.6-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.6-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
python_bidi-0.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
python_bidi-0.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
python_bidi-0.6.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
python_bidi-0.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
python_bidi-0.6.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32 Details
python_bidi-0.6.6-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
python_bidi-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
python_bidi-0.6.6-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
python_bidi-0.6.6-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
python_bidi-0.6.6-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
python_bidi-0.6.6-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.6-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.6-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
python_bidi-0.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
python_bidi-0.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
python_bidi-0.6.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
python_bidi-0.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
python_bidi-0.6.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32 Details
python_bidi-0.6.6-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
python_bidi-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
python_bidi-0.6.6-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
python_bidi-0.6.6-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
python_bidi-0.6.6-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
python_bidi-0.6.6-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.6-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.6-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
python_bidi-0.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
python_bidi-0.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
python_bidi-0.6.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
python_bidi-0.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
python_bidi-0.6.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32 Details
python_bidi-0.6.6-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
python_bidi-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
python_bidi-0.6.6-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
python_bidi-0.6.6-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
python_bidi-0.6.6-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
python_bidi-0.6.6-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.6-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.6-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
python_bidi-0.6.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
python_bidi-0.6.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
python_bidi-0.6.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
python_bidi-0.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
python_bidi-0.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
python_bidi-0.6.6-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
python_bidi-0.6.6-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details
python_bidi-0.6.6-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
python_bidi-0.6.6-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
python_bidi-0.6.6-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
python_bidi-0.6.6-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.6-cp38-cp38-musllinux_1_2_armv7l.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.6-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
python_bidi-0.6.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
python_bidi-0.6.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
python_bidi-0.6.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
python_bidi-0.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
python_bidi-0.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
python_bidi-0.6.6-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
python_bidi-0.6.6-cp38-cp38-macosx_10_12_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.12+ x86-64 Details

Total release size: 36.9 MB

Release files / python_bidi-0.6.6.tar.gz

Download URL python_bidi-0.6.6.tar.gz
Size 45.1 kB
Tags Source
SHA-256 checksum
How to use checksums
07db4c7da502593bd6e39c07b3a38733704070de0cbf92a7b7277b7be8867dd9
BLAKE2b-256 checksum
How to use checksums
c4de1822200711beaadb2f334fa25f59ad9c2627de423c103dde7e81aedbc8e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Size 461.3 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
6dfa55611022f95058bb7deb2ac20755ae8abbe1104f87515f561e4a56944ba1
BLAKE2b-256 checksum
How to use checksums
114046a72df7d1b703023749b73b68dec5d99d36d2740582337d572b9d1f92c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Size 486.4 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
a6ac2a3ec5ccc3736e29bb201f27bd33707bfde774d3d222826aa181552590b2
BLAKE2b-256 checksum
How to use checksums
2bc5b7829e222f721339f0578f102d467101633970d1443c65b565654944c114
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Size 558.5 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
91a8cb8feac5d0042e2897042fe7bbbeab5dea1ab785f4b7d0c0bbbf6bc7aefd
BLAKE2b-256 checksum
How to use checksums
3bdbef34eb7bb88d6ab5c7085a89b975e19af821713395be0d3a7423df3db60b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Size 466.8 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
39eed023add8c53684f1de96cb72b4309cc4d412745f59b5d0dab48e6b88317b
BLAKE2b-256 checksum
How to use checksums
418ff58e2b990fcb5c8f75aab646e4a16925f119110bbb3907bb70de2c1afd07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 294.4 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
804c74d070f4e85c6976e55cdbb3f4ead5ec5d7ea0cfad8f18f5464be5174ec9
BLAKE2b-256 checksum
How to use checksums
a001d404c3efc450eff2322a47b5f37685bfff812c42e99228d994ba05767f7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 333.9 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
00081439e969c9d9d2ede8eccef4e91397f601931c4f02864edccb760c8f1db5
BLAKE2b-256 checksum
How to use checksums
06cc2f5347a5bf7f218d4db8a35901b9dce3efe2eb146e5173f768396724dfd6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 352.5 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
e2f227ee564e0241e57269043bdfa13025d08d0919b349f5c686e8cfc0540dbf
BLAKE2b-256 checksum
How to use checksums
307ef537fac0dec5d2e994f3fe17053183f8afba36f8e5793fdcee7d0e9996bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 299.8 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
4142467ec0caa063aca894ca8f1e8a4d9ca6834093c06b0ad5e7aa98dc801079
BLAKE2b-256 checksum
How to use checksums
420b1185d08bb3744619afb72c2ec83bded6bcfb6e4dcfbeda1cb523c3a48534
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 292.7 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
c0e715b500b09cefccaddb7087978dcd755443b9620aa1cc7b441824253cf2b8
BLAKE2b-256 checksum
How to use checksums
5c1ccaf6cb04639c1e026bf23f4370fc93cef7e70c4864c4fd38ba5f3000668f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 309.6 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
0781c3c63b4bc3b37273de2076cb9b875436ae19be0ff04752914d02a4375790
BLAKE2b-256 checksum
How to use checksums
6e91ff576c53d2f13bf8a84ef46bdad8b7cc0843db303a02818ffdb0861ecd8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Size 265.5 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d941a6a8a7159982d904982cfe0feb0a794913c5592d8137ccae0d518b2575e4
BLAKE2b-256 checksum
How to use checksums
fe4e5128c25b5a056007eb7597951cc747dfe9712ccfcfdf7e2247fa2715f338
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl

Download URL python_bidi-0.6.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Size 271.2 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
fd9bf9736269ad5cb0d215308fd44e1e02fe591cb9fbb7927d83492358c7ed5f
BLAKE2b-256 checksum
How to use checksums
11515f20d5e4db6230ba5a45ad5f900b97a0e692fbf78afce01ee9ffcd7282c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Size 461.5 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
b65b4105998436405a3e6bca60cbf9714f6a08099b16c0cf4752a4a3a70eb45b
BLAKE2b-256 checksum
How to use checksums
74cfa0a6d4483b15939540a07af89e40650fc792c11c48de912a3375144f1121
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Size 486.4 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
bbbcb28474b71e3ad05d8bd483348efe41fb7dfef6bd3046f3072baa0954d746
BLAKE2b-256 checksum
How to use checksums
8fcc641ee9d3c8bcc58891105c9746100cabc2450cb1d6a4835f4464969014fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Size 558.4 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
c07e4d6d8c8f574aa135436207a37bba522443a8490b0ba720b54d343dfde1a7
BLAKE2b-256 checksum
How to use checksums
5056fd599b934410b989542a076ebd254d080daab3056917f3542b705335904b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Size 466.7 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
6255ad385bb90aa39f8340967eef35657e52f8ed011773d37113cafa0ed5eefd
BLAKE2b-256 checksum
How to use checksums
abe1c2041fbc433f9db8788eecbe30dcfc32b487f16aa7a9aa9956ae8265900f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 294.5 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
0eb12b724cc99853e0e0425b54c1c2219492486afaca106c827204b4189504db
BLAKE2b-256 checksum
How to use checksums
2ff7c7dfb7150af1ae50655e38f09f93fab94b61631aa68bc498210abd4d69a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 333.9 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
87a5489189b0a852da0129df77f0cc8e874b7b1ab1f968a209d340477906f076
BLAKE2b-256 checksum
How to use checksums
7f5804d878c71c9d2cddb1993c2e72d98a7f4eb389559f2b859077a6513fc150
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 353.3 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
6cc626d2f77cac470b3167a28d4975744f3d99f5eaf8f5c2048ac9c0b9cba9dc
BLAKE2b-256 checksum
How to use checksums
97e9faf9f5b75d82d05651ee5a2e186b27399fc7e9292d44f56c1f15683eb1f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 299.9 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
471c1a5fcdbb3de47377d74a7f1017216d9464e5428ca4e66f863e49dca73393
BLAKE2b-256 checksum
How to use checksums
7a1a4f5e75997606eebad3aea14d805b6267d2035394adf24ae59fe4532c68e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 293.0 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
7d395e537a34d59e776fcdf50a50786d1a82084849d55cf644f4969ef8156643
BLAKE2b-256 checksum
How to use checksums
84d94346c804619f81ffe4af30ce086807eac2f5250ceb981cca8f44338e7d39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 309.4 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
82e0befbc1078a964c6b6f2f7a616ae8015b52fdcd2f03979abf0fb1f2f18b48
BLAKE2b-256 checksum
How to use checksums
63f46881eee008329903e222bf9e961ca26d14a3f3fabfa694ae2149ec1809b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Size 265.5 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3e17441d31a8665a44f5f42dba7646bbcd3c51ae6657dd019f6a7bb12618b12f
BLAKE2b-256 checksum
How to use checksums
56c0f1f73f7f4b8df6a23d7a214b51e8b5d75c674eaac14ad554c1cdf0b44fe1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl

Download URL python_bidi-0.6.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Size 271.3 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
a138a7607b459414431a5cdcf5834624d6f87911a8863b51dd363a1e2e5744ab
BLAKE2b-256 checksum
How to use checksums
34f7a762d2d75ae62bdc30de7deda9f97d752ebf20d6d092524921c225153722
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-win_amd64.whl

Download URL python_bidi-0.6.6-cp313-cp313-win_amd64.whl
Size 160.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
63f7a9eaec31078e7611ab958b6e18e796c05b63ca50c1f7298311dc1e15ac3e
BLAKE2b-256 checksum
How to use checksums
74793323f08c98b9a5b726303b68babdd26cf4fe710709b7c61c96e6bb4f3d10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-win32.whl

Download URL python_bidi-0.6.6-cp313-cp313-win32.whl
Size 155.0 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
485f2ee109e7aa73efc165b90a6d90da52546801413540c08b7133fe729d5e0a
BLAKE2b-256 checksum
How to use checksums
e9eaa775bec616ec01d9a0df7d5a6e1b3729285dd5e7f1fdb0dfce2e0604c6a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL python_bidi-0.6.6-cp313-cp313-musllinux_1_2_x86_64.whl
Size 458.3 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
686642a52acdeffb1d9a593a284d07b175c63877c596fa3ccceeb2649ced1dd8
BLAKE2b-256 checksum
How to use checksums
487ef813de1a92e10c302649134ea3a8c6429f9c2e5dd161e82e88f08b4c7565
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-musllinux_1_2_i686.whl

Download URL python_bidi-0.6.6-cp313-cp313-musllinux_1_2_i686.whl
Size 483.9 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
207b0a7082ec38045910d37700a0dd73c10d4ffccb22a4fd0391d7e9ce241672
BLAKE2b-256 checksum
How to use checksums
460588aa85522472afda215a6b436eaa0aac6bbe9e29a64db0f99f61d1aa6527
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL python_bidi-0.6.6-cp313-cp313-musllinux_1_2_armv7l.whl
Size 556.0 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
5506ba56380140b3cb3504029de014d21eb8874c5e081d88495f8775f6ed90bc
BLAKE2b-256 checksum
How to use checksums
4fa836bb9553e00d33acee2d2d447b60bccb0aad5c1d589cd364ddd95d9b876b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL python_bidi-0.6.6-cp313-cp313-musllinux_1_2_aarch64.whl
Size 463.9 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d1dcd7a82ae00b86821fce627e310791f56da90924f15877cfda844e340679de
BLAKE2b-256 checksum
How to use checksums
9e0103341516d895ee937036d38ab4f9987857b1066f7c267b99963ee056eb9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_bidi-0.6.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 291.7 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
183fee39bd2de787f632376bd5ba0d5f1daf6a09d3ebfaa211df25d62223e531
BLAKE2b-256 checksum
How to use checksums
ca40071dc08645daa09cb8c008db888141998a895d2d1ed03ba780971b595297
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL python_bidi-0.6.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 329.2 kB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
125a815f2b20313a2f6d331aa84abdd07de7d270985b056e6729390a4cda90df
BLAKE2b-256 checksum
How to use checksums
9e66cc9795903be4ce781b89fa4fe0e493369d58cd0fc0dda9287ab227d410d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL python_bidi-0.6.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 351.2 kB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ada1aecd32773c61b16f7c9f74d9ec1b57ea433e2083e08ca387c5cd4b0ceaed
BLAKE2b-256 checksum
How to use checksums
3939dc9ce9b15888b6391206d77fc36fd23447fb5313aee1fa1031432b2a4072
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL python_bidi-0.6.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 297.6 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
43a0409570c618d93706dc875b1d33b4adfe67144f6f2ebeb32d85d8bbdb85ed
BLAKE2b-256 checksum
How to use checksums
426e4b57a3dba455f42fa82a9b5caf3d35535bd6eb644a37a031ac1d5e8b6a3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL python_bidi-0.6.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 290.2 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5c9f798dd49b24bb1a9d90f065ef25c7bffa94c04c554f1fc02d0aea0a9b10b0
BLAKE2b-256 checksum
How to use checksums
0a874ecaecf7cc17443129b0f3a967b6f455c0d773b58d68b93c5949a91a0b8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl

Download URL python_bidi-0.6.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Size 306.6 kB
Tags CPython 3.13 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c4e08753d32d633f5ecb5eb02624272eeffaa6d5c6f4f9ddf012637bcaabfc0a
BLAKE2b-256 checksum
How to use checksums
175a5f60915a9f73f48df27bf262a210fa66ea8ffe5fd0072c67288e55e3304e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-macosx_11_0_arm64.whl

Download URL python_bidi-0.6.6-cp313-cp313-macosx_11_0_arm64.whl
Size 261.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
33bd0ba5eedf18315a1475ac0f215b5134e48011b7320aedc2fb97df31d4e5bf
BLAKE2b-256 checksum
How to use checksums
0c19d4d449dcdc5eb72b6ffb97b34db710ea307682cae065fbe83a0e42fee00a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp313-cp313-macosx_10_12_x86_64.whl

Download URL python_bidi-0.6.6-cp313-cp313-macosx_10_12_x86_64.whl
Size 266.7 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
61cf12f6b7d0b9bb37838a5f045e6acbd91e838b57f0369c55319bb3969ffa4d
BLAKE2b-256 checksum
How to use checksums
a5b1b24cb64b441dadd911b39d8b86a91606481f84be1b3f01ffca3f9847a4f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-win_amd64.whl

Download URL python_bidi-0.6.6-cp312-cp312-win_amd64.whl
Size 160.3 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f60afe457a37bd908fdc7b520c07620b1a7cc006e08b6e3e70474025b4f5e5c7
BLAKE2b-256 checksum
How to use checksums
30dae1537900bc8a838b0637124cf8f7ef36ce87b5cdc41fb4c26752a4b9c25a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-win32.whl

Download URL python_bidi-0.6.6-cp312-cp312-win32.whl
Size 155.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
57c0ca449a116c4f804422111b3345281c4e69c733c4556fa216644ec9907078
BLAKE2b-256 checksum
How to use checksums
9f1091d112d152b273e54ca7b7d476faaf27e9a350ef85b4fcc281bdd577d13b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL python_bidi-0.6.6-cp312-cp312-musllinux_1_2_x86_64.whl
Size 458.8 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
07c9f000671b187319bacebb9e98d8b75005ccd16aa41b9d4411e66813c467bb
BLAKE2b-256 checksum
How to use checksums
9e054a4074530e54a3e384535d185c77fe9bf0321b207bfcb3a9c1676ee9976f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-musllinux_1_2_i686.whl

Download URL python_bidi-0.6.6-cp312-cp312-musllinux_1_2_i686.whl
Size 484.4 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e7e36601edda15e67527560b1c00108b0d27831260b6b251cf7c6dd110645c03
BLAKE2b-256 checksum
How to use checksums
0f9a80f0551adcbc9dd02304a4e4ae46113bb1f6f5172831ad86b860814ff498
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL python_bidi-0.6.6-cp312-cp312-musllinux_1_2_armv7l.whl
Size 556.4 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
c4c0255940e6ff98fb05f9d5de3ffcaab7b60d821d4ca072b50c4f871b036562
BLAKE2b-256 checksum
How to use checksums
d583d15a0c944b819b8f101418b973772c42fb818c325c82236978db71b1ed7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL python_bidi-0.6.6-cp312-cp312-musllinux_1_2_aarch64.whl
Size 464.5 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8b5f648ee8e9f4ac0400f71e671934b39837d7031496e0edde867a303344d758
BLAKE2b-256 checksum
How to use checksums
5eda6cbe04f605100978755fc5f4d8a8209789b167568e1e08e753d1a88edcc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_bidi-0.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 292.1 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b31f5562839e7ecea881ba337f9d39716e2e0e6b3ba395e824620ee5060050ff
BLAKE2b-256 checksum
How to use checksums
077c094bbcb97089ac79f112afa762051129c55d52a7f58923203dfc62f75feb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL python_bidi-0.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 329.5 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
25fa21b46dc80ac7099d2dee424b634eb1f76b2308d518e505a626c55cdbf7b1
BLAKE2b-256 checksum
How to use checksums
5eab05a1864d5317e69e022930457f198c2d0344fd281117499ad3fedec5b77c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL python_bidi-0.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 351.5 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
4bb186c8da4bdc953893504bba93f41d5b412fd767ba5661ff606f22950ec609
BLAKE2b-256 checksum
How to use checksums
e00cbd7bbd70bd330f282c534f03235a9b8da56262ea97a353d8fe9e367d0d7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL python_bidi-0.6.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 298.2 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
a525bcb77b8edbfdcf8b199dbed24556e6d1436af8f5fa392f6cdc93ed79b4af
BLAKE2b-256 checksum
How to use checksums
cd05cd503307cd478d18f09b301d20e38ef4107526e65e9cbb9ce489cc2ddbf3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL python_bidi-0.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 290.8 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
69c02316a4f72a168ea6f66b90d845086e2f2d2de6b08eb32c576db36582177c
BLAKE2b-256 checksum
How to use checksums
27b68212d0f83aaa361ab33f98c156a453ea5cfb9ac40fab06eef9a156ba4dfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl

Download URL python_bidi-0.6.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 307.3 kB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
fb750d3d5ac028e8afd62d000928a2110dbca012fee68b1a325a38caa03dc50b
BLAKE2b-256 checksum
How to use checksums
996b5e2e6c2d76e7669b9dd68227e8e70cf72a6566ffdf414b31b64098406030
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-macosx_11_0_arm64.whl

Download URL python_bidi-0.6.6-cp312-cp312-macosx_11_0_arm64.whl
Size 262.1 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8706addd827840c2c3b3a9963060d9b979b43801cc9be982efa9644facd3ed26
BLAKE2b-256 checksum
How to use checksums
b717b314c260366a8fb370c58b98298f903fb2a3c476267efbe792bb8694ac7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl

Download URL python_bidi-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl
Size 267.2 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
166060a31c10aa3ffadd52cf10a3c9c2b8d78d844e0f2c5801e2ed511d3ec316
BLAKE2b-256 checksum
How to use checksums
6f8445484b091e89d657b0edbfc4378d94ae39915e1f230cb13614f355ff7f22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-win_amd64.whl

Download URL python_bidi-0.6.6-cp311-cp311-win_amd64.whl
Size 160.6 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
4ff1eba0ff87e04bd35d7e164203ad6e5ce19f0bac0bdf673134c0b78d919608
BLAKE2b-256 checksum
How to use checksums
9541d4dbc72b96e2eea3aeb9292707459372c8682ef039cd19fcac7e09d513ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-win32.whl

Download URL python_bidi-0.6.6-cp311-cp311-win32.whl
Size 155.7 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
b271cd05cb40f47eb4600de79a8e47f8579d81ce35f5650b39b7860d018c3ece
BLAKE2b-256 checksum
How to use checksums
bbd277b649c8b32c2b88e2facf5a42fb51dfdcc9e13db411c8bc84831ad64893
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL python_bidi-0.6.6-cp311-cp311-musllinux_1_2_x86_64.whl
Size 459.6 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
53d7d3a550d176df99dd0bb0cc2da16b40634f11c8b9f5715777441d679c0a62
BLAKE2b-256 checksum
How to use checksums
fddb88af6f0048d8ec7281b44b5599a3d2afa18fac5dd22eb72526f28f4ea647
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-musllinux_1_2_i686.whl

Download URL python_bidi-0.6.6-cp311-cp311-musllinux_1_2_i686.whl
Size 485.5 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
965e6f2182e7b9352f2d79221f6c49502a307a9778d7d87d82dc36bb1ffecbab
BLAKE2b-256 checksum
How to use checksums
2de53154ac009a167bf0811195f12cf5e896c77a29243522b4b0697985881bc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL python_bidi-0.6.6-cp311-cp311-musllinux_1_2_armv7l.whl
Size 557.4 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
00622f54a80826a918b22a2d6d5481bb3f669147e17bac85c81136b6ffbe7c06
BLAKE2b-256 checksum
How to use checksums
82077779668967c0f17a107a916ec7891507b7bcdc9c7ee4d2c4b6a80ba1ac5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL python_bidi-0.6.6-cp311-cp311-musllinux_1_2_aarch64.whl
Size 465.6 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
994534e47260d712c3b3291a6ab55b46cdbfd78a879ef95d14b27bceebfd4049
BLAKE2b-256 checksum
How to use checksums
4ca35b369c5da7b08b36907dcce7a78c730370ad6899459282f5e703ec1964c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_bidi-0.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 292.9 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
35adfb9fed3e72b9043a5c00b6ab69e4b33d53d2d8f8b9f60d4df700f77bc2c0
BLAKE2b-256 checksum
How to use checksums
7550248decd41096b4954c3887fc7fae864b8e1e90d28d1b4ce5a28c087c3d8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL python_bidi-0.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 331.1 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
3428331e7ce0d58c15b5a57e18a43a12e28f8733086066e6fd75b0ded80e1cae
BLAKE2b-256 checksum
How to use checksums
18e7d25b3e767e204b9e236e7cb042bf709fd5a985cfede8c990da3bbca862a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL python_bidi-0.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 351.9 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a2a49b506ed21f762ebf332de6de689bc4912e24dcc3b85f120b34e5f01e541a
BLAKE2b-256 checksum
How to use checksums
0011fb5857168dcc50a2ebb2a5d8771a64b7fc66c19c9586b6f2a4d8a76db2e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL python_bidi-0.6.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 298.6 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
e8bf3e396f9ebe8f4f81e92fa4c98c50160d60c58964b89c8ff4ee0c482befaa
BLAKE2b-256 checksum
How to use checksums
954517a76e7052d4d4bc1549ac2061f1fdebbaa9b7448ce81e774b7f77dc70b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL python_bidi-0.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 291.0 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
76a1cd320993ba3e91a567e97f057a03f2c6b493096b3fff8b5630f51a38e7eb
BLAKE2b-256 checksum
How to use checksums
519f2c831510ab8afb03b5ec4b15271dc547a2e8643563a7bcc712cd43b29d26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl

Download URL python_bidi-0.6.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 307.9 kB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
589c5b24a8c4b5e07a1e97654020734bf16ed01a4353911ab663a37aaf1c281d
BLAKE2b-256 checksum
How to use checksums
0bd86ae7827fbba1403882930d4da8cbab28ab6b86b61a381c991074fb5003d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-macosx_11_0_arm64.whl

Download URL python_bidi-0.6.6-cp311-cp311-macosx_11_0_arm64.whl
Size 264.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c48a755ca8ba3f2b242d6795d4a60e83ca580cc4fa270a3aaa8af05d93b7ba7f
BLAKE2b-256 checksum
How to use checksums
91d88f6bd8f4662e8340e1aabb3b9a01fb1de24e8d1ce4f38b160f5cac2524f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl

Download URL python_bidi-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl
Size 269.5 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
da4949496e563b51f53ff34aad5a9f4c3aaf06f4180cf3bcb42bec649486c8f1
BLAKE2b-256 checksum
How to use checksums
bb03b10c5c320fa5f3bc3d7736b2268179cc7f4dca4d054cdf2c932532d6b11a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-win_amd64.whl

Download URL python_bidi-0.6.6-cp310-cp310-win_amd64.whl
Size 160.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
1d627f8cfeba70fe4e0ec27b35615c938a483cbef2d9eb7e1e42400d2196019e
BLAKE2b-256 checksum
How to use checksums
23ef92757e766ae753a264a5c0d2213f19a073d0b0389210b2eef86c65bb02d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-win32.whl

Download URL python_bidi-0.6.6-cp310-cp310-win32.whl
Size 155.6 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
92eb89f9d8aa0c877cb49fc6356c7f5566e819ea29306992e26be59a5ce468d7
BLAKE2b-256 checksum
How to use checksums
e407e80d714a2a9b089a1bc621f06c29da5adf01149b21d8cb2e10a942126650
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL python_bidi-0.6.6-cp310-cp310-musllinux_1_2_x86_64.whl
Size 459.8 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3564e574db1a0b3826ed6e646dc7206602189c31194d8da412007477ce653174
BLAKE2b-256 checksum
How to use checksums
b0e85c93fd22a87913fbbfd35c1d54142601e2877f5672546b885e739c19b070
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-musllinux_1_2_i686.whl

Download URL python_bidi-0.6.6-cp310-cp310-musllinux_1_2_i686.whl
Size 485.4 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
dc8b0566cef5277f127a80e7546b52393050e5a572f08a352ca220e3f94807cf
BLAKE2b-256 checksum
How to use checksums
f963448671801beb65c1bcdb1c2b1a4cea752037ce3534ef9f491794646cc5d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL python_bidi-0.6.6-cp310-cp310-musllinux_1_2_armv7l.whl
Size 557.3 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
2150ac84f7b15f00f8cd9e29fee7edb4639b7ed2cd9e3d23e2dfd83098f719b7
BLAKE2b-256 checksum
How to use checksums
2d1a9a17f900770bb1124d7619b9587c12a36a71992a6a3b6e61d0119bf210f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL python_bidi-0.6.6-cp310-cp310-musllinux_1_2_aarch64.whl
Size 465.7 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9a9de76229ac22cb6bd40b56a8f7f0c42cbdff985dbd14b65bac955acf070594
BLAKE2b-256 checksum
How to use checksums
3be35f7c96c156e50b3318cbd6b77bc95de096f170f88e8efbd90b00a5489671
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_bidi-0.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 293.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
de020488c334c31916ee7526c1a867bf632516c1c2a0420d14d10b79f00761c7
BLAKE2b-256 checksum
How to use checksums
2bd3b577d4457f678dd2d61b6e80011e20ee4b1bf0be5233340deaacd358c878
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL python_bidi-0.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 331.6 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
41fde9b4bb45c0e1b3283599e7539c82624ef8a8d3115da76b06160d923aab09
BLAKE2b-256 checksum
How to use checksums
a37ecb6310ce12030e1c31b1bb743bda64945d1ec047051f1ed9f008f24ffc92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL python_bidi-0.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 351.8 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b144a1b8766fa6a536cc0feb6fdd29d91af7a82a0c09d89db5fc0b79d5678d7d
BLAKE2b-256 checksum
How to use checksums
f6734b584fe00869c14784fd2417f14cf9f7fcb83c68164a125aa8c11446d048
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL python_bidi-0.6.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 298.4 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
b53b8b061b67908b5b436abede8c450c8d2fa965cb713d541688f552b4cfa3d3
BLAKE2b-256 checksum
How to use checksums
62eef37710b6947e67279e08619b6c10dcffaca1da9f045137ce5e69e046f63e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL python_bidi-0.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 291.2 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6a4f4c664b2594d2d6be6a31c9254e784d6d5c1b17edfdccb5f0fac317a1cd5e
BLAKE2b-256 checksum
How to use checksums
aa98f1eada157c94cdebc3dde997ab9f3b4e3e5f43155eaf69954c899231e23b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl

Download URL python_bidi-0.6.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Size 307.8 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
27cf629a0ef983a25cfd62c6238ee1e742e35552409d5c1b43f6d22945adc4c2
BLAKE2b-256 checksum
How to use checksums
98f21dfc79bbdcac958826c77e787a03668bd52a165d132defc3c71b21783219
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-macosx_11_0_arm64.whl

Download URL python_bidi-0.6.6-cp310-cp310-macosx_11_0_arm64.whl
Size 264.0 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
493a844891e23264411b01df58ba77d5dbb0045da3787f4195f50a56bfb847d9
BLAKE2b-256 checksum
How to use checksums
f92a7371ab49b3f64f969ca01ee143614268868220a8d5cb742459103b2bf259
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl

Download URL python_bidi-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl
Size 269.4 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
09d4da6b5851d0df01d7313a11d22f308fdfb0e12461f7262e0f55c521ccc0f1
BLAKE2b-256 checksum
How to use checksums
3ee0fdb20f2e421e1d2fc4b519e1c2cd24361cbeb92c75750683790ef0301207
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-win_amd64.whl

Download URL python_bidi-0.6.6-cp39-cp39-win_amd64.whl
Size 160.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
edae3dd8e595a40d3cdd6ff8b6d9f3860cd17f674792ea05bba5bf5f1b36e5ab
BLAKE2b-256 checksum
How to use checksums
0e8937e7a629bef2813aee8e8cd9b3ddbdc44e2653062e21550c12a410961b7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-win32.whl

Download URL python_bidi-0.6.6-cp39-cp39-win32.whl
Size 155.3 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
691822fac1d6f3caf12e667dd8b41956485c78b211032747c5f97822ba208726
BLAKE2b-256 checksum
How to use checksums
a344637336105fe7e2a997973ac73963e47b20522b21816f30456daeeabb96cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL python_bidi-0.6.6-cp39-cp39-musllinux_1_2_x86_64.whl
Size 460.3 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
af828457e46b31542569b4391014e6645023f6144de1dabf9fce7e9683235c25
BLAKE2b-256 checksum
How to use checksums
5440967cc37d15d0d5f1684743cff39d8ae1e397680a73e8eaa27b88a18ab182
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-musllinux_1_2_i686.whl

Download URL python_bidi-0.6.6-cp39-cp39-musllinux_1_2_i686.whl
Size 485.4 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
4eb3f28ca5e2f7238eaf67126c7634ec35603cbfbbe9b9b340ffee4a3314455f
BLAKE2b-256 checksum
How to use checksums
7dd2dcaa0f8db4e1822f4d5c6d54718b26ce0911cff9d283f32b5b3d39b84086
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL python_bidi-0.6.6-cp39-cp39-musllinux_1_2_armv7l.whl
Size 557.1 kB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
2d139bab64962731b5288edb1b6db76060c5a5183187efa590499951cd230b02
BLAKE2b-256 checksum
How to use checksums
3f04dedc2138107746dd3f95a08a975bf7797067f7c5aed9b7ba40218716d9a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL python_bidi-0.6.6-cp39-cp39-musllinux_1_2_aarch64.whl
Size 465.7 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7906229befa0cea2fe0278a934a27f657b68ce07a2606b1244f814a38b4ab42a
BLAKE2b-256 checksum
How to use checksums
49d08d79f0d8a7c94504f96ec011cddcf42ce892bebb7a6b9263392592aad40b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_bidi-0.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 292.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
534bc7c84159b6e4b777f5fb9122902d6e19223c4242f5b94417de1afcfe2fd9
BLAKE2b-256 checksum
How to use checksums
e9ec3088a751cf30eb1bb5a10fd0117d1c12182fd074fd05f503f17ebd423a38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL python_bidi-0.6.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 331.7 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
4ecfd1d0f6d2927eb2114b55a63b298766b85fc9f0c9aaacb4e8df3e0468538a
BLAKE2b-256 checksum
How to use checksums
048a657c8e9c03d46c9685d0462b5d929d0f3bc2d1361830d2b607b336a35b22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL python_bidi-0.6.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 351.6 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e7edb0d1baf45c70384e700e10d723a13aabe116e14453cbf099eea4dd763e28
BLAKE2b-256 checksum
How to use checksums
4e4c575f0dd3d9469d326cb62db0afe3e8e7d8173531c675560d06ae9614d137
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL python_bidi-0.6.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 298.1 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
82c7f6bb3dfc4f61aecb2290f1ea24bb2450a5cbc94ee8abe5d6278b67859e0b
BLAKE2b-256 checksum
How to use checksums
62b66364a4242ec32d26dff79b14b104968143629cb5b58de88635039d456afd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL python_bidi-0.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 291.2 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
825d15e547a9a2da5501966db672d6c8a5a063c041b2741ba32cc9775694b0ff
BLAKE2b-256 checksum
How to use checksums
d2ee3776d9604496216ebbe92eb0480d724839126eb95400d5c59653453e48e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL python_bidi-0.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 307.6 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
490f8fe09ed423bfe00531f215e3b87e6000b8170408a0ead6ea5626f644b1d1
BLAKE2b-256 checksum
How to use checksums
584debb967047a4487dd6311d74b07530fb3e2d4919bef8dbaa8dd125b8f1441
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-macosx_11_0_arm64.whl

Download URL python_bidi-0.6.6-cp39-cp39-macosx_11_0_arm64.whl
Size 264.0 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b8a83f28c104ef3b86ad60219d885b31728eb40c644f414f505068a6ecba3575
BLAKE2b-256 checksum
How to use checksums
f3043eef6432d029d3d624f3d1b0ef91dc44f2e9089179645117837490d4fcec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp39-cp39-macosx_10_12_x86_64.whl

Download URL python_bidi-0.6.6-cp39-cp39-macosx_10_12_x86_64.whl
Size 269.2 kB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
5351efb4e86281eb26c420066fade935cd670c0c0960edc323b80d0b94a0bc19
BLAKE2b-256 checksum
How to use checksums
5e814619e45ea0ed20f10a8b4bc96b1100abd4066936f612eb7158ccf746ff05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-win_amd64.whl

Download URL python_bidi-0.6.6-cp38-cp38-win_amd64.whl
Size 160.4 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
53122c3492fe3df871eb682c17eb848e24aa702946622ab78141c7027775519f
BLAKE2b-256 checksum
How to use checksums
ab32eae714e76ce80d1b1a8cfae4179cc27106a2976c880b20a84bb6e6e20d41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-win32.whl

Download URL python_bidi-0.6.6-cp38-cp38-win32.whl
Size 155.1 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
e4a6251e212f828bb10ea69e0aa6b92b54f00bf56526b490fe890ca5f4333ec1
BLAKE2b-256 checksum
How to use checksums
6d93ec72c496d79cbbc089b5c745373ba1513b81b9f37e31e2ed5dc2f001580a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL python_bidi-0.6.6-cp38-cp38-musllinux_1_2_x86_64.whl
Size 460.1 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b9498ead7f09eee272ff9c45900a8dcdc50a9558e126420a71d15774cc98bb44
BLAKE2b-256 checksum
How to use checksums
36f90c9f5eb9cbb6055dd7b42ea737c96c1a53ecb06ebc15f0ef2b5b89711912
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-musllinux_1_2_i686.whl

Download URL python_bidi-0.6.6-cp38-cp38-musllinux_1_2_i686.whl
Size 484.8 kB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
fefea733a1acaaf0c0daba8ccd5e161b9419efb62d8f6f4c679c51ef754ee750
BLAKE2b-256 checksum
How to use checksums
c8a05f19cbf099a706ddf45bb8086afb146d7067a825008b112e7d46a9eb562a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-musllinux_1_2_armv7l.whl

Download URL python_bidi-0.6.6-cp38-cp38-musllinux_1_2_armv7l.whl
Size 556.9 kB
Tags CPython 3.8 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
646e83862dadfee00b75c93a930015e9f1cb924b26c34319a75aef65fcb3ddfa
BLAKE2b-256 checksum
How to use checksums
90800d31ea3417ada6d67e59c17c8c0888b65dd0530b4df22e9dd0349e60a630
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL python_bidi-0.6.6-cp38-cp38-musllinux_1_2_aarch64.whl
Size 465.2 kB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
91c12d58cec15385817f8b2c7c56de8e37523f05926f2de0e59199d3e50e1516
BLAKE2b-256 checksum
How to use checksums
21dd119d27113d9f3df26aaab0e513d40956d3f13c1228266cacd7772169ddc8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_bidi-0.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 292.8 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f1d3e139ca3963201994ee7f45d51dce6015166462cffa025daf95508547e503
BLAKE2b-256 checksum
How to use checksums
2b271d302b52d91bb697e7eff8899264eae15f1ab443c1227af34e54c2611d05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL python_bidi-0.6.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 331.6 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
02255a04e26520b19081f7d378881b39050f5893e2fb4d65da81b849f58f4f76
BLAKE2b-256 checksum
How to use checksums
7d2a1da9513dc3577c7854985b6dc601d0b243fa9f5be5636d60e68b400146cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL python_bidi-0.6.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 350.9 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0c298868017614d6b7e0e31293775ebe6622e87009d95e1ecd0abdc1fa5228a2
BLAKE2b-256 checksum
How to use checksums
977279a57726548e643d5226ce64dd630f52bb0bc80a1170f3cf25899761471c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL python_bidi-0.6.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 298.1 kB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
6c84d901fad5fe3b58a329c0b4a5c9d93a2d5430d150ad41f0e1165fc75ff439
BLAKE2b-256 checksum
How to use checksums
4311b25fea9711c3539fbfebde09a1ac914a12b69983b6c3c5120b60f4e58002
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL python_bidi-0.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 291.1 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bd5b3aa43d5222f1deef9894356a42f2443486501405977cda3aad0f23e20f9d
BLAKE2b-256 checksum
How to use checksums
5b6be149a16474c808587b9c9608b9758963192531ed854125aca467ded201d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL python_bidi-0.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 307.5 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e99e9ae745ba283f0230ac50af3f91657dd0b763778f88e4f0cbbc53b3e45d6e
BLAKE2b-256 checksum
How to use checksums
d25c2d98960e0274c6b7eac8efbe35fe7b638a66dbe2e25d2456a4ef2f6f5cbd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-macosx_11_0_arm64.whl

Download URL python_bidi-0.6.6-cp38-cp38-macosx_11_0_arm64.whl
Size 263.7 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f1020fcd3c8f1b93091730e3e16810d3741cbf69c6bacaa9d6a95fb15032848f
BLAKE2b-256 checksum
How to use checksums
c4ef272a1dff862df1a9332c0f7269d73493bc9d3bfa573b22469b5613f26f0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / python_bidi-0.6.6-cp38-cp38-macosx_10_12_x86_64.whl

Download URL python_bidi-0.6.6-cp38-cp38-macosx_10_12_x86_64.whl
Size 268.9 kB
Tags CPython 3.8 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
fe31aa2d2be1c79300bda36b1a3daf8c2dda963539e0c6eedeb9882fc8c15491
BLAKE2b-256 checksum
How to use checksums
bece6b888bb1a889f90f066c8bfeab2ceee70b87c8ff484116fd45111542970c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release history Release notifications | RSS feed

This release

0.6.6 This release

109 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.4

1 release file

0.3.3

2 release files

0.3.2

1 release file

0.3.1

1 release file

0.3

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page