Skip to main content

BPE tokenizer that operates on integer sequences

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

unit-bpe

CI

BPE tokenizer that operates on integer sequences. The implementation is in Rust and Python bindings are provided utilizing pyo3 and Maturin.

Installation

pip install unit-bpe

Example usage from Python

from unit_bpe import fit_concurrent_py, encode_concurrent_py, decode_concurrent_py

units_list = [
    [0, 1, 0, 1, 2, 0, 1, 2, 3],
    [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 5]
]
vocab_size = 10
# Since there are 6 units in the training data, 10 - 6 = 4 merge operations are performed

encoded_units, merges = fit_concurrent_py(units_list, vocab_size)
print(encoded_units)  # [[6, 7, 8], [9, 9, 5]]
print(merges)  # [((0, 1), 6), ((8, 4), 9), ((7, 3), 8), ((6, 2), 7)]

units_list_to_encode = [[0, 1, 0, 1, 2, 3, 4, 5], [0, 1, 2, 0, 1, 2, 3]]
encoded = encode_concurrent_py(units_list_to_encode, merges)
print(encoded)  # [[6, 9, 5], [7, 8]]

decoded = decode_concurrent_py(encoded, merges)
print(decoded)  # [[0, 1, 0, 1, 2, 3, 4, 5], [0, 1, 2, 0, 1, 2, 3]]

Development Guide

Installation

  • Rust environment

  • Python environment

    • uv is used as the package manager
    • Run uv sync to install dependencies

Running tests

  • Rust

    cargo test --lib
    
  • Python

    uv run pytest
    
    • To install the crate as a Python module in the virtual environment, run maturin develop.

Directory structure

unit-bpe
├── src
│   ├── lib.rs                # Rust library entry point
│   ├── core.rs               # Core logic of BPE
│   ├── concurrent.rs         # Extension of core.rs for concurrent processing
│   ├── python_bindings.rs    # Bindings to expose Rust functions to Python
│   └── test.rs               # Rust unit tests
├── tests
│   └── test_unit_bpe.py      # Python unit tests
├── .gitignore
├── Cargo.toml                # Rust dependency definitions
├── Cargo.lock                # Rust dependency lock file
├── README.md
├── pyproject.toml            # Python dependency definitions
└── uv.lock                   # Python dependency lock file

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unit_bpe-0.2.0.tar.gz (15.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (494.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (515.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (589.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (508.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (377.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (344.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (335.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (334.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (494.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (515.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (589.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (508.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (377.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (344.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (335.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (334.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

unit_bpe-0.2.0-cp312-none-win_amd64.whl (175.8 kB view details)

Uploaded CPython 3.12Windows x86-64

unit_bpe-0.2.0-cp312-none-win32.whl (162.9 kB view details)

Uploaded CPython 3.12Windows x86

unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (513.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (588.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (506.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (374.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (367.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (342.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (332.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

unit_bpe-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (279.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unit_bpe-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (284.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

unit_bpe-0.2.0-cp311-none-win_amd64.whl (175.7 kB view details)

Uploaded CPython 3.11Windows x86-64

unit_bpe-0.2.0-cp311-none-win32.whl (162.7 kB view details)

Uploaded CPython 3.11Windows x86

unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (514.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (588.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (506.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (375.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (367.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (342.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (333.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

unit_bpe-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (280.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unit_bpe-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

unit_bpe-0.2.0-cp310-none-win_amd64.whl (175.7 kB view details)

Uploaded CPython 3.10Windows x86-64

unit_bpe-0.2.0-cp310-none-win32.whl (162.8 kB view details)

Uploaded CPython 3.10Windows x86

unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (494.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (514.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (588.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (507.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (376.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (367.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (343.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (334.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (333.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

unit_bpe-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (280.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unit_bpe-0.2.0-cp39-none-win_amd64.whl (176.3 kB view details)

Uploaded CPython 3.9Windows x86-64

unit_bpe-0.2.0-cp39-none-win32.whl (162.9 kB view details)

Uploaded CPython 3.9Windows x86

unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (494.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (514.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (588.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (507.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (376.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (368.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (343.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (335.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (333.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

unit_bpe-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (280.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file unit_bpe-0.2.0.tar.gz.

File metadata

  • Download URL: unit_bpe-0.2.0.tar.gz
  • Upload date:
  • Size: 15.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.3

File hashes

Hashes for unit_bpe-0.2.0.tar.gz
Algorithm Hash digest
SHA256 7c195f0c395728c0eba574fd984e451f05d18255eb4337c16124c8bb8fc05c84
MD5 0087d05884baed0651b1277545610b2a
BLAKE2b-256 97bebcece8443347126b40f6bb2fd2b1fcf5d2b515c01e5d3a351dc52e75f71e

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e5317cc85b3a8948d8264410f184acb3ab3d1deb9b9da95f548905801291f30
MD5 b96ee99398a9425dc5f5b1aef22e4db2
BLAKE2b-256 f6e541737fd5f848786f968a31c28f049cc9574e77f1a051ee300e3a4c082149

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e5fe66e2aee5b86cd1b28a8f8bc95740a7152685c58833c1a29212c0264236c
MD5 b2d06c53876ac247f6382dcf03ef64c0
BLAKE2b-256 c87a8b94fc1d6ea79b0a7ae0952027509614e1d82149c914f4243bc74437a0fa

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69c21b83a8aed12782b28ac499c304556e5280398917ccc453cc7d4e9b28fbc1
MD5 f5bc6913d55b3dfa433099c20ee53aec
BLAKE2b-256 a38a14b1128d0d0fedd4b9c4d2c53e9e57d9dc03ce932d6a3f467ce8e9cf4693

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d82f99745ffc85bd30393d988b79cd0e9d4125308c579a7fb9176ec2da01246
MD5 f8cbcd448d8d62673d878ef84ae4d630
BLAKE2b-256 b5a6b43a9084143d2b479a06a39cb90005fa6581276b4e782bf18a9318a3a4ef

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4d46667cfe6544e5b4c76df0800ece7c7f445052a4702f0ac78c09ce64f9e32
MD5 9b2c2795e36faaee4b57ad60e4736cf6
BLAKE2b-256 f73e0d3c0326bbeee4f7368102a83773073ab1ed27462b60f9ac80a0314ad058

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e22aa6b162536f9939d25200545439c56d6d95af78d410aa477f0c3d0752a806
MD5 3ebea42c38a1a0fabacedca333d759f0
BLAKE2b-256 1ab405a28eafe33a1ddcd97cee136e9c5bdf5db2b75690e881b114d89e576b30

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d4c6458bc25397480dcaab84a12a1d832a9cf5b5381737abf56e311e8ef1ba4
MD5 8e7ef318c068bb0108a3f38903cc2272
BLAKE2b-256 dba197abd148d769b93310bd7f05a0a371b982872d78aa5f232bc4323dc48049

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 637faf63eb0a049814667381639a7887bc2345af539c915bee501eade393c8a3
MD5 5b4f76a966c744290ddac872b1e7e932
BLAKE2b-256 08f8df77a17cdbf86ee73d1b2f1369a358b9d1315ce787ed163bfaf9d7e76098

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 395f8c749fa584efb2f328f7ee6e04fd7c7643c416ca23fc952acbb07bb45b93
MD5 69a2a55f33ac9f94bfce42ba6d0a6243
BLAKE2b-256 fec978e1de7da365d2ea7016b3b458fd266e7b85bb57b770f48a40977ba2b6a1

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0154527d0e8e31a308bb3b98e68ba68b1cf4e763e8fdb4e2186c1c761118c054
MD5 500add77201dda4d86f0b57c9f31d92d
BLAKE2b-256 4eb3bde0ac947b973b1632b9ea2a6708d5a81c33024c7926ae4856abf39f10fa

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aafaccdb20ae0c4919891491c8f82bdc8f205762f4b9d371dd140cbe4c0a43c8
MD5 87dd07b80aa8b3ae62546cd26c5e8e52
BLAKE2b-256 ddc66e8cba5ca638c051a65cd4a09a3c22c95f6d8bfbc41f3a5093eeb18e9801

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9812b9f9331c58dca62606d8226510fc8565ea6789cb0f87a2b41073febf5e3
MD5 96478a6faaa504913b9a23de13f9c1f3
BLAKE2b-256 f9bfa86b4eb0db94b89e20c37b5b495ab96a6c187dbfeec293e54cb270e7f6ca

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4171b30d7144d811ddc1ad6f67bb8dd105027d90c9097525bbd2dbc4d9a4122a
MD5 cab455a951d3816d09fb19299be00248
BLAKE2b-256 ce100c7034c297630c16bba298751f8f51b6e1a41db6dcef02a566cd8e20fd59

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb833902d6d5360c556571f2a5e51c00f469dc79138b2d7de47557105db34918
MD5 5dff02f5aab4e2fef63a67754cf03862
BLAKE2b-256 bbaca26551a93f8ee34089a48baab5016eb633d006c0b3b22f61368dafd25ebd

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c525c2cfb7f36d4e81ccf550a41b6131145c7dca0c2331b4b38bdb4d483617b
MD5 1dcb5cdce6ca78b265939b9ac3f124bb
BLAKE2b-256 0961b0f33bfc5f7418a39d8ddfdf9ac3c2ba5cdb413ae14250b6946215c36bf0

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d209ccb7b9f9bffdf75c714cf978474b4cd9ba0be285f2d73b3842e60813dcd5
MD5 9066b6afeb205ed7f38c80758593a42b
BLAKE2b-256 5c0e71509692a7d14b50f081cedf639911137f0a2a4e66d19ca86542d378b951

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 279bbe9d0fe47cfc6c05748fa90e66012dddea2808f0eca4a835207d3abc87e4
MD5 ee5b4ebeb9f92d2ace702deff136340f
BLAKE2b-256 f2d7365572465067301a7ac723df0c1b66b2b0a6c83af52b769eb34e8d72d2cd

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 314809a53d9c15c5bbdd692e496c360a68c83f7d266a3e8aae882bff51d578c2
MD5 4b564d692a78efc58629f59cd555fb19
BLAKE2b-256 13395bdaaf9da135b3841bc27317ff7d8a730bac9e4a4f7ecc5e820e6b81119c

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b443e486e72a99df20c696d63e5e589ff5ca78d12375d922f6a7d0619922732c
MD5 6fdf1fc3f429e57da614cb253f83b5e8
BLAKE2b-256 f39c42bc3533422ac26120a37671d4a2b2f32edcc0e043f47a1efec7cc6413f1

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e9f898c0075228e196a0be9b3e1a6df07fd6c4d9e126c2b4e988e8e3b9daf2d
MD5 3ac117abe2f7373c2300f5f505221533
BLAKE2b-256 1e4b91039aa9e92b132eb1fba65044c9e65e3f58f72e676b63186d1a56dab4a1

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-none-win_amd64.whl.

File metadata

  • Download URL: unit_bpe-0.2.0-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 175.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.3

File hashes

Hashes for unit_bpe-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 0aa366096411f9c590bb39607bfc986b93cc7c0eb3989d76fae93cbefcffbff8
MD5 c0e1c40ce2dd116e967e449aa498c90b
BLAKE2b-256 e263d7410dd86003ed4141e73c478cf7c4e1ef92e099bf2f7c377ae654a5d598

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-none-win32.whl.

File metadata

  • Download URL: unit_bpe-0.2.0-cp312-none-win32.whl
  • Upload date:
  • Size: 162.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.3

File hashes

Hashes for unit_bpe-0.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 86f7b8b22f66b7db98aa8d3fec6322f688685aeba00de79f1b5518997ec305b0
MD5 13235db56f60310c722f65e2feddb560
BLAKE2b-256 b122af35a638ed06c0fa2b0a7bc1cd13248f2c9975dcb3fd34380abc0bb07ac0

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3693369e5dd703fbe4a8476f9ebaa804302f575b6087d9e5ee910fdce4326182
MD5 f33ca73b70a42ac8d2f3ca880e5624d4
BLAKE2b-256 dbc7344ec9e80e8288587b65c0ce39cfb85fa74e7f2a033b5e6bb08b83ce5d62

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e33366f179d2abc009c88281aa239e1acf75e9bbcd5d08273d3da213a67985f
MD5 276697bc9f0eb3df2e82c64c57c820fe
BLAKE2b-256 df894174ac37532b83bf7db09bd5573be7eaab816c4d71cb5f2a54576789453f

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9fe80c66ec8745cb897a81271d45342ca3650160965c8dc1b1d8ba45b709e230
MD5 6c5c931f47cc55e3f0a3a417d7bd54b6
BLAKE2b-256 b47e9c0f527366613443920a09080357aabbbc3e4ed8f7ec71250e94276f171f

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd2e3bcef913ac889cfc94de2d5ed7aae4b4b98beef6b819c24894b4a0461e45
MD5 98b118b1b964fe8f262587c8436df928
BLAKE2b-256 c78d6aeb9cda0734113816c824b0e083ae3a28405c69a8cf29020dc8bbac99fa

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e1e0145a7b323eef459b6177ad87e43d9d9ca522c4bb55d56dccc951f36ea28
MD5 773538ca8d9cfb4e6c3c8aa4b035a082
BLAKE2b-256 725e6b494443cbed4fb6fdd74bd6e148eee6433d1d4e26f2c3e00ead8b5e88fe

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5baf5216b4f82569c44626d583887a505f0d265f1ba99786a91b083dcbdfbeac
MD5 3bdf5a88139d48076f307c03dd397e3a
BLAKE2b-256 fd6f6f6d3322a0ed9c6f6708c9e27b71b9c251c28e11ded2b5ea2c237cf5d058

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9725add147afea75013d38b093d4e443743cc458acf5684be932874c956a818
MD5 b036015b76df114906499a426e6645b2
BLAKE2b-256 dbe9416607836ab01b2559755365246bdea8bf5fcc422d003412fd2f4cf46282

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aec0f8b4eb39087f421f844e5b1d757b8f3714be864788486210d8d0815bc035
MD5 8c40385333c72897b906640f1d71b3aa
BLAKE2b-256 2a3167915e6495ce6228bd19e6becae9f851a0d3fb4fca84f124261e17512a60

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f05505fa42f26dfe3d490a5ef4a24ca967df59d16ba5de254ac7607de1d0293
MD5 a162d1c7ea5eaaf14dcaf1e231cd1d37
BLAKE2b-256 0aacc1b75b1580caeab4e9cb7a2fc24136648d9c95ddf89964a53c3461858505

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d3b13b9f3f31cb7929e79626415bb61ae9f698e0ff969f60965113e8e385c5d
MD5 9bb3f88b1729b7146d8c2411f5de22f8
BLAKE2b-256 302699203634eb0bb65a9d8a563308f5e23c6610be78a678dd92d4e4e7070040

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13084727416762a89a221ba634c66f37fcc86bf6b91ddf56b3c3e8f6e40ef7c0
MD5 4e6af84310c92755377498887d79061f
BLAKE2b-256 1fc87ad8ea036fe428736d921f91e832aab094f06ba2db8af56600b2f26dc24d

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b259f42c9b8715ed0824b27ed6a015f8264a09038cf444921eb43451e3f5c0d4
MD5 10840a23c831264105464a08857d8b2f
BLAKE2b-256 99b764cee3d4bac0e7dd93b625b280004afc8323421efc1367eeeb6f966e643c

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-none-win_amd64.whl.

File metadata

  • Download URL: unit_bpe-0.2.0-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 175.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.3

File hashes

Hashes for unit_bpe-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 1e49f3fc1d012ae44df280104948dc816f99e1dab9aefe36038e45195a89b1af
MD5 54d6b7f8354073774f32f10f951162bf
BLAKE2b-256 8749f0a6399106c0a6169e0a256fc88b0746855ce4a3a006962374fe60ddc741

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-none-win32.whl.

File metadata

  • Download URL: unit_bpe-0.2.0-cp311-none-win32.whl
  • Upload date:
  • Size: 162.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.3

File hashes

Hashes for unit_bpe-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b22a57483b6ebf0d4e563e28dac69c01393967f75532f593398edf4c46c724a4
MD5 1642905426a29c2aeff4d4070a5785d9
BLAKE2b-256 9616cbdcdaf07b12647430da55df8f2cc28b25d6f82791fba06810a3b33efb56

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7026dbf1f902d30bab3b01130150906ebb136feff89b652753235cfeb3a84ebd
MD5 96bfec291dbf063a843488c6b27b1c9b
BLAKE2b-256 dc446647c3af6946496cc5c729713add6d170c70f25eae79dd40aefea338f292

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d594e2ca1404dedd33fdb904ec451892f73650e7017c28230951214bdc25ac1
MD5 fbfe8ca7a2dd04f3b30878e21de514f6
BLAKE2b-256 1d2afff5f73b31af41d5345573d285ea6a17f50e2b42e7c9db10e883f4306c5b

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ed78779d80821a941a9958efc3909bc4eca065461dd29f00024ebb50fea3bdd
MD5 0c91ed2c2ce9e9e288a5ee500394a86f
BLAKE2b-256 ef8ace38ce80fa0a07f0d4757b5b5c1e754c5f0e0233ee58dd9e45af8758ccf0

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8156e2d8136b88b5e860f89d8d3653bc7f1f9910a14e04f945ee0c42d57fca0
MD5 fa376df90c302b11b1618cc0f67ba507
BLAKE2b-256 d9e23497e424f8942c3e8bea5d9a47935b20bc688dfd37aa01e22ba36955e25b

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e877314b3554c46632ee821b5f49df4a20334693c2fbb6bf82a464d5b3a0459
MD5 ea5abc7ddcb7fbbbf58c10d35aaea797
BLAKE2b-256 6d90ee68d6c597e6293b29bac6cb9ef55335dbb33baa7a2f4575fc7c463ba8e1

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93509bfa95612b5bcbd146d0b1fd72f386b3b662bce7ea3458b8fb59d71f5c13
MD5 057bae7c4d809c99924defb0375e9c0b
BLAKE2b-256 d5951e680d4a0e1507e910f4877959379a0a2d3fcf70bba46ae8d3d6304f8b2e

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9427b01438bf87f767991e6f3696d53688580ace43498c72d3d2da95eec0c1a
MD5 a7fd871098c9ca1afa11e73872ed0f23
BLAKE2b-256 0930ea9d402d63bbbb783c3b2db14b3a7459c5bc52e9d867ff659b4c0e21070b

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 02020cb0ef819d64ee7783a4708b6555c79b91d77688dfe9a05f225a07c39314
MD5 0cbbf452be2033a2a5a89c199c9e5509
BLAKE2b-256 5a2b39c8743c77fcb7a22e6312abced9f70467f6da6e76ab5dddb41934c0668b

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68a9969741bf0163e2247aa382a5f895c791df02df066ca8aac2e3c14b4d3c42
MD5 6fa38cc7e46c5eebe098b4bddb4379af
BLAKE2b-256 eba0a5371985867b16a5242b2bbabb83f6c64565f145e5bcd91e93d735e3f5ac

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a25ae801c11cf0e84c42b05966be32e3a7a3e290d8244abb506057e70a8e3881
MD5 7d2bd7f5bbed646f6d5d577323222ded
BLAKE2b-256 2cc97e126152513ef6dbfdd63fdd63d717b68db9c2a56fd30c8e0410791f61f1

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86a7661e08298ed4d07ec77593f3be65aa800fce5926bae68ba63af0f9c393b5
MD5 49458eac37d16d5a4864b116712f383c
BLAKE2b-256 7e8d6e3a80849c6d0fb431231b860c1d6e56972ce08bd861de4bb5bb1c841378

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c3648e5d905b72b04a4981511264bf060656fc69efe6c759b97e9ff6213bc25
MD5 f860acdb75fb98cc9fe516e66c958f64
BLAKE2b-256 a25f9737b06de60363b72c5bdf39dbf6bcd775365c0f900308b6d8c6a9fe4a6d

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-none-win_amd64.whl.

File metadata

  • Download URL: unit_bpe-0.2.0-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 175.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.3

File hashes

Hashes for unit_bpe-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e19bf0ee0412cdb467798985aa7f26f1a61cecbb4c7b92c260c16145ccc2d022
MD5 b7589b9775f3fbe468520f673ea0a56e
BLAKE2b-256 f66df279668b6f42cde8a856f2e540e1cfcc7ada25a9c37c901a012ca8c172df

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-none-win32.whl.

File metadata

  • Download URL: unit_bpe-0.2.0-cp310-none-win32.whl
  • Upload date:
  • Size: 162.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.3

File hashes

Hashes for unit_bpe-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a3cb136ee7472769168486429fc95d7f2861aaf50e93ba4b166b0bef49b2ec73
MD5 55efa9b9ee7919ecb8593205aeb9a8b6
BLAKE2b-256 4386079b467e3f0fbb783000abf9977ec04fa7a022aebc466dad58b0cdae1298

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d7236bdf3c7e07a369905f805d66a3bf5b3f8d0baa913b052409054540c5e94
MD5 f3efea8c4df39642ff95264d972d51fc
BLAKE2b-256 f482784b09c920f3a6e7fe4d85a30962d198fdb11e68de0bfcaf4e43f756bf85

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aea8d3e8449e2b899672180938c838ccf5ce0334655458b365f04e8827c34780
MD5 2934ae99b53cd6afdb3148dee4c7cd65
BLAKE2b-256 f8895df63173de77d47adae1cc929703640156ad9be96958a97dd31326133ef1

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c6ed8de641e0980260fe456ea1420b8fe80592e437379ddffa2f8d85dbed3d5
MD5 adcd2849ad984a9a4d4a29901b6d8ac2
BLAKE2b-256 6696efd5647fd5e2c8b580932acd2605236ddd2648cff833e66d477fcd40cca7

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2056f74f1f20da67ea4a50ffa848971a096190fb3f5a11c260863209485dbf28
MD5 93acfa18eab6f7fca557df56c75503f4
BLAKE2b-256 24e2dfa75f322450524956684b03694a50adb20a93aaf9baf4d68cb3c7a7dc4b

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4aaad1c8293a485123300c0e33a76611c70871c1e25399041cb734a8c0769d1a
MD5 6bae162ab483f56ec643d8241a77c1fc
BLAKE2b-256 5d7ba23280358c59d472c1a7338a17307aa8afeac7df927bfdede9d24284dbe5

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd9fa85ea87f98c8823745f9e030fc631d6a230d5ccb2045c205c0d0359efaa7
MD5 8435e8f7e91a6f56d16b5dbac0c196a6
BLAKE2b-256 d6e7f78e6d7e053c7a5326c8bfade234e8c132037b59e65b4a70e74ae6171f3c

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5e4a37be65c6b79b3abd81ae97960c98766e412837e25868c4363b378c10827
MD5 9d316f85dd42d2d01e50a8a3157a04d2
BLAKE2b-256 313c12b98686a72f77dba067af6abd512f6b0f9fe6aa5ed8b34c687ad73daafa

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 290b345f3791c4e374fdf0b5571bc88b291d0f5106bd574f3e37196379bf1b34
MD5 8cd60f39b844bb42bef7ebe50296ff09
BLAKE2b-256 33cf08da3a21326ed136233465b94a2d32c640ac6117c95fb61b773e3a170fbe

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d8eca07c4a26e133735bc2d54688b31a1e484baddc7c265319d312c2ab03e39
MD5 04dfffb7e74a03574963353a32e45173
BLAKE2b-256 f65971b4a53c09ec1f01cab11eb4f6cd4010d3ac5bf9cd4d6d5447fd1470ef99

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc849da01b1e321a41234346aefcae407f372bd6f39d33818ae3754dbbb2940a
MD5 c9b8dcce7b3e2bf7cf24f2609844a618
BLAKE2b-256 b14fef057764eaa9074dd116cb53463df18efd165d19d4f2da1bcf222ea94a34

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c30c2af390bbc35f9468e148995700927279bb21164d6532c12302b9b35221c2
MD5 938f2a2216262e596ecc8cadb479eee8
BLAKE2b-256 6167b080d3c22b44a466276296fbc96bcaf20920c30a45aff901c947df510ffd

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-none-win_amd64.whl.

File metadata

  • Download URL: unit_bpe-0.2.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 176.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.3

File hashes

Hashes for unit_bpe-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 33496d46474a2de5494d936723d41a6c91aada1c1ee348d066f1e8a539e0222a
MD5 3c273b7cba59df5e4ef453ced25b9966
BLAKE2b-256 0e32cb1fbb300e36b04553e7fbe1d9054d97f272cc21d69448c3f6d3e85660e1

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-none-win32.whl.

File metadata

  • Download URL: unit_bpe-0.2.0-cp39-none-win32.whl
  • Upload date:
  • Size: 162.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.3

File hashes

Hashes for unit_bpe-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 9879ef55f9e3c812c333d6da6850744836c513d46d4d22dac89655b25edb3326
MD5 74b2317199d4a10ca35856767af05808
BLAKE2b-256 d9bcdae9179172740a5d7fd77e77e78b4cd59a04fe6e9a7a1670f51b42004129

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f8c63a73952b206d46fd0fed40bf3721dbdcaf03458eac09e495c50deb56946
MD5 ffa3ccdf84ccf3d5aec29fe206eb570f
BLAKE2b-256 a22289bb6ee3f0f6f0bbc81c6b4c73b316e722dafa1c8f6f2ec3c56c45a953ef

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77aa97b7e2d8ddee6245c019a570aea7196ac0f3d9b917b391a357129980ebff
MD5 393d5c873fa39f53e8b6e9e8e5402fb1
BLAKE2b-256 59bf1c9d846a8209cb4b8e01a192c1fa40acee48a5ea60fc12aeb5421804f4f1

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1bd004a746682e32fd16b71c766f56c5f994449fc66d913870cee4834fe657d
MD5 6846f41d99b3bac0f067782a8c1bfbb9
BLAKE2b-256 771aba1328fb2660ffff857a50194cd188ffb2df4708363809ff25d7a31d7af8

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cabf64f5b9a170065934817438757c9caf67f6f6218b0ddbd659ca712507a1fc
MD5 074f47da804e69dee46d4233885b7179
BLAKE2b-256 6962a65e55c7691cd52a7fef2975348ea9edf4523eca1eed0e6d283612329b43

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e812bde2cb271d60e25494853d11b16d44e3a5f7f6e80409ca58e227ccc9025
MD5 c90ff6dff7284d33312985baa60189d6
BLAKE2b-256 948daec59542a96981caf07b8456653c02ae13964ba3cadbe428ec560c9e2210

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ece1408786e2c813f9cdff1e8d7942391e0afbad3368ffe4494557a8747aed4b
MD5 0d8048a441d9c25189ff3a3267ceb4a6
BLAKE2b-256 07dde8c643a6053f45f556d5e7d5d2761c832d3987ee96faefd083a5073b89d7

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3bfa9071e71618beb7e2eee03c429884ba86d7b3293a65bf4d8b29f0e88a0b13
MD5 a6eafc1a9457d87de57078fa8219598a
BLAKE2b-256 269da9a90b38be779d7193751ac27388c4ef23e5cb802b213d8c7d783430c819

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a15d76c503414ddceffce10fcc4f3e52961b889421cf9b05942779e76d2feac
MD5 b7802d33f90b5950626740cddb81cc9e
BLAKE2b-256 66b3d647a89edf204c7b38f6efda427ad7f23512b08b957f095e0904f4ddf9e4

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 571f7e8f8bcd3145a001b8f27f2ff47380f01fc1f57642afbc3f2a0e4ccc19be
MD5 175420d700b5ece7b97a98e4e01f595e
BLAKE2b-256 771b3073ee082467392966f73970c401aec4c1c4f2604bd2ced95e4bb99ec711

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b4c923074223d1906c8ac855db8cfd155dd495146152e2d132aa78f3ae91361
MD5 996ca9625a2ef98bbb8c3bbabdf95fd6
BLAKE2b-256 da20c785065c86a10e97b46aa0d6424d24a76124b404dd30700eb4eceafd377a

See more details on using hashes here.

File details

Details for the file unit_bpe-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unit_bpe-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ebf910ea1e89c3705ac1b30574bece0ff57e920fe57bed835d4396b0e2a3318
MD5 09112f4e80dd8a756e01077aec245bf1
BLAKE2b-256 8c8dfee0c2938b1845df85a7fae4212b3d04fe4274154dcd5126e0de6e033cb2

See more details on using hashes here.

Supported by

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