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
    

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.1.6.tar.gz (13.9 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.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (499.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

unit_bpe-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl (520.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

unit_bpe-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (597.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

unit_bpe-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (514.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (381.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (374.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (350.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

unit_bpe-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (500.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

unit_bpe-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl (521.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

unit_bpe-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (598.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

unit_bpe-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (514.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (381.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (374.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (350.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

unit_bpe-0.1.6-cp312-none-win_amd64.whl (181.3 kB view details)

Uploaded CPython 3.12Windows x86-64

unit_bpe-0.1.6-cp312-none-win32.whl (167.7 kB view details)

Uploaded CPython 3.12Windows x86

unit_bpe-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (498.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unit_bpe-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (519.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

unit_bpe-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl (596.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

unit_bpe-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (513.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (331.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (347.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

unit_bpe-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (285.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unit_bpe-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (289.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

unit_bpe-0.1.6-cp311-none-win_amd64.whl (181.2 kB view details)

Uploaded CPython 3.11Windows x86-64

unit_bpe-0.1.6-cp311-none-win32.whl (167.7 kB view details)

Uploaded CPython 3.11Windows x86

unit_bpe-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (498.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unit_bpe-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (520.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

unit_bpe-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl (596.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

unit_bpe-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (513.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (332.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (349.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

unit_bpe-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (285.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unit_bpe-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (289.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

unit_bpe-0.1.6-cp310-none-win_amd64.whl (181.2 kB view details)

Uploaded CPython 3.10Windows x86-64

unit_bpe-0.1.6-cp310-none-win32.whl (167.6 kB view details)

Uploaded CPython 3.10Windows x86

unit_bpe-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (498.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unit_bpe-0.1.6-cp310-cp310-musllinux_1_2_i686.whl (520.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

unit_bpe-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl (596.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

unit_bpe-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl (513.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (332.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (349.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

unit_bpe-0.1.6-cp310-cp310-macosx_11_0_arm64.whl (286.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unit_bpe-0.1.6-cp39-none-win_amd64.whl (181.4 kB view details)

Uploaded CPython 3.9Windows x86-64

unit_bpe-0.1.6-cp39-none-win32.whl (168.1 kB view details)

Uploaded CPython 3.9Windows x86

unit_bpe-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl (499.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unit_bpe-0.1.6-cp39-cp39-musllinux_1_2_i686.whl (520.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

unit_bpe-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl (597.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

unit_bpe-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl (513.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (332.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (349.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

unit_bpe-0.1.6-cp39-cp39-macosx_11_0_arm64.whl (286.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for unit_bpe-0.1.6.tar.gz
Algorithm Hash digest
SHA256 dfe609ec6ffe92c1ac0f90e9f0c983af13220e391a3a34314fe703c18517e71b
MD5 5a1619a9dbc0a16f7fcc47ed3b2339a7
BLAKE2b-256 ea653448bb7b570042f8bafd98d28562c548668254b3ac6f0bfeaea44e82187a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c75e43aa1de8f746c52040fd427216bd4b3c413b537705d02ffbac6c4fb4410c
MD5 e450bc27de5a342307ae9296c648373a
BLAKE2b-256 5a7bdea92b3e2c8484f5ad007599e5c1af11277e08b68886ab90025a811e0811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc189ca26f41ec337d0eebdcff2142e79ef759699c0a22b7a685722fd85cc452
MD5 5e1fb554020bbf5f4293ac3f7ef77583
BLAKE2b-256 1544bf76dcb4324494c867aa1837ee59dfc40b7b41cb781a30b8064fbbf29dad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9a6a997ae9010af733648df771cedd45e51a99cb3f8292450dd78f2731d2545
MD5 70ab06fbe9b27b07f55514160bfc5cb1
BLAKE2b-256 6d6c4367f2ab663e376501c708afd5ba80a266bc318e53419956ce333c7a029b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 232694e2e877d5017e1e6be7776f207289ad6b2c10881a2e7671a8870e898e29
MD5 5130cf1ad78f28e70c2bc2bf03267e53
BLAKE2b-256 b4b02ebc09d7b085695d5c41409fa98c2ac8badd0c15d124237c4b0a8a8ac2ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fcf4ed719d6682c384bef82ff29921aa13ce55d19d66113bce404e77301ae2d
MD5 8bedb8c18a9014f8a04fad64df160cae
BLAKE2b-256 e23d3b4a443b7f7e34ea3aafb8326bcc2e9323805a8b763d3cef00de6e19e2f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce7e7b40ee449468bfa9a632a620573ae811ecdeafc71ae52359cf3c10534371
MD5 75b61f04b8b1b469af1cb3c0c36e913f
BLAKE2b-256 4cf0c8e8b15c8ed3a941b60d2ebb334f6eecd3c978199ba28af834cf4c21f650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1643deaec8169417efe43da2193027db5790c4748ebb5319077c8948e5f5f0cb
MD5 410c8aca10f9fe4166762b16855e5e71
BLAKE2b-256 c223439a345e49f60f2f98ebd70fb11a4e2ba52ca500fe347373ee3beb82acc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a3e0cf56999b19d95add1976b0155bda76a0ef3ea0623d87035138da0ff5cb7
MD5 28a0e9e5421c359bdcf4d42399399e69
BLAKE2b-256 48ac46bf5bab4b171c3e4f18b231daf035037be63c5ae0107a3d98f406f71c40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5db3b362d75635e6fbda4c8bb2b281c92936e64dcda9b75117a01c9b43f2b22e
MD5 186b5c4c0c0ba8541d49ca7197453aeb
BLAKE2b-256 6ad4dfc7a8f5ed40769200c1f345103d78a189a8f17463805ddd4e6481c8f8ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10563546a685350557609d1172ac46f1f00bd216a248a0decc51645d09ef9e87
MD5 c72d7aa941fba4faf271f04de9e1a100
BLAKE2b-256 36bf49041e9058677a24b2d323ddacd37fcabe234e713e5e307d1969d81701e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e2783b3439ad3c5ce886905da727b3cf5c0b33bb36cb2a9e02680c66ecd3920
MD5 597f9de60c535f5f542f53163b6087fb
BLAKE2b-256 018becccd9c66c8a76cb48bddb9eeab28e1966544c5e03b9938bc2977c8cf573

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0d63379f38ce035399831e348760d06d6ca88629bdb7ad1d2afd49a020e1901
MD5 8974551515dd2336ae68fa8bd6cc4386
BLAKE2b-256 6c8976294cf03eafbd3fa7b1a420bc9555e3b55b695f4d9a958405814e23a7f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c41490aa6dfafa2855e9324e11763cd0a4cfcd1674ed98be182b3e457d7cf31
MD5 34c95deeeae8a98053d29c978c33ec6e
BLAKE2b-256 109350797e4ef542adc40f6af27164beb01d41931d4a7068560b0ead683024c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 425fc9ee344a9206293ad227c37eb592badec0be067a93b6ac153ab2552cec3d
MD5 23d2d9d3bc8fe2fc044d6ce93a5b09bd
BLAKE2b-256 795b629e1060428a983677dd1e6686adeaee2079ea24e38851e181a4cb1a6e10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aee9d9df02d25164d2175867e711a64de4e75f1cb799b88c76eddfa599c8f84e
MD5 46d3223cf4250fe59ae806f1e283c7a0
BLAKE2b-256 c31763b9866617304ddf62e42d246c34ad7d6953a09c5e19f9c1a155f9d81b26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9043b865c6a7d597425f7f859fe36fc2d85c2f8626849a2e69910ffcf62bc750
MD5 fbd7adf07af0baade035f926654752e6
BLAKE2b-256 463fc8e0e5bbd55f8f7df46109432f0b7a9061a399e97015a2cf3f792278da48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3056552829de8d814f0f40e8e52048f4da12224f8ba583f8b86919ca49ef8d1
MD5 80216028b862a6650cd3f7cc4883135c
BLAKE2b-256 24ac5e3c07280c8d7cca15c113561086f8d10bb74d5c9600f60d75036411fcc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5197b8b0e95454fed0c0a998a663d02427444546cdbbf88296e558736da4d0cc
MD5 f7bb81400b799faf2e41bac04adcd86b
BLAKE2b-256 5cf3ff5ea00cad7240c18fbc13aa167a3d08d790d851a63b45e1148335b68890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 661fec24336f327532e4dfa5c11792aae7218a107ffab55017cbc5b67bfacfd6
MD5 9fe7c7d0f6bbdcf6e04e59cde9be9edf
BLAKE2b-256 4da090818b448bfea13f8f9e42e2b86c578d080dbb621563f8d0a550ebea998d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 807fae1f98ef45cc0e4b8788529826571df26db78a09988d8e503b53436bdc67
MD5 b039e6b2ff3fa490ffe71826ad0b0168
BLAKE2b-256 bc055eb7599203eb755d2d12a79536f434baae4ee308bd08fbcdd778d2703fad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for unit_bpe-0.1.6-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8f97e2fd26d6744cdd57536133baf5461aea02b0507e270649b27ca6dd79aa7e
MD5 9ca0de8ba2a1932469912738b459d0a9
BLAKE2b-256 af4d88471bfb17982e0807546843b6a4e0ef4a044de91eb0419091de5558ac3d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for unit_bpe-0.1.6-cp312-none-win32.whl
Algorithm Hash digest
SHA256 0152238369d0c8a2e604b5f1b6f2fa3641642796e55d8655713219f36efa43e6
MD5 cc91f489c0346bcf53a33c1f1cbb97f0
BLAKE2b-256 1f89867afae5c478bedd23c71c8a2d95db7940e457fd1550298c8115271516e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07dee0b728bb918e2dd5e9767f254fcd9bad4289f272a63fc7e3531473343a9c
MD5 778bae17102b59e45af48dc505798bf4
BLAKE2b-256 1d7314fbe49a9beb0d8595d42307ae2a42fa3ea3dafd34049b6ff9ffade0c7ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 187f4479ad8cb3ae2a003fe638892182902fb4cbcd83bec3bf9fa96f303496cb
MD5 cb242cb91bbca7f7d020537c1a9f186c
BLAKE2b-256 29907f8026afda2400c37ff3c1398b60c83482c90429b9d9e8cb76ed8843394d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f542f4bcd195ced621212a284dd031c40ac6e55b442eb28d34e05786d265e5a5
MD5 9f0719d19f6bd876d35ab9914308232a
BLAKE2b-256 1b81645fdf155c1dcce50d508392512a9c8f439a9330d033aed926a3ab61a3a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3072a6aba3bec3a846bff48337191e2fb6e14199059e96193e2c6d4c76ba04c
MD5 db8c0ca143614bd6b44ec0e4fc805ce8
BLAKE2b-256 782cde21431f394c641c8652ea088283b8c8eb3019b4c2071c6778d40120f9aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90b9a0cc3f9eff5c7336571f069e606a363d782fbd20e479df9b071eecc14c66
MD5 8b65cd35907414aabdf8cdf31f9ae877
BLAKE2b-256 dbb3468d4982e4f499a7741f0a5f9fe992ed5e95fe25bc2dd3a1649cd217ed32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b09dedbf54827be5185bb63c0e04519efad9c65d9388d51ff3669be74b10e2f2
MD5 4afa53ef5c4b36dbdd85750b773fc186
BLAKE2b-256 40fd243b55cfe712bd005e4bc05ebc59948bf0955a2c4255269a217b1d432196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00f1c9a7d4499a9641b8f79119d53f892cce6dbffb0eada753633505baedc6c3
MD5 fe5514f29feefd4e52d4a6476261e5b7
BLAKE2b-256 11aacd2cf7a835bb7ca16df758706705565ae6021702ab2cef391b5799126da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dfe5735dbe1a4dd6fecdb05a1d20d378eaf02dc8c54c37cd4ff84fc7f3a9e74f
MD5 c40cc6b605b2b0bd8caf92ba6041d6c1
BLAKE2b-256 661f5bb6a032423d7e92cb1b460069e5468cd29d1525d117170df59f56854c85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 680f3764401e614deb4dadaa0858de9eb6117f921324ac4ace1f1b915ef12366
MD5 41f98ad021d64147625afb968e365f45
BLAKE2b-256 00d49ad39eca5310cc7c8127067be540d81fc07b63886013f65b200ae413f5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60b1f76c2895ef5d819c6958f69dddc7b0d9aa303b75cbeb0aa9f035b9483855
MD5 1553b4b6fb50b93fc3c7b080cedaf98a
BLAKE2b-256 8165148e868b2747fc5e4cd1b9b66b75e11970cbc49723aeaae94b1f84479a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c1bf0b6417fc7560dba55589d0d711c9627e10043c6b5349f058ff2563e1daf
MD5 c617b42a2bcedca6d23a8b70287d6ea7
BLAKE2b-256 64002642d837147c0ec355b73ebf1ec9e06fa7d1862de7f70db3f4c977532433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f45d4411a15b7bec6d503e5e5793975a7c0c2454e9af4c15d05b3e7cb6e0e772
MD5 f21ef77601227ff48ec7dcbb3609f92e
BLAKE2b-256 ae2af9e82a9c6d57aaf2b8d14b0e9c5df1d4df49f79014b45da8f069798ff50f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for unit_bpe-0.1.6-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a405eb215f19d8a8c85dcc76a4b1dc41b0fcf8c0f31d8d9ce250e39fcab69945
MD5 6d110dc936f8f4a50acd7587e647d9fe
BLAKE2b-256 dcb339b9f6c2c52709f8522a00fd6704995754f214360fbc9b1fc70d450a73aa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for unit_bpe-0.1.6-cp311-none-win32.whl
Algorithm Hash digest
SHA256 28fe2534012dce70b20a1802f9a174474cf2b3703f6134d3c8efc9ea270383b8
MD5 6d2db1617fcd2bba9ef59ed1a0ba38a2
BLAKE2b-256 45e6391ebbcb43922ae78057f8d51a247c7c30bf750d18cfe8d589a844fa5658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea7afd472563896f4c78e2ed3ba3195907aec40ee10b9dfed70371e7dd79254a
MD5 09005fa098b3eae416419cf6c9680376
BLAKE2b-256 b1326b71756364e8c75db7674b2258914270e70d99f4e5493b41ca6c46099e9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2dd9cd6bec6e32f10d4157dcdbe7bc5d485ce31d0c257e928be5d5d5536ea793
MD5 7b621331238d0922e424dad1dc2e4417
BLAKE2b-256 e8045518f9b9537ddace19780c2651ff9f987582fa1179cad9b79dc661fd80fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8d5c12652a7940f1d1991a13ded995d64decb2d4a4f001bfe307dac490e343e5
MD5 3e86e545aac74f73c05535e5daee05eb
BLAKE2b-256 5baa8b9541e0aa5832b3485ea0c0874eb7f1ccf072d576c8a25006f916c1d4b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9043487a9b055893ec17a0b6e549d46d1d1303dc48bffc15e35edb511eed9a17
MD5 962e8ff2c849d21015c47d56e56b295c
BLAKE2b-256 d6b3351191b755ff611e02a280d417fd91219fd2aaf2e7e6fc9779940bbbf8c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a55bf0b9827034274da1d9351db14bf37b08fac8f7d34f3757c0d062f169191
MD5 39139e38941cf22f2d1fdfb3b11e472e
BLAKE2b-256 1509cae4842783a6d949e6cda5afbcdaa0bc2a5f60114a908979be94a61e0a04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81ea84d8a294fc6ee4402cbc391e3560c156ea9f824b08146f9a8a9b48933005
MD5 402356ffd998ba556670b8058999d3c5
BLAKE2b-256 d4a8554c435902815aa1d5149c47b394ff606382b90e76a889bc6e03ba2ebfa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf1eaf5c42e62739ae9b77ca5b8b2e6278c72640c257de62e6c6b1765eea7a80
MD5 2115a8ba87982ef0442e611cea852ef4
BLAKE2b-256 c1ddf3feba6f819832a0a6bda377706540dd626ca9c6042ff120ed4926e81b3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 67006e075f284bbc2353dc0a9c58d42361c8f5d7ff4d89c009a328dee4c00d0a
MD5 a4eca5735f5e7102c7fd95debbdc11c6
BLAKE2b-256 a62a1040132360697bc9ccfbff69ca7df7f97b735e453bd9aca00894ce451544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 286717f09cdbf90e724dab85582b88b99a24c6aad821e5fad0b9aff14ef69dd7
MD5 bd5c520b34c20b0cb40c23846e3bc2bd
BLAKE2b-256 c2476bd1df0026add26e8d40084e8cfba1945d198fa3717d5438da968a91311c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23b7681868aa1585bf7ccfecf3e9c9ab307a5d8abbe30f2e7ba755ff95920032
MD5 a61860d03f801c31633b640be3b4fe6a
BLAKE2b-256 a469e52b6ae9f3f6a0fe887b66d6e751f9fafd8e857b94d76c9855b82d075e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99027fba8625ffa186561aab21cb7fd1c6a5098774ef440d4fe3c0bc38d07a32
MD5 eb9309b55c6ad217d3706ebc84985ce4
BLAKE2b-256 1983c6669a12090e94279a3e2c2a0b0cc82997dcf443a587755114d3e9218a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 562940f0874b2e8ead7f62ff07a0572fe52bd21b281a4c6dde47ef0c695215b3
MD5 bad7bda0da48a8ba4cff86c44fbf429e
BLAKE2b-256 b7f6a43a11f76fda173c2dd646344833953541bcf8c266f20faaf10cfba3989a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for unit_bpe-0.1.6-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 98b554cefa59aa753b88ac02ed41d8ebbbe44a0c8918b8bc6aa9c60be19997e8
MD5 c7c127e819af6361755b86124085caba
BLAKE2b-256 449e491d94aa03ac2f0883240534f0a62b04fe3b48ee29acd0115c061cc6a65b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for unit_bpe-0.1.6-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e16ce18c4e42c03a3b3275e106a1f2dd84a5a865a152db7e4d61823538cf160d
MD5 5b77da4d655d8fc7d816e61f16fc9f0b
BLAKE2b-256 6a1adde59eec73ddb5d6581a2213aa964a84659b42c7ff3db0802575175bb9b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90abe3be4f95c8baadb42d736a18c4a4513b23a64ca68fe8289612ec493ad126
MD5 790bc7059bf994abf0ffe3746e3509ba
BLAKE2b-256 dc52f0da6e8ef470abf4100ec8eeccc7dd862a0198d2a054d2c9cf878074ebf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 085302be6acd6504a651037325ef645b870ef0cf0fcb079f4bcbb14cc04b3632
MD5 8eaf4d467b1beffd242d8aaf0c2c8a92
BLAKE2b-256 8b8805b211664c9fdd616672f3a5876f73309e9411ed2d9e95480215b8195869

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1640cf82e17e7cc176a752a99d0b76e299a596606d739b41dad60873d364fdce
MD5 3d32cec2bdfc9036456f8a757917ed3e
BLAKE2b-256 21e7b1f326611d1f5be589f96e2c6265fe246efe5f995206d02afa498ae72a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66be9cc9297e24f92154bca6fb7457d4056e6ae39949296ff7f6f8bb5301ffe2
MD5 d5387a8e95445cecf63cc1e92a1157b3
BLAKE2b-256 d34cb3589fcf10c8b248a2e00f4a0a12cfecccd248ff9a3fd54e87ba7d9f771b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 207d7434a30d5c00607da125ca08d02007227a1734b62759733a1645dd728370
MD5 2cd09d20b093502b716e88d8aebab6b8
BLAKE2b-256 4fad26a439fcf6f2fd37aad345212b24c09f6c000f846d0a17680aed76613052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6eeec3f875278fb4324cefaff2c47981a2e8625b63ec341f910dd7dfbe2ec5fb
MD5 c420258681086f5428b4bf5c911f0e92
BLAKE2b-256 76601f6a972656fd2df27b5b9c5b872e185d6ab8c91ef375dae9255d416e6275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 51e56d2daf6b8f95e0a15aba39bb74abbd4f20c65c88ea07e19a9dff33f015ac
MD5 db5fb8d00fb154093f09399650046178
BLAKE2b-256 49607cab186836fd89217a463751d932717489837792f90313b721ac0ae2010b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9418c05cf9fb53a5ec8c790f78f636edd1f8f8299ab32eaee726033500080646
MD5 117f226272854419f94723508cbb0250
BLAKE2b-256 f34c97d42bf72f7f8b2a2f4240c0f604c3f22535019f393c5c36cab0bcd0290e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0b0b74d559d10a5fc229b6599a2fc8035d3b93e9d767b5bf41d180cd39d16d5
MD5 bb312aaad31ade566f14a01697a550ef
BLAKE2b-256 fc6dcfa00cf148d68286fd46c699850a02024200a3886f01dab2535a7602ac9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6bf855eb342a6e7c065bc048bc0828d7d7aa4b3e31262d6ee2c991cf74d457e
MD5 6613f3814a3c00d5026dd40d80640ab0
BLAKE2b-256 5f13105692c50457bbd0ff3d7d9cc917bbc62af117c17e2bc1418f885e3d35c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 607262f3e8bfde8cb26746a6f8bf9f65242b2e8e254aea52c6575e1a0bde0f64
MD5 a9ed92a8afa4ca55b165fb38808641d0
BLAKE2b-256 26ccd06a592c1199ec8bccbcc852e3f6f4104a349f7348d4c8e5a4976bfebe81

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for unit_bpe-0.1.6-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 afa77d39f9374d5e386b71802b7e7c9d5159a44227baa8742fb0682fc6021f46
MD5 6187c7ca1e85c27b159f0ca26ec49979
BLAKE2b-256 b04ce1e46e9c23ce54a812990a444c9be747a6230fbcf82ebe738ba2d9f90a43

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for unit_bpe-0.1.6-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a66259183dd8f639819f7aabab73b452635d87349fcd15f0ac8f858ee74b00de
MD5 349b432c8f6f684cce772087a96f7120
BLAKE2b-256 b069e7ffcbed6e52e837cfbe39b972909305ce9d409d142358b4bded7e8ea0ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32d7ffe087a00aa4a3e145bd7dac6c356c766c9fd2f7de3e778dda83b2db294b
MD5 5c8ba8e8c845f8040bf507aa0dd3dbae
BLAKE2b-256 825c26ee97ce1955072119ba2cd744cb7f602d61a39206fab8a148ee5cae57b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc9cfd93197bb7573cc28349fe9415e1dd08b967053036ab6c03a1691b6bdf80
MD5 2ea8e5b68e313035fb2a0047bb6d73ad
BLAKE2b-256 44b85806d027107c89624eddd46d26add76b94457a3292597d010d2fdb5ba087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10915601e0e9837e2632ed53e64d804ce68e5b2f3f37d43076ad448f3d4b1cdc
MD5 09db2660c59b598ebbd15c62716a20f6
BLAKE2b-256 ac419191ef2a72130875f217ed2032d9988d4510c54714966e54789e6fa11bca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c99a7bd67e1d612ebc61ed0b36c8acf8174a9efc8af5e4f61ddb38070ad6772e
MD5 7e6e2ad3498e8b4d7c781c913e33a9b5
BLAKE2b-256 c716c93a22c8238582bbd2f8b5f42314856d3da5461c7673f4910f646aab305e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6110d28d4477b85e29bea84e2f3bef3fb0e9f3deecbf8cfc612e632ad8380dc8
MD5 22b0fe0ef84c9f33ce118d936b48f065
BLAKE2b-256 41a1624180c302cd7293dfdbf1f3bb0fdd8b0c04b170c0e653b5bfedc0c05ec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a34195bee1b3eedaf2c50f7b8a8083804f5242d53a0ff0aa9068b81f47989b0
MD5 607d2f1e429857befe6ba20894ece0aa
BLAKE2b-256 cb1a1624a0806cbde0d7d5210c9b25a5d2e76dc7c7ee928e689c8c03bbe27e1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7fe06e25182be3c7b67072e5dac7cff3ac9d9a0cbceb1cd09cb1f4c3138ca5a
MD5 dcca147a8f2232d2409a13148ba613ef
BLAKE2b-256 98b4c2d55d34613d54801c06c2554906eabcafb4d485643e9e9559ee1e006514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 370ad170bd6a9b54b918facfa741d67875ad51accf123349c9bbc3e211935238
MD5 9eaaf44e4008d71d1baf816aebd58bce
BLAKE2b-256 5c4aae7af5eef405be3de4cb646c153550e6865af115de525bb020cf5e3f12b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bcd7f574460f97f8ca9b8e3a4f0ca302edce40e5743e58ecbd379e7dc74d30ad
MD5 16f8e2ff7849dcd4b3d4bdb3faa1db53
BLAKE2b-256 8cee76f2ddad8646acccce793a1b102c446d5d9ed2440d23cc3652a14e7cc467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb28d1fd2b61f43d0813de1a0702c5f9ae3a12be988497f7b5b30aaa0a422099
MD5 43e4100c5c65f17ccf32f295037cd3ca
BLAKE2b-256 5d96ece3cedd188bf52f06e7d85a6f23f3e3e1149dd0bbbcac1bf224bd8ce357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for unit_bpe-0.1.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f9a838d432b3b6f1a327dd0e7e80c3367a6f3949839d3f96466f12d5f51ba95
MD5 9583943d4dff81d1ef5e799d972813f5
BLAKE2b-256 94bc08f4bde75cebb9d7076d5fbb6c88b43ed179bdfc99e1abd816c4b18b9756

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