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

From PyPI:

pip install python-bidi

Or with uv:

uv pip install python-bidi

Development / running tests

You need Rust (for maturin), uv, and a nox session backend of uv (nox reads this from noxfile.py).

From a clone, create the environment and run the test suite:

uv sync --extra dev
uv run pytest

Or use nox (after uv sync --extra dev, or install nox with uv tool install nox / pipx install nox):

nox

Release files for python-bidi 0.6.11

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.11
File Size Uploaded
python_bidi-0.6.11.tar.gz 57.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for python-bidi 0.6.11
File
python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ IBM System/390x Details
python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ PowerPC 64-le Details
python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARMv7l Details
python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.5+ x86-32 Details
python_bidi-0.6.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64 Details
python_bidi-0.6.11-pp311-pypy311_pp73-macosx_10_12_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 10.12+ x86-64 Details
python_bidi-0.6.11-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
python_bidi-0.6.11-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x Details
python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le Details
python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Details
python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
python_bidi-0.6.11-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32 Details
python_bidi-0.6.11-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
python_bidi-0.6.11-cp314-cp314t-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64 Details
python_bidi-0.6.11-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
python_bidi-0.6.11-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
python_bidi-0.6.11-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
python_bidi-0.6.11-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.11-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.11-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
python_bidi-0.6.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ IBM System/390x Details
python_bidi-0.6.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ PowerPC 64-le Details
python_bidi-0.6.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
python_bidi-0.6.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
python_bidi-0.6.11-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.5+ x86-32 Details
python_bidi-0.6.11-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
python_bidi-0.6.11-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
python_bidi-0.6.11-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
python_bidi-0.6.11-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
python_bidi-0.6.11-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.11-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.11-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.11-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.11-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.11-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.11-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.11-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.11-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.11-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.11-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
python_bidi-0.6.11-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
python_bidi-0.6.11-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
python_bidi-0.6.11-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
python_bidi-0.6.11-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.11-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.11-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.11-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.11-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.11-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.11-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.11-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.11-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.11-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.11-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
python_bidi-0.6.11-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
python_bidi-0.6.11-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
python_bidi-0.6.11-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
python_bidi-0.6.11-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.11-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.11-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.11-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.11-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.11-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.11-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.11-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.11-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.11-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.11-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
python_bidi-0.6.11-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
python_bidi-0.6.11-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
python_bidi-0.6.11-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
python_bidi-0.6.11-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.11-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.11-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.11-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.11-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.11-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.11-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.11-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.11-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.11-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.11-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
python_bidi-0.6.11-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
python_bidi-0.6.11-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
python_bidi-0.6.11-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
python_bidi-0.6.11-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.11-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.11-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.11-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.11-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.11-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.11-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.11-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.11-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.11-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.11-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
python_bidi-0.6.11-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details
python_bidi-0.6.11-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
python_bidi-0.6.11-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
python_bidi-0.6.11-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.11-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
python_bidi-0.6.11-cp38-cp38-musllinux_1_2_armv7l.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARMv7l Details
python_bidi-0.6.11-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
python_bidi-0.6.11-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.11-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.11-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.11-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.11-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.11-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.11-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
python_bidi-0.6.11-cp38-cp38-macosx_10_12_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.12+ x86-64 Details

Total release size: 43.7 MB

Release files / python_bidi-0.6.11.tar.gz

Download URL python_bidi-0.6.11.tar.gz
Size 57.6 kB
Tags Source
SHA-256 checksum
How to use checksums
034090c597af250d699299d7e7f1e83eb016f9e47b3b707bd89ab2bdec77bce0
BLAKE2b-256 checksum
How to use checksums
cee7f168f2c3151aa05b9f9c9b2f7767bc8e06a133ea822c231ab497d4f36833
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 505.2 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
cf4e88a6fec81b7155a487cbbea7753a3d9a76dc4d391b4f8958b37227ef2c12
BLAKE2b-256 checksum
How to use checksums
c7f0f6b9d17e3426e7b54c18d05d917982647a976233ed9348a2ef40f1a17f85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Size 538.8 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
7738cfc7ee9fcdff3fef76b40007982ce7704010a51df307c4a51d378f5ff1ba
BLAKE2b-256 checksum
How to use checksums
87b0f5b755e1e4807bb403ccad09b1ca4faca52e260f384595e9362a68e378a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Size 577.7 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
bde89739a979d9eb3ac48c4882c8a42dd528a7708b0faa99b90b551588bd5f8d
BLAKE2b-256 checksum
How to use checksums
be93b3aa2631c4801ddd5c22f93e430ed1d570bcb634c4a217e864195cbe7574
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 473.3 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
d73a821873c52635321196cfb8d3a231d7917ca284cf2bcd9422f6deb19db7ca
BLAKE2b-256 checksum
How to use checksums
8604ef0ba9e878bb5169e32bbd96e3e39ab60e947ae1757b7dd645eb4fc2e7a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 300.5 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
4ac819cac1abb15486c48af3399a5c726e89f0977a3aff205ac162533186e756
BLAKE2b-256 checksum
How to use checksums
2741a7903ff2829d16eae2b11dff1cffeb9739373b8fe12c27ab04dda7c5c45d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 322.5 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
83c780f7e4c3dd3f020db75dc425567981e65c6d5571b3c0372203d0df92c834
BLAKE2b-256 checksum
How to use checksums
45c01fb868cf41aab7e22cf01e8a4717c8447a43eadda8ccf367f3660c9005d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 419.6 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
80cfe97e2d65981be877ae5bd2338c6919a7cc1171fc308c8b8c7c306ba6ffd8
BLAKE2b-256 checksum
How to use checksums
8ae225192b48e4bedf7491daa7aa50e196d06b46ffa495b039d492845173bffb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 302.1 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
69d1f4ee17644e8aeac93a7238ee2f28d79b0180815441eb511b77e6585aa971
BLAKE2b-256 checksum
How to use checksums
3ddddcb312034d421f99b00d2d2b37b1a4b6ce919a3f0c70ed3aa5570b4d1bef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 296.5 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
c6b3c853f99172ef22e5a16c8114cf243e351c8e70f72a894164088c2c99d9cb
BLAKE2b-256 checksum
How to use checksums
2b33a076031a95627bef4e051d94ac90ff44dac687e988da4417a387e226555d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 318.4 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
63d9dcc714d549a5118ebc93b7a7c903a0c1feec8e57f5fcacf98d984b76325b
BLAKE2b-256 checksum
How to use checksums
29eb16f4fb6acaf5d381da8faf26a306a255e54417450674d4c004a0ba0545ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Size 271.9 kB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f7a8429d0d65232e314b4f494825c1205abcc3039f42bf7da80424a15b731709
BLAKE2b-256 checksum
How to use checksums
f9d5080a6acda54809d12736eaf58cd71b930eba431eab78b2920727204f8a94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-pp311-pypy311_pp73-macosx_10_12_x86_64.whl

Download URL python_bidi-0.6.11-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Size 271.4 kB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
8eb09af209cd660fa9689f6ce9e61e73c8afa4829ae61801deea7f6e32263800
BLAKE2b-256 checksum
How to use checksums
2927b4878ebed0c75833629aefe0b9cbff588df86efe6068d4c100ee8d0df27b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-win_amd64.whl

Download URL python_bidi-0.6.11-cp314-cp314t-win_amd64.whl
Size 161.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
6623683fe39b9fbf508e3069f17e8e9cab26143f9d9f89c8a8f45424c052df4f
BLAKE2b-256 checksum
How to use checksums
9ab613ea093c161da232a6eb534d420fe575ad802b0c8184860fe4f3881fbc08
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-win32.whl

Download URL python_bidi-0.6.11-cp314-cp314t-win32.whl
Size 157.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
dfbb9ba8343a60daf4ced67c11d551dafe9a3c94892c326e4c216fa2e6eca802
BLAKE2b-256 checksum
How to use checksums
a1009d16556d2e0bb4a4b2132fa37fc6235e333c6bf5bccd1375ce0a15ea1db1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 500.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c26cd9d81f820159026b1c99905ca12bf13892e3f6a9303359fef42fe6f39e50
BLAKE2b-256 checksum
How to use checksums
fe5c823d93e8ea9e05e77eb76eace84ea9879fe876890da616a41077b8c7ffd5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_i686.whl

Download URL python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_i686.whl
Size 534.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
73c38c604bfc01647c69ce38e5cf8b4206e2ede91ca3eb8e5d79b7409f17e0b3
BLAKE2b-256 checksum
How to use checksums
ae02a5f8763031912748e17e0f0e06e7056b377754c3a084432f6c7f32847acd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 572.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
e6c474618a7b6a50c10007f8a9edb50def6d98d297a07a34dc2fb82c344f2b8b
BLAKE2b-256 checksum
How to use checksums
a5f39d8954d038e876386bb36fce4f0df61c6cf5b0664e69ab4c1914420d397e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL python_bidi-0.6.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 468.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
565d819fddb2bbc58c42ca5c97d73da7567f181115011e8f04c76b9d08378dcd
BLAKE2b-256 checksum
How to use checksums
be88a4cd8dea27cab1eee8ee33be1ee2a948a7a53d37beb071811d2a0aa328d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 296.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6dc112e2239f69913273cbb0c050ca816b145b32037d4266c430159c5ddcdab2
BLAKE2b-256 checksum
How to use checksums
67a7779464d0a6a96566f77bf8b76ec3d83cefadd8210ac758f4492942192357
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 318.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
879c3fba3e7511c7d01020449d970ca7d6a593f20cfc47c014d3d229a38930b2
BLAKE2b-256 checksum
How to use checksums
ed89526f2b7be7c2e0d72dee52955538f816b7855e20d4a8e092516c13cbef78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 416.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
788c11c84b520ea973992cc95751d56b783ff5857df504c1347d99cacd2fcfe7
BLAKE2b-256 checksum
How to use checksums
b6d1cf4c90a99d54ac01aeb186335dbf5a9cb89b3afbd5adc0b77b5c6f826134
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 297.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
f400a30573774a1e90c0d50d43c35d9c004afcf53de801bbfd259f84ea80f31c
BLAKE2b-256 checksum
How to use checksums
45ae2b1159ac11e4516f566d83572481a0ca453abe132a43db4c048931676bfd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL python_bidi-0.6.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 292.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4ccf1fe9ecb3b02a1a11b103cd2557e2653d82c141b6e2dccec8177e6af5c4bb
BLAKE2b-256 checksum
How to use checksums
7cb8561bfe22ac7ad3de4017542c4c6c192d0fa83a416ab2e0a66728c898e937
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl

Download URL python_bidi-0.6.11-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Size 313.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
19bae96ff1ee76b3a7dc962598b69426538e3021460cf85a4017437548ab6947
BLAKE2b-256 checksum
How to use checksums
8ebfcba41041e3a4369be495011bd773aaedefbfef59d6c21e121e61f8ac1e2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-macosx_11_0_arm64.whl

Download URL python_bidi-0.6.11-cp314-cp314t-macosx_11_0_arm64.whl
Size 265.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d7291e13496cb74fc1b71f7f1e3628586afefa531102bb4fa7af9c2d543efc3c
BLAKE2b-256 checksum
How to use checksums
b70e2839f8671a2201c5e1776e04ac48170e9b8a6c989147fe1b656d19603c7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314t-macosx_10_12_x86_64.whl

Download URL python_bidi-0.6.11-cp314-cp314t-macosx_10_12_x86_64.whl
Size 267.7 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
43f3e81bdd36f49171b7de6cf471086df503c29555f6f7f035ebe8f8ec1da779
BLAKE2b-256 checksum
How to use checksums
4ddacabfc8c055b53d845de46a78b641996a8ca2e4b9f7c9667fc8a54e7c9030
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-win_amd64.whl

Download URL python_bidi-0.6.11-cp314-cp314-win_amd64.whl
Size 161.3 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
8fbb6d222b50324fb9d49b6ff0f8566fa97b907a68c00e6622fcf34463104f4a
BLAKE2b-256 checksum
How to use checksums
9078bf20f1ab2cafaf744df006691e0f7d292f95f7c01fbaced92f5970ab3f8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-win32.whl

Download URL python_bidi-0.6.11-cp314-cp314-win32.whl
Size 157.4 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
f237ebb570fd8bbe479b6967374d82b7f0b26f9452c276bdd5f793d83e7062bd
BLAKE2b-256 checksum
How to use checksums
ad0f4a83866615b86572d0854b9623e7c44de51a7d3e21b16880cfeb0fdc1b49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL python_bidi-0.6.11-cp314-cp314-musllinux_1_2_x86_64.whl
Size 501.3 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3bdb64ee0a74951465cd4a761e1029e73806ff43b2fe5be98643e52da5cabb66
BLAKE2b-256 checksum
How to use checksums
1cf1c50692fd2cfccb563fecac7c53af00c141bd9bed09fb9cd626e0d765c53d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-musllinux_1_2_i686.whl

Download URL python_bidi-0.6.11-cp314-cp314-musllinux_1_2_i686.whl
Size 534.2 kB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
fc3b0a6e2460f68de9ab98f71e3098bb21bb984563417ad104dec7ab08ebcadc
BLAKE2b-256 checksum
How to use checksums
0f55a88d71d784144283f4e53a9849c4788c8a5fcce56a1690e073c014fa34fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL python_bidi-0.6.11-cp314-cp314-musllinux_1_2_armv7l.whl
Size 573.8 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
cd564b8c583eba2d230d02d0467fd840045f08856b6524555cfff7f32af63c72
BLAKE2b-256 checksum
How to use checksums
c58b82979c858cba237355aee8a2a35c317ba412c4bce494e8a51ccb1c9e5321
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL python_bidi-0.6.11-cp314-cp314-musllinux_1_2_aarch64.whl
Size 469.4 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
60d9bf6c60c022657637f64897e63dc3f5b1c07cb7f0e1ead6150aff5150c5ab
BLAKE2b-256 checksum
How to use checksums
25aa56a51fed9718e751a93ea3a4b894217a04cfaef0704159b400dee5fa5b4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL python_bidi-0.6.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 296.8 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
959335cd3814cb767fb832c5c71cbc838ccd9231a812ef2cb43092a216a91d5b
BLAKE2b-256 checksum
How to use checksums
fa252d9a3b0c4982ac60b8bc94b273eb7768cca18e92c5041807058fe81f4485
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL python_bidi-0.6.11-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 319.0 kB
Tags CPython 3.14 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
2ff75d1befc335cbe85f834e81554a024f94d9b5d1dd75a5bd99af81a1cb783c
BLAKE2b-256 checksum
How to use checksums
28cf4a919e5be87a352ccb48b0ad2c01e2bca5d1f804d927e17df67904af62dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL python_bidi-0.6.11-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 418.4 kB
Tags CPython 3.14 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a4f4a0cd24c09df748bfdc207b089c00e7af19f3151063f4cd74ac658290186b
BLAKE2b-256 checksum
How to use checksums
6376624bf0155d2b4fc2aa73e1276c22b66545a8d1f7280286c7e4dc443202db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL python_bidi-0.6.11-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 298.0 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
d14f2d400c75e07d1154299463a3d4d14aa5565b05088b2d9b314ccd9fd6dc3a
BLAKE2b-256 checksum
How to use checksums
4771f359cfa65a6716f23c069d17b6e2b87a8c673f499753c7f9712979096f6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL python_bidi-0.6.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 293.2 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
30d543b5baf9fca5ef5ec95647aa07c5e38fc7fa0f18be0c61d1d6c0a1032c6c
BLAKE2b-256 checksum
How to use checksums
f6513fc218678ac34a99065e45fdcc0209d2dd5e1f7766132fc4c58989a96d7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl

Download URL python_bidi-0.6.11-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Size 313.9 kB
Tags CPython 3.14 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
20ab47a4098577fc9a82816c330c89ff597c31ba69c98bc6a1b6a5737b03de05
BLAKE2b-256 checksum
How to use checksums
61d91798bf13b0e8167fee6a1bd0c2ec374c8d49a6de34a205a1a67bb8d45fb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-macosx_11_0_arm64.whl

Download URL python_bidi-0.6.11-cp314-cp314-macosx_11_0_arm64.whl
Size 265.8 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6d9ef69c108b31f38e1f281a55fdedad7774bc1e952a45c8c14a18e891eee397
BLAKE2b-256 checksum
How to use checksums
ce539c3e47a0579e5a3f168bb18ecfa197d494577ac19a1dd4557ecff99e2870
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release files / python_bidi-0.6.11-cp314-cp314-macosx_10_12_x86_64.whl

Download URL python_bidi-0.6.11-cp314-cp314-macosx_10_12_x86_64.whl
Size 267.9 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
5f3e1743b2d43377c4da5d687a03430a27f5769e158a9f75a50b05e7e82f4d21
BLAKE2b-256 checksum
How to use checksums
1adc8d088a648845e60ee8d3d758251909320d6a51774181d2a3e72e985af0b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-win_amd64.whl
Size 160.9 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f563d20481f7d316adf605bb94d5b7182acecdbc4d431d60473e9b1d526d0210
BLAKE2b-256 checksum
How to use checksums
850a7ac8da3629ca8d93a419f5250c240fc13f7d34b7c04f279c8f9a474a2be9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-win32.whl
Size 156.8 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
79df1099a08e53edb678236d4d76d8de4e3901bafc84ce1788b71f9b96547325
BLAKE2b-256 checksum
How to use checksums
58bb94c89a185d9c5c6154a72583eff91448f48f5f776567af217326d839d8b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-musllinux_1_2_x86_64.whl
Size 499.8 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
36f23f12d9b1c56ed8d82e11f56c6cba7bc3f614ee73374bc7772bb2270e0966
BLAKE2b-256 checksum
How to use checksums
536047cea7de2ebad67e30e5154d846f4d6a49347ca0dffcb76136be57a08226
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-musllinux_1_2_i686.whl
Size 533.5 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
1ffd728f1f7866ff7399906bbc17ef5cf010b90ce56a1e94937b28a1a4cf5a7d
BLAKE2b-256 checksum
How to use checksums
4c3e49ca8310bdad3adedd6265da5c4877368ed528a0095348aa32edd8a0299e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-musllinux_1_2_armv7l.whl
Size 573.2 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
380b70d615647646dbe06f7d95dc30b8fdc9b596dbfa1cd3814feb9805c0c8f2
BLAKE2b-256 checksum
How to use checksums
f9067404eac40f2be2148cd0497251438e7690f553c5a09916d13d9803f8d32b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-musllinux_1_2_aarch64.whl
Size 468.2 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
946b7dbec4e64017680f1a66b3a8534659d889018ac83bd2abf958278e6f62b0
BLAKE2b-256 checksum
How to use checksums
dde0f252c15167d7b175e37514cf7d52cab3a244bfb0b64a5973c9ce6b33e191
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 295.7 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
74457b43db34f984252e915828b5d1a4042a771f44e853a5643506d01562eccb
BLAKE2b-256 checksum
How to use checksums
6660569132a43fff4e52abbdd640b76b761a773c1c1b07f5bf3576be5049e8da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 318.4 kB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
d52ec8ccdc2fd5c61749d876a9d1eb0ea6543c1676722e1e3fb9d7800852131c
BLAKE2b-256 checksum
How to use checksums
0d9323daba3a074f3b181fbeeef559735cd21ab55a8bad46934ed311696812b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 414.6 kB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3da9e536546f7c62c0da595c8f71a096e0b9a80e94cfd0f329b7b200ef81e7d5
BLAKE2b-256 checksum
How to use checksums
0c0c626a2fde3ba831ace3e092544617974dfb99d3a225cf7445987b1fd68b3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 297.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
721697187f4da67dafc26f63488f463fa35ff2de8668d959fda773cccdbef0eb
BLAKE2b-256 checksum
How to use checksums
787dca9f710b5bc279decae719041795a0ab2fbc02f85a5231cf2e3f4195ed1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 291.9 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
302f4ca7dabfe447e707d40e98520551181036c15750bdd1e73292ad8b3d8e75
BLAKE2b-256 checksum
How to use checksums
6c120c599f95cfd3433bb773dba3624fb0f00e74ee4d9f7c0c0455d935cf938d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Size 313.1 kB
Tags CPython 3.13 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
397f7f289eba6ce25d99dbea99f873d699bf9aa030074e7fb746d8f93c2fb6f9
BLAKE2b-256 checksum
How to use checksums
7ccda7ffa9ae8dd1903f3c17a9a2af6c531c92c3f7f7789f5c304ef77f94bd06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp313-cp313-macosx_11_0_arm64.whl
Size 264.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4d00757ef7bbbf14d8628f9bdb6b0e168d5e7b03fec20da3226624f11bffce89
BLAKE2b-256 checksum
How to use checksums
a6a04a29e0bfa45038edeeac9397c0c91aee674efbbaa962f0c32c17aaf1a2c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-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
1b41cc6bc9ad78a12da5f987da15e931c771f18ceca58f2fe8ed50f253490a97
BLAKE2b-256 checksum
How to use checksums
c41338f195e9d9a144747a2ca5ed6ec922df50534e6bacb2188a27154c9f9400
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-win_amd64.whl
Size 161.2 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
0608bddcc1c53dfa5293499de13ca9935b31aa46d1c722c404a88c703d1a4e47
BLAKE2b-256 checksum
How to use checksums
04e38912d05e04575a60a0481cc222805331b74154940528a6f419fc5bbba744
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-win32.whl
Size 157.0 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
6c92d1cad16f9ec2f2a3ae439a0bc3a8e4189ec227987bed03d5b4056d5eb9c5
BLAKE2b-256 checksum
How to use checksums
b07786bf9c4a95f363451e7c322ef76afbe56034da23a2b5532bd774751022ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-musllinux_1_2_x86_64.whl
Size 500.4 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
51915502898c45e9cb36636e974aca068fc5cdb9f06b794f49abea5b12f02016
BLAKE2b-256 checksum
How to use checksums
fb4c5e8d01ed3d2f8ca1116e1e21085a5ca97450b4035138988e5a82ea2db916
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-musllinux_1_2_i686.whl
Size 533.6 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
239a00b2adb5f897d11d7b7a491d759fb9883e71a71cfd90c4147a733b4df4d3
BLAKE2b-256 checksum
How to use checksums
6e798e707fb95cec1afed3fbffbf5eee93f2a73cad6f1445e17e32c6256cf397
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-musllinux_1_2_armv7l.whl
Size 573.6 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
9435acc52438c3c8f5142b9a17a622927618e80a32eed707343bc375cb51cebe
BLAKE2b-256 checksum
How to use checksums
176c4795fb7f3ddca33a981158437ff6bd4c532d1011b9d887f47cff45d035e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-musllinux_1_2_aarch64.whl
Size 468.4 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
539d99efe02f4981171ed57bbc085094ef780405ca14663550a56c6c3e265c34
BLAKE2b-256 checksum
How to use checksums
c5ea0c2ae4a316ea919698ede4201da1c07dc1c2f9a86bd3bce3f9b94b0ce7e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 296.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3611d13b53d4c899c4f2a7cd8eb897064e8b5546c3c5d1037dd6209c82858a27
BLAKE2b-256 checksum
How to use checksums
09fb57a496606a4faf051a3e851cc05a5bab2a1cd37b14fc738a707a5a51bba8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 318.4 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
caee7ee3662eab1411b44fef8571b87273cb5235061d7463ebd10e412ac07986
BLAKE2b-256 checksum
How to use checksums
9d8ece62bfec64769c28d537ef0481a36dd9ee42795b2975b41846f1aa82f7cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 415.3 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f99162d6c6c9522c46eb213f1bc932829c2602131676c92f081cb865b8ef6784
BLAKE2b-256 checksum
How to use checksums
77689da530ac64b961f5dcdcaad03d90b35becb43dd7d244241809da11acca34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 297.7 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
9af2b5c26a3eb960699dff040535a86dc2c0f708087b2d63bcfd6452fe9d0664
BLAKE2b-256 checksum
How to use checksums
d22be48c592fcd01409bd09eb1a181c31702f7c048d06bca004b8840d101f69a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 292.2 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
495a76c881d78ab87b57c5270679c9bc3c1de36d8c6596d5e3a5a1b5f9c57471
BLAKE2b-256 checksum
How to use checksums
cbfc87f3b820bbee3620bdd89047ee617db49700719a632d149e1c8a8c6ec59b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 313.2 kB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
6ca92a4e460f7e25e434a6d7982d94a4765ca242f527995da70abb5a32003b8a
BLAKE2b-256 checksum
How to use checksums
7ee931fbe166932d34860271ec5e0e0ecf0bc4166bddb889a260962a448d8617
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-macosx_11_0_arm64.whl
Size 265.0 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2d6970b09f5a3102c0aa192f5258c585742ab4ebd94f637a635ad3448ccba567
BLAKE2b-256 checksum
How to use checksums
0819776b39e47e0bde27000fc2e68c2dd0bad023d4c470dcd5ec9c98779a62c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp312-cp312-macosx_10_12_x86_64.whl
Size 267.3 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
83ee87feb5eafc0442e1db0014dad20d52a2a7a140b6cddc8f7bc65918f0a7b4
BLAKE2b-256 checksum
How to use checksums
bdade2ff0e5077de577211d7d4fd6a436a97d903d6c65e8deb4c958de901b0eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-win_amd64.whl
Size 163.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
555cdf9303c40bae1ab512ca427f1f0316a574bc0a48db22eec76ec0fd1213cf
BLAKE2b-256 checksum
How to use checksums
d7980458bf0adcf09f1766e069f6d1265d83b8354146e689927f0d14451bf4e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-win32.whl
Size 158.7 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
8b6b7fce8f47578be9aebf5a0b6b2d6c157b4e97af7586ecf13bfca5d128deea
BLAKE2b-256 checksum
How to use checksums
add0ec71ea3e29cc745580ac5477bbf3c9235782ab0c7bc08ac065e4c7cb12ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-musllinux_1_2_x86_64.whl
Size 503.9 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b433840a924c8788f0abbda15d22c71dc636e2078d7d3ba39369cebe4bef74b8
BLAKE2b-256 checksum
How to use checksums
a97ceeaad2247b29f736cda2632d14c5959940a4b4e8e098559cd2a4065356eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-musllinux_1_2_i686.whl
Size 537.5 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
b2c759e13ebb81edaac3041697328bb1ca8433b55281723879f6b54e74881240
BLAKE2b-256 checksum
How to use checksums
50b11c158a64d745e4916fbc39c6ad700c5b2cf3b4456f710a62f625fba0694f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-musllinux_1_2_armv7l.whl
Size 576.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
af7711cc6eeeadcb1aae877e0736a68e111c73a29562da6106c5e2fbb4dd83b2
BLAKE2b-256 checksum
How to use checksums
222947d84a333ee00db0cff74fde2aa39e01953abb360d14ffed70ad9195af26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-musllinux_1_2_aarch64.whl
Size 471.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
619ee3fe03daec8d3ce12239f0c22455676a063b2bcde361caecd788fae5b8d5
BLAKE2b-256 checksum
How to use checksums
72a9f5e4c286ae22fff569eb7aeeec7a5342e26e0ed1ac8202c48cf273932b28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 299.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
acccb6d90e694684db2d314db2e2b0d3b8949bf1cfaec6d9808a8889f548add7
BLAKE2b-256 checksum
How to use checksums
16d36bd8b189219ec128263b7277b1cdaed0cf014199c61e05793be2d9cb0456
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 321.0 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ad5d9b8e8a6c330208eba413db506de58f21dbf88a1f1d5d75ef5f9e0e714adf
BLAKE2b-256 checksum
How to use checksums
240c5fb11159f50e9a898862fa40fe98b8994eccd224189bb1c805ecfae66977
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 419.5 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0d496f9fc21b7457e12395e54088ab99776966c663b4cd4a74770c7a6418ab59
BLAKE2b-256 checksum
How to use checksums
8daff92408a2882ed7c94c3df9038df48400a5adc345e963d488bf716ad25358
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 300.8 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
969ee7db3e169fcc0b2d2d094826e03cc5798dfd6b3571a340ea883672396cb1
BLAKE2b-256 checksum
How to use checksums
2938930e63c374133760f69159da36a7aba98368ade44ae708215addc4079d91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 295.3 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e4ebc24ac38e50676f65daf7ba6c568789660cb60d6dcf2606d4310dba826721
BLAKE2b-256 checksum
How to use checksums
9162f7303a11e8286b2219088bb863974398a1a9f117444e78bbfcefaef7bc14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 316.9 kB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a1b5ee069001bf7f4fff109598a9396caa96bb35e1b906b2c6d1bab9f9b2c4bd
BLAKE2b-256 checksum
How to use checksums
369eb7da9c128f5ed867a62cb8112602bc7a6b6af783bbac18ca303a8a09b868
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-macosx_11_0_arm64.whl
Size 269.8 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a52f7ad9ef9091e81869e5d255e796755ccf542ade14dda17647cb7d7ffe1b9c
BLAKE2b-256 checksum
How to use checksums
ee6eaf3e17cb48b87176c209ac4271c8a9aaad8c33f5535739b58336222e69af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp311-cp311-macosx_10_12_x86_64.whl
Size 269.4 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
56f27c1edfd15c12c9c348378ccd79166930d720cf316b1181a0a0ade2146253
BLAKE2b-256 checksum
How to use checksums
714b7f942cdb3cc948a369bfe2530343f2d650aa17bb04b0b959834919f699a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-win_amd64.whl
Size 163.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
fccd1808bb427d6a6d34168461bef551faa93ce3dda489fcef9073bcd9b34a5e
BLAKE2b-256 checksum
How to use checksums
98f27507dc1b0e513e46de273875099bdc83a18f50f9da176d02dbc25612bc22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-win32.whl
Size 158.6 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
62a6b700f3d7a2c4d52a5dccca765711a2414e734360b00365e155698a26e461
BLAKE2b-256 checksum
How to use checksums
6d659b1bc1b056b31bdd658906c95ea40e188ae74c61b1ce89e978fe587a7bb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-musllinux_1_2_x86_64.whl
Size 504.0 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
493655043ebea6fec0edb76053bdad46f1f7352a759ca4deb733f13b3c09839c
BLAKE2b-256 checksum
How to use checksums
f6616db9deaa5f8213506be2ea79279fdf9397e4bda7be42c6f8d638ef334a86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-musllinux_1_2_i686.whl
Size 537.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
fa2848c3116d619870d114471fcd4a9f1aa43587a002111d7af1e6582f1b57e9
BLAKE2b-256 checksum
How to use checksums
5fd436e34e27181df73ef9ed7091aa710ca052df2e76bc20cdfca87f3be67c5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-musllinux_1_2_armv7l.whl
Size 576.4 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
ff675d036823bff05a2e0f8cdb13f5414274ff517d13b0d57c15527015eb6acb
BLAKE2b-256 checksum
How to use checksums
3f7828623ac1401586cc469f67c1fa7254ba1e1507c1a34a6c75b90dd5e8fc3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-musllinux_1_2_aarch64.whl
Size 471.8 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8013c1e6267a929be98d10c3a617171709c8226bd33c6180ec65e560c35b6df8
BLAKE2b-256 checksum
How to use checksums
188e295372d9d17160d74babae10014a67527917bbb7cde1905d01174d6efc1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 299.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a1115f3f02eb836b39e0c986a6b9e92c4377a1e5a680409650b02ec6b1a795e6
BLAKE2b-256 checksum
How to use checksums
ae6fc4c4c790d697464c77f87e7741c2bc438d761d7783950415d6e238f7a7c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 321.3 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
56807e0dde88d5ab96880c9d668bda7bca1df83cd30d20cbff5d6b6e6c1e9276
BLAKE2b-256 checksum
How to use checksums
4732cdb85b5aca0c5055a351aee768816ac43bbde6a0f9d2b71866ed41e93211
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

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

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

Download URL python_bidi-0.6.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 300.8 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
d5695d87969fed5b3799b8a98848cb04fe2873fded46efe9f3f2f341efd1b829
BLAKE2b-256 checksum
How to use checksums
a866812b9c6ed40021c5e1a04d5a65c347c339f89057642e48bc2b8bead0c83a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 295.6 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
57aa56b1eca5f63ebdd25fe8fad02eab7797fc45ad1efc5eed2a830e2bd2038d
BLAKE2b-256 checksum
How to use checksums
369a8dc0e4613acdcca5f14efe327f6fc0f5f0908288a3c6fc7d1d368ee96c52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Size 316.8 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
1ad5f712a32be30d28eb96e119e85818747a43cea253de6c3160b464b62a5619
BLAKE2b-256 checksum
How to use checksums
695e84ea7bb7dfdc232f0bc2a58f957320b289a01ad6010098c245d4abad092a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-macosx_11_0_arm64.whl
Size 269.9 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
41c7d1914c1f33954aa2ab0e2c309be5d1d4afc75ce524762eaab4dd825c5ab8
BLAKE2b-256 checksum
How to use checksums
77fc723f92efcbfb326b9091a6acc1385bbec4e0a3f5850fc360ee048ad9c9ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp310-cp310-macosx_10_12_x86_64.whl
Size 269.6 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
a9aa2890661b238730e680ccd6eb06f4da625b2dbc1730052dae6f2d88957192
BLAKE2b-256 checksum
How to use checksums
c754439befffac4b2d14c965928175cdf45586680824adf01fc19a6bcc7b0342
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-win_amd64.whl
Size 163.1 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
490118f4af5a3535923c76be07e937ef1cb4cf84c489b37471aa95455fe923b3
BLAKE2b-256 checksum
How to use checksums
fe71749ccfc054c2bc0935570e2782f82af81624c2d47c234e33ba805ba56c09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-win32.whl
Size 158.5 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
94f7f66bd7680d3f2085adaeea91c01b3281a79bb5041db1a51cbe8af36a9d88
BLAKE2b-256 checksum
How to use checksums
0b7fe3c1b284569cbdf2eccccfa58e5b8df4bf760bb25e48a13230253ab3e20c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-musllinux_1_2_x86_64.whl
Size 504.1 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
337ec315f8b286399e411f5bfc339fc2124db07757409b0595ceb46de087c4cd
BLAKE2b-256 checksum
How to use checksums
1964ffdbf065b58c979d993639e6cc422641c48330e58708a84c4b67d6c7eacd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-musllinux_1_2_i686.whl
Size 537.1 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
dc69d594682fbedec7d0cc81cd4d5f14fb40b6b365587238fafb91509cfea020
BLAKE2b-256 checksum
How to use checksums
697ea2d80cac9a3916b015069d4a956de61438ea0232a8ca94512dbf61df4610
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-musllinux_1_2_armv7l.whl
Size 576.7 kB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
0d339c4ebf3c2501d7569971a22e762fb45d8af7e19a0573afe260d69b35fb0d
BLAKE2b-256 checksum
How to use checksums
919844d109637cb1d088c8241358975ad77e63fa5d250fb69cf2cec0484acf6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-musllinux_1_2_aarch64.whl
Size 471.8 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f0ee4e80dd3b2a46868dcc73e00aa59f99c0e1de54a2ba783faf0fddba2ccce2
BLAKE2b-256 checksum
How to use checksums
ead26c73d5819c7a5a27837884c9de19bc42b3a75304c727778ce79371b0adc8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 299.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
55f27bd2cdeca96f46448a741d393575fbedfc70e38e09dbb030ed98dba8cf2a
BLAKE2b-256 checksum
How to use checksums
14247f423e1525190457244e4be2d8ca5d58fe8bc7e7c8eeeb26df05a90456ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 321.3 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
5f9ed312d445a691c0afec995ca4f726abe357d8da500e389f77fb874fa7ef76
BLAKE2b-256 checksum
How to use checksums
e9025d2411f422c6a27a2ae5bc7fe50e40a1a01efc419894bb3fa879e5c055e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 419.3 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
55fa5b22cc8c220a6daf077570a8e29d3b607bd978bd3dbc04b445d01a17de57
BLAKE2b-256 checksum
How to use checksums
e47b6a18296577b74cc8a6a46467ae0ae6b42b3424762b61b3b6895ba0de0b2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 300.9 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
519eb90bedb04b5cbba0bfc8062984a5ba054a019d81ada34053dc67397d61cb
BLAKE2b-256 checksum
How to use checksums
07b99ec04faf44c7270f22e61550a59a71ce45f667e674f0e05f5f238e106636
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 295.5 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
777fb44a6f1e91d6adde36e815024c210b0208f35d00762880257b8fb04dc849
BLAKE2b-256 checksum
How to use checksums
8157e16f520ee040f74ab0f75a1471b0f9f602db8c137660fc749902caa51e6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 316.5 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f8655ac559dcfce7179b150ebcc207982d4d60e67b3089b2032eed3a0a78c07a
BLAKE2b-256 checksum
How to use checksums
1205694eaba4fb821b3ae58a8d25394b75a6a1cd75964e0b058a92182c2888f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

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

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

Download URL python_bidi-0.6.11-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
c17393753ddb77377f754ba2a88cacfe3056040a8a5dff8d43f9d5e51bbe1edc
BLAKE2b-256 checksum
How to use checksums
1e4d8e605d3f28498365953036ec689fb0ba3204f397fad296edf91d25a68902
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-win_amd64.whl
Size 163.3 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
7cb34dd8d22ca1847653c0e1cbba8fd96de09c24b8c83b7805eab270c81e863a
BLAKE2b-256 checksum
How to use checksums
0a967c43d832c22b84567e4e2b1131cb2fa2d3e878949a71e986fba211bd834a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-win32.whl
Size 158.7 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
1a639a2c62f825e72eb42901fd1c69296d09c192ae003195e6cf773f92d6bb42
BLAKE2b-256 checksum
How to use checksums
f9c1637783355717328bf152b43d0bae07811e242b933697b7a0fa8e915ec46b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-musllinux_1_2_x86_64.whl
Size 504.1 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
68c3e570f2908ac39db0b269f5648e257fab5204344b9bf6dae80852ae4cbe1c
BLAKE2b-256 checksum
How to use checksums
633b81e21998567d13d07b11c167c0aabd3ca63464837e1f0f08afc252fa07bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

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

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

Download URL python_bidi-0.6.11-cp38-cp38-musllinux_1_2_armv7l.whl
Size 576.6 kB
Tags CPython 3.8 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
56dfa3c1c13cb89da39a4e8f2f9442e4291de01877511a13f830125d36e9ce5b
BLAKE2b-256 checksum
How to use checksums
205f77c10285b4b7ca17c2333624e6c3c2acf90ba7814dd8cf6166d91db3d7c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-musllinux_1_2_aarch64.whl
Size 471.9 kB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9d18916c97855d68515ca2b3581948b6d864c304cd386210ab5aff5e0fb9be2c
BLAKE2b-256 checksum
How to use checksums
db29faafedbf3a6ce462f0e062dbab55c007a1d64b693481fc130e071ea99e9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 299.9 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5dd49c11ae87ee6ced68594faa78b34a89a1a3c43647fa6157765f9726f9daf3
BLAKE2b-256 checksum
How to use checksums
179f790449e421afaf3a0f4a2e795bb501d517585cd339d37d2aca958381c856
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 321.4 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ab8af1cc29c3f400a0f781d50f8ab52a8c63adf2fcef16f14641cd97e06a80e0
BLAKE2b-256 checksum
How to use checksums
6a08cbcd91b3a67322cf87ba047f50f8aa824ee1ed1f22ddd8b26147efa54271
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 421.0 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
60150bffbe43bfc1e356c0c2900ba643a02ce09c37bc0c553c4d83e5c3de63ad
BLAKE2b-256 checksum
How to use checksums
3d6c2e7ed3cdb7626af71c794909da36c91268bd544f89c2e0802a6a4acf7b6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 300.9 kB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
a873e6f8ab28b5a56201d5cdb98f4c7d2ff88e636a58659c5ac271e287001658
BLAKE2b-256 checksum
How to use checksums
011c6a078e38ba87c5317b8c9a030dd097cbd8265e5c0cb565e746f7e12403ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 295.7 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c6aca20472d7040bc1f0aadb510cb20d40b3d6caa4c8bf82d075ba2650a41652
BLAKE2b-256 checksum
How to use checksums
b7f44bf739067dfab4eb3a0850abb72a03f4e6d42b99e19d0e0ff883ef5f97c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 316.8 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
7c4dc0d1328321aeb08054be654e1d39f171d5aae8dca931c9332860f18f57d7
BLAKE2b-256 checksum
How to use checksums
e5c9178a19ab81653f256c78d6524c03b12d530299c86c8f1fcdb8b8dd1e698a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-macosx_11_0_arm64.whl
Size 269.6 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
19d13c70b1f7bb5dc69866a11624f3b78123807b4ede18f4f99f656ed86babec
BLAKE2b-256 checksum
How to use checksums
423aef9eec7d4f1ab72b3e35bc229a90b2ff5660a8e2e83224ad7d8ede7c869f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

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

Download URL python_bidi-0.6.11-cp38-cp38-macosx_10_12_x86_64.whl
Size 269.3 kB
Tags CPython 3.8 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
2b208fc26ab2c7adfd2c4d84753a5045f664e0bec19ca462af2406132e62f92e
BLAKE2b-256 checksum
How to use checksums
1cc568359bb633a29eb5e8a1f2eb0f0b7ee17c3cd6f1b1b0692a849b1ba49e70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.14.1

Release history Release notifications | RSS feed

This release

0.6.11 This release

125 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