Skip to main content

No project description provided

Project description



Build GitHub


Tokenizers

Provides an implementation of today's most used tokenizers, with a focus on performance and versatility.

Bindings over the Rust implementation. If you are interested in the High-level design, you can go check it there.

Otherwise, let's dive in!

Main features:

  • Train new vocabularies and tokenize using 4 pre-made tokenizers (Bert WordPiece and the 3 most common BPE versions).
  • Extremely fast (both training and tokenization), thanks to the Rust implementation. Takes less than 20 seconds to tokenize a GB of text on a server's CPU.
  • Easy to use, but also extremely versatile.
  • Designed for research and production.
  • Normalization comes with alignments tracking. It's always possible to get the part of the original sentence that corresponds to a given token.
  • Does all the pre-processing: Truncate, Pad, add the special tokens your model needs.

Installation

With pip:

pip install tokenizers

From sources:

To use this method, you need to have the Rust installed:

# Install with:
curl https://sh.rustup.rs -sSf | sh -s -- -y
export PATH="$HOME/.cargo/bin:$PATH"

Once Rust is installed, you can compile doing the following

git clone https://github.com/huggingface/tokenizers
cd tokenizers/bindings/python

# Create a virtual env (you can use yours as well)
python -m venv .env
source .env/bin/activate

# Install `tokenizers` in the current virtual env
pip install -e .

Load a pretrained tokenizer from the Hub

from tokenizers import Tokenizer

tokenizer = Tokenizer.from_pretrained("bert-base-cased")

Using the provided Tokenizers

We provide some pre-build tokenizers to cover the most common cases. You can easily load one of these using some vocab.json and merges.txt files:

from tokenizers import CharBPETokenizer

# Initialize a tokenizer
vocab = "./path/to/vocab.json"
merges = "./path/to/merges.txt"
tokenizer = CharBPETokenizer(vocab, merges)

# And then encode:
encoded = tokenizer.encode("I can feel the magic, can you?")
print(encoded.ids)
print(encoded.tokens)

And you can train them just as simply:

from tokenizers import CharBPETokenizer

# Initialize a tokenizer
tokenizer = CharBPETokenizer()

# Then train it!
tokenizer.train([ "./path/to/files/1.txt", "./path/to/files/2.txt" ])

# Now, let's use it:
encoded = tokenizer.encode("I can feel the magic, can you?")

# And finally save it somewhere
tokenizer.save("./path/to/directory/my-bpe.tokenizer.json")

Provided Tokenizers

  • CharBPETokenizer: The original BPE
  • ByteLevelBPETokenizer: The byte level version of the BPE
  • SentencePieceBPETokenizer: A BPE implementation compatible with the one used by SentencePiece
  • BertWordPieceTokenizer: The famous Bert tokenizer, using WordPiece

All of these can be used and trained as explained above!

Build your own

Whenever these provided tokenizers don't give you enough freedom, you can build your own tokenizer, by putting all the different parts you need together. You can check how we implemented the provided tokenizers and adapt them easily to your own needs.

Building a byte-level BPE

Here is an example showing how to build your own byte-level BPE by putting all the different pieces together, and then saving it to a single file:

from tokenizers import Tokenizer, models, pre_tokenizers, decoders, trainers, processors

# Initialize a tokenizer
tokenizer = Tokenizer(models.BPE())

# Customize pre-tokenization and decoding
tokenizer.pre_tokenizer = pre_tokenizers.ByteLevel(add_prefix_space=True)
tokenizer.decoder = decoders.ByteLevel()
tokenizer.post_processor = processors.ByteLevel(trim_offsets=True)

# And then train
trainer = trainers.BpeTrainer(
    vocab_size=20000,
    min_frequency=2,
    initial_alphabet=pre_tokenizers.ByteLevel.alphabet()
)
tokenizer.train([
    "./path/to/dataset/1.txt",
    "./path/to/dataset/2.txt",
    "./path/to/dataset/3.txt"
], trainer=trainer)

# And Save it
tokenizer.save("byte-level-bpe.tokenizer.json", pretty=True)

Now, when you want to use this tokenizer, this is as simple as:

from tokenizers import Tokenizer

tokenizer = Tokenizer.from_file("byte-level-bpe.tokenizer.json")

encoded = tokenizer.encode("I can feel the magic, can you?")

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

tokenizers_gt-0.15.2.post0.tar.gz (323.0 kB view details)

Uploaded Source

Built Distributions

tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (10.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (9.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded PyPy macOS 10.12+ x86-64

tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (10.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (9.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded PyPy macOS 10.12+ x86-64

tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (10.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (9.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded PyPy macOS 10.12+ x86-64

tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (10.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (9.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded PyPy macOS 10.12+ x86-64

tokenizers_gt-0.15.2.post0-cp312-cp312-musllinux_1_1_x86_64.whl (10.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

tokenizers_gt-0.15.2.post0-cp312-cp312-musllinux_1_1_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

tokenizers_gt-0.15.2.post0-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

tokenizers_gt-0.15.2.post0-cp312-cp312-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

tokenizers_gt-0.15.2.post0-cp311-none-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

tokenizers_gt-0.15.2.post0-cp311-none-win32.whl (2.1 MB view details)

Uploaded CPython 3.11 Windows x86

tokenizers_gt-0.15.2.post0-cp311-cp311-musllinux_1_1_x86_64.whl (10.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

tokenizers_gt-0.15.2.post0-cp311-cp311-musllinux_1_1_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

tokenizers_gt-0.15.2.post0-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

tokenizers_gt-0.15.2.post0-cp311-cp311-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

tokenizers_gt-0.15.2.post0-cp310-none-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

tokenizers_gt-0.15.2.post0-cp310-none-win32.whl (2.0 MB view details)

Uploaded CPython 3.10 Windows x86

tokenizers_gt-0.15.2.post0-cp310-cp310-musllinux_1_1_x86_64.whl (10.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

tokenizers_gt-0.15.2.post0-cp310-cp310-musllinux_1_1_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

tokenizers_gt-0.15.2.post0-cp310-cp310-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

tokenizers_gt-0.15.2.post0-cp310-cp310-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

tokenizers_gt-0.15.2.post0-cp39-none-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

tokenizers_gt-0.15.2.post0-cp39-none-win32.whl (2.0 MB view details)

Uploaded CPython 3.9 Windows x86

tokenizers_gt-0.15.2.post0-cp39-cp39-musllinux_1_1_x86_64.whl (10.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

tokenizers_gt-0.15.2.post0-cp39-cp39-musllinux_1_1_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

tokenizers_gt-0.15.2.post0-cp39-cp39-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

tokenizers_gt-0.15.2.post0-cp39-cp39-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

tokenizers_gt-0.15.2.post0-cp38-none-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

tokenizers_gt-0.15.2.post0-cp38-none-win32.whl (2.0 MB view details)

Uploaded CPython 3.8 Windows x86

tokenizers_gt-0.15.2.post0-cp38-cp38-musllinux_1_1_x86_64.whl (10.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

tokenizers_gt-0.15.2.post0-cp38-cp38-musllinux_1_1_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

tokenizers_gt-0.15.2.post0-cp38-cp38-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

tokenizers_gt-0.15.2.post0-cp38-cp38-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

tokenizers_gt-0.15.2.post0-cp37-none-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.7 Windows x86-64

tokenizers_gt-0.15.2.post0-cp37-none-win32.whl (2.1 MB view details)

Uploaded CPython 3.7 Windows x86

tokenizers_gt-0.15.2.post0-cp37-cp37m-musllinux_1_1_x86_64.whl (10.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

tokenizers_gt-0.15.2.post0-cp37-cp37m-musllinux_1_1_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

tokenizers_gt-0.15.2.post0-cp37-cp37m-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.7m macOS 11.0+ ARM64

tokenizers_gt-0.15.2.post0-cp37-cp37m-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7m macOS 10.12+ x86-64

File details

Details for the file tokenizers_gt-0.15.2.post0.tar.gz.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0.tar.gz
Algorithm Hash digest
SHA256 4e73b4465115cea3784ac906e79912b08e17bf28f8684b221097c59c5e69c25b
MD5 d861ea0cfe7de9fd9b649bef05c5654d
BLAKE2b-256 3114da07c5c796345c10315634be4dd841c9ec1c04c092f1cd1e95dbe694834a

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8bb443163825bc1202ce34215528669dc7e1be6ac26122b57c6ac39816e93706
MD5 efe2d29b0821bc36a89dea1a5b6424bd
BLAKE2b-256 08a351447abeee13fec70c787a54aa8d27628e64a52149b705dc816113f066c5

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dc4376aaae3aeff60ebd097bed892c8d46f01cb183ee7fe47d5708b88758258d
MD5 d0c45d1620f87d0c929a818decf60fbe
BLAKE2b-256 65216f757ecdeeb2015152daa1924fd6795f6f550841dccdfac58446154b673d

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7528cffa8ed60e249b16d7165fc587141f3cf26b12af8cffa81ed8a476cf103a
MD5 5633a3aa02c509c9e04afddf71dedc04
BLAKE2b-256 1e170b75756d53ba0cd0b63ee6ec6dbf26923af0d5795815b19ab7e025ec66fb

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e983b5922346987a0a4d5c78ec01b944619ed8ca51c4bc7db03212f5cf76ffb9
MD5 824adecad0d15305e08ceea5b73e724a
BLAKE2b-256 5f36ea0e8fe21a1be64987cad89a90e9aaadb14b19d3490dabf7cf68e6452876

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 66764020426f106de6e1cb2bd2343b12aada1e125de9283f9d5805185267a0fd
MD5 e97d38e28b025f5ca31beb2b7b44ee83
BLAKE2b-256 b7bcb231c14a228c5aa02aff7fa1192427934a8929c5eaa2ca208b4400dd5dd2

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea149fc97c0adc2a6f6c2e06503e3c5a52da06932ccfa650c10e85f2375b4a67
MD5 7b0457338433529eaead1a8b7e775124
BLAKE2b-256 89f150d0d462aac0b1a205315b5292f37a85d7a2cce15fff58c286043c1e54e0

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6fe84ac4c563af2976018a2621388408d08818b4c9fcb1d4fa7a54749cd897d3
MD5 fd7314518af6a7377466e22b64ed76b1
BLAKE2b-256 69032b4ed76d417226e2826df07de54b9541cc84b572d590acbe3c00762e74fe

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eccbad323c11bf382d19bb601bb0fb3135b07b584037e4932df79f787fc231ab
MD5 da1018c2650393406050c78c3465bff0
BLAKE2b-256 55160b36c2511d20fd73d0ff052cd14dcc86e7cfbae8d7c774e51ed62f1dd92b

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e0893caf6a2e2b77ec11baffe6450b47c3b68902a4b3a4b442da19fe3553d8a2
MD5 14a36df8ad23d3298e682b2f894294a4
BLAKE2b-256 569a62a5f306fe979c33d9163bc7cb68c5228d97c33a5e1f723feb006e11a635

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28847e33740588cf99fb8a02d0fb80aa7b91368f5e943dd2f90f7d86a1002aab
MD5 5d4603ac01e3b663f4f6bf1c00a89dac
BLAKE2b-256 174c79dbd1fde5c9b3d17266e7e62d1482e06121b81402fc84f1bc1709e93b8b

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74758b25e9f81cf5242beceb0b1ebc0fbab2ec1aabdbaf8f6efbf4a0cba4ddae
MD5 5576263465bf2ea98581561bf62ba4bc
BLAKE2b-256 c9cfefcbacc31ec79d70537045ca53af8abcd44c5b5c979eabef81452388b44b

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 925e7b0b633d02d24500689f3cc6638560111ff73ead161c71e47fb739371ab5
MD5 d884a9f00f1fcbdd93a1314487d4def0
BLAKE2b-256 6c0b5561c3080c4e9b67211cdf2172bc0a0673fc15205809ea78118f3ec75ef4

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9fa1c47aaba81d1193c018112989eadb30c07eeb266ef9c1890985f51dcb3c4
MD5 11d4e5e5d0e141091b8bb48e7d118355
BLAKE2b-256 8dd700b5019a7cea16d12e34ab95abd2e224eac67a3da7197d8efd9a95ffc23c

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57c6871e31e6e4e4c3b93e89822f9e8d3e08f172b023ba7ee55443029e6f32bb
MD5 8049e533ce2ffbf9922488aad219f75c
BLAKE2b-256 06c79f744cc13d95f953e54bcc8f87a702d339f51cdd5f9c699835fe0a276b66

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 10696bcf206ef9a556ec2cfcef76fd5da73bd885ea55cda368fe0cd1ba938c4e
MD5 73b297b6d16f67efe47b16df6d65d5da
BLAKE2b-256 1b9110fa4709d6124acceb4e4202df7598b421f116334190e3fe71d84fc9ecc7

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 64d7e0b048bf439d72e959e70f50781b06d7536a6535f1d298ef9c35700faf89
MD5 2ba973371454f061118ebc1f7fc12934
BLAKE2b-256 215da6cf8a98c43d417ec57ea1aff28223e0a99fb3115f524c1d17878dbb01a8

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc604d2e3c3bd5ae7c9a488cb23d82ead69be36085837f6e9ed1af2d2cd04e40
MD5 a2af31790386406ec67970addf14ebab
BLAKE2b-256 5826fc3512be23417561aa71ae2d8355dd7b7b201745f2cf8bff35e77c4cbda8

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a76f315d5efb613dd985225895c4658c3bcd7246efc7aeb46e23ebd2fbd8f6df
MD5 f98da0277d511d49ba82e365e1ea89c9
BLAKE2b-256 a973b2a5c93fff9de85ca2819bb18fc475c13b1f3253e063797eb9349877003d

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 11eed21a4420b76cc3b20401b13f0a869e981c3d24165f605c7fa4e0b1debb75
MD5 4d50c3c30f16777a6d3d9e90bb17581b
BLAKE2b-256 2dca600870966a6ecd1f4906dfe609409935c0b70422b73c080efd38a4df93b3

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cce3ce54159c41dfa8e776b4652d5a677be8fe62fdc55b1989e9f8bf4d36c3e
MD5 12733c9869f8c63195c394a6855a0c1c
BLAKE2b-256 57da9861a999eff0df13f5ac5e35cb3da76203e33c9ce820d55fc5137611da8c

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e721a6147af6e60263d4acdf4956dfa64fba814f1c694ab269c83ef9560caebf
MD5 fea6dfe67e2f9ff940257f9667569123
BLAKE2b-256 f6cbb655667a712c297deb3b6bf88242edc26c9c49d313efae7a6c1b7c77bece

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 05e55047c7af38588817611e82e773e8ae6c3eda32d3da8433c64581421739ee
MD5 6e4fe23ff23ccd3b39a1dab49afbc165
BLAKE2b-256 db02042602964a7158719ba92bdb31c911e33c8c6f64827d129940d68d934434

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f172957d4f6bca64351730351bd915eaa746e6ad2e7b3a89f4787ecaa2af4561
MD5 1be5d02e99c87c3399754e59d3f2e9b8
BLAKE2b-256 821a5a503b1b0791d1ac6b10bd4a4ba447d516bfec5b2d191593e272613e79be

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 418445d61820a746d4b28c1af08c9cee83653bc3c1bac66591a6889c72d3f629
MD5 2d7489c2c9c45ce26fd4d7d9c3f3b42c
BLAKE2b-256 3f010a29c9efb1bbad4eff017764407e307a26015e484d6d55b794ae2ae32905

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d15f95a01a23501080b3a17618b5f5ac9ff51d1ed07dba6cbb850ca563c7359
MD5 7489dbe77275f3136304648d4d4814c2
BLAKE2b-256 c35d7810281d5d2175e46f8f8ee178906133a249800d0e62af31896f4a8d9265

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3bfd5a90875ac555ea536c66eebb106ed09aa037a8a31d3d3d46d9faea20f092
MD5 338286a3dac00a7d454d73d7ad57e753
BLAKE2b-256 8851dd5b108c2a5e4f05396b9aed8158210bc704ad84ebf7d70b05f159c072f1

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f409d374eb6a82970fe56ac6846cd3dfaefdd2a8e51ccf971a1f4c55d8fcaba5
MD5 5d142de37e39dd146b080a3636b4b8ed
BLAKE2b-256 c62d38c20eb6451045313cdbc8afda1814c4e0db25fe86f3616a2c5dcd1e3084

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eaa4f059b94d1457a511652a4eb8e4a961281390fc4c06be96d6cda2fc985dd3
MD5 adabefd1bef0d6702c8d059b870230b8
BLAKE2b-256 19bda115cbfae3d802edec79a6f567f660e4a89bd10477ba8fb17ca7b80b098f

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e291acff96fa5bce16765943abfece942b8e2d9f924c7362ca50b7907b3cb981
MD5 7deb2dee24816d3cf96cc905dae76212
BLAKE2b-256 ac41e875b272bdc218acb7cf91d0271eba50944ecc8bf9b9c2111b7eee13a170

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 729b8ffc905ae0dd6052a6ed91113bc43033bbc17ab6700c236c64bfef0dfedd
MD5 c9275a7183cfdd97493ea55247c37e3e
BLAKE2b-256 53a0c7de11edd258649f9bca279e95d6ebc8986e0035c93f74bd36174559f71a

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b03c97ef6ef51ee958a8c3f4d512b2c4bc540165e9a6038a26728f21f2f10fb
MD5 d4c4c0b0285e248fe6d6577456163d7f
BLAKE2b-256 7927edc401572255bbbae4969ac3593c782354983337319022f9319d6956d884

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ecac1beebfa29286ca1f40d3540c0776b0153f87a8c7891b7a64e563f87e9b22
MD5 4f172fa0759591c4ade924d190caf278
BLAKE2b-256 e4859eb4c5e0e02506f1f233fe2741d290174d01c426769384f127b38d2dedfa

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cb72b51ba2eb429befa778e736310d5f147cbdab6b35fcfc276ff2c8f7c8915
MD5 dd0c23708ee27735ff0c8712f18e9982
BLAKE2b-256 0947dcc1d3ecb1e75517a1380ace446e90145be07c188f00ba56b9c02c46b7ab

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af0c74b7c4f512861b09f80abe0da653eff253f72ee8fa061a5065754d26466f
MD5 3705da1c5c49fa916adee16ff5c30506
BLAKE2b-256 01ee59751cd427c98e9126d6e8baaaa37e481eb73e8c7d6c0ae549f0b6712f94

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 07549a7acd8ca12172612e65af49139591c3a10c0efd806d19ca6466cdd5ad89
MD5 f2c5b2f664548a069de16bec23f067ae
BLAKE2b-256 53b4ddaf7e5b6d45c900a268a737dfb70ca42b1a57c3ab1b0b748039c2c142ef

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6765dae08c83bec9c514190f00982f35dc62f2364315e41c2714a611b020ecf1
MD5 243f08825081800c1419e096192f8966
BLAKE2b-256 aa6f967f82ffca77ad4bcae14c7e2ef661c249cebc7921f6d99ff5f2bff39bb4

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e609443f4c8ceff1ef2c601b7871f24ef9c50419c1762fb5e6f42ec7853f9c9
MD5 2ce7ac4da6df427855a116dec0ac9e14
BLAKE2b-256 cedd9b7d6b600929fdced7795f3bfaec8464cb1277224b8b384bd31bf9cad8f3

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 7de09be9aac8501cc6fcc47ac08bb421e9d38c491dc47876d3e18e1ed50c39ad
MD5 13bcd5be8ab1001d33c319be285e4551
BLAKE2b-256 bebaecae8873314e5811ecd6744d9984b218d084fb3508138adeaec82d0fbde5

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a3272d34706f426193ac9b8ec58f5b5456f45ca6341e4e5b4e76c132101e84ea
MD5 b7a6b8704429fae1275f94d023c22a97
BLAKE2b-256 c9e03908ad76195aa0d46e7d8258b42d194b4e3aab980693f23242d9cf97ab43

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 03282839dc8986aaf8d92c677e5cf4d33c35e50858530adb488a7cfb3745ffba
MD5 b6fbabdc7f455aed8382919ff852d50f
BLAKE2b-256 321124125f96df7cd46b304ac5114c18408cfc1a1d3442e5e143b69a0dc7d1d0

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 72ff49016b73728b2df1468ffe40cf6251716499704c2f20ef4f8f2a5a4737db
MD5 a8b722c215c9d2228be6bd1a2a636d97
BLAKE2b-256 ac059744fbc383df8f50892d704ee6619f7de950ad7e72873500b0294179e707

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02d6c2c2ed6827c123819a82ec5a0891414f435459212dfbf2b94e85c037dad0
MD5 98de607e389e17f56a37060250841a9d
BLAKE2b-256 e264656afbda2bdfe4f9b1ac7a598d74094fe4e3529214d1234fa6d671834a13

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94ece08a6f914f12c51914c64b1d391905cc95f0f636fe63cde30991b46765ba
MD5 bb40436c123dfdbd60cc9b82d842080e
BLAKE2b-256 44a2489dcb026434dd4e1c6cb956db17529ecc2985f8a83b0165cfe00eb9f746

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2dbc5dc8b7b0cddf57d82cfb02c7e12fe60719b1e99eaec7ccf0f3432a378ed
MD5 72c26249b7b9ff0b5495e8b6d44e4764
BLAKE2b-256 8989ade38a688c63bba3f6a855b5f66b8897fbe242760cc3e7b078a08fe13c42

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 624e0a4758ed0623cfe1941cd7d21b99316d4ef639b52b26fd15daf0142dd96d
MD5 bf51f8b5ff2491053df4a2f9476b5bec
BLAKE2b-256 e7c35e98aa3de312589321bb26cb67f8ac16150eef31936cb63f382bc6031e53

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 021fdbd966d77fa0120a13136f992002ecbfedf7ece5dd68a49cdb19b806a062
MD5 6b5f9095fbf7ade8152329bf53c64e8d
BLAKE2b-256 76a176439529c0e490d56f06b26f5cedb7a8d26ad9cef5fe3d2fdadbbeaddac3

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c0a657c4aa53ad88eeb113093859009a05c0d6ffe3850ee5bf5df9f006a78456
MD5 6cb49f434eaec273a0da7dee05c2b6eb
BLAKE2b-256 085d6e06364051417ff3e7450945194f470c794fecbf2610795327477fb2b797

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0d72ee7d76243c5e22afbfde12701f029ae49d18cbd4d5afa5f73669e1ec961
MD5 1de1a675c514a7fa48e78ba9fe6dfbc2
BLAKE2b-256 a98730249ee9618ec1811e7e6d11d55a595c7e74d19f2dd3abefa4c43e4a9480

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4d2fa37d5eb886c7311ff136e117482a6114111a3117d8057767516025a3302
MD5 0c20283ec2b256495195b9890a025c55
BLAKE2b-256 5aa67efc281b8fd2d73d7a1b952c94aa7f2e247d046c6481a0c3da84ebd6a051

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d831c6337e9ac43ebd06d50aeeb9e60a3b3c3c1d90e61548784cb513882353a2
MD5 fa0769650d19571d94eefc0808500992
BLAKE2b-256 f92fde3f68eb17ef00dcbae40e5d3ad5578fb63f0ed18c8df763a5ea00a6de12

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 77fb3f947be4acf1c6d0b94853bb6d4f680bffebb4622b12901b7b258c434c14
MD5 b0beec7f47a89171c66c83e6a60c6290
BLAKE2b-256 7a04eaea2f90936bf28dcf8a9b4afe91e61d43217e002bf4698fafaf0cfb57dd

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 93723ce6748ed5276c6158b61289933d0a80c7da31db5e0242eec58a739aaa13
MD5 0bc16b277043b776fb94559f1d0eb05b
BLAKE2b-256 cc7279f257f871d6d1fa5a97a0752ae6a3a23ecc4c60ecacbc730bef42c72e37

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3b70064871835af439f30ca9332e4f2bc3e66292f9b93486c4f1d98b5ba71c1b
MD5 813812f372d4a220316181b38a3178de
BLAKE2b-256 9fca3817029aa3286ff8f571daf4a9993d549589645e88677c55e55fd5173520

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22f823fc5af46a311e76a62123a73d5a8d4d272ed14ff9f33b43c0ee8b047b91
MD5 f580c1970ff22d5b58b81e3a3bac1350
BLAKE2b-256 cc18fbccd81a8281f31fd88257466b9f8075512b9f14946664a12811ea02ebad

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a1ad9223020ed073972308a39fd6d3c21662e5f57f06a06737a8be3a02f75e1
MD5 7423b4e14806c48efb8de9239003441e
BLAKE2b-256 7a937581d3b002316bad0310472998d39709336482cafe2f944cb904d85bfd27

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 089ec29aa98012ec21cd2bbac19aa2692aab7639f71525a87d7d594018245f69
MD5 1bca199ab311bd1d9bbea3c90f256a95
BLAKE2b-256 765e8a15d78276c3dc45b15c82779e10681e096690495240e4d4271c2e446a6a

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4325e25f4bfd8d577be7d8bde67cd56fccc8ac62999984c68ccc12ae1852b6f1
MD5 1b42eccfc22d19bed8cc653f80c4c515
BLAKE2b-256 520adbcc4dd1144f5c6a65a0f9d57c04b1f241cc026b1e294b6ddcbba4fd5b22

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 220db1489beaf5e7970e4a1e2b8ffd9aede1b77507d4b463688b936511c9781a
MD5 46569b8b4621cc00bff2b3ab953648dc
BLAKE2b-256 7f0e1f0dd71f313960512057849f7ab363d32ef8a62a585753988a42510a8144

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a57b7caf6bc4514b55873de28ca81774a3712571633f84032265a8a215b07ebc
MD5 95d1c8e2fbacc7d9bc8dd81a2b8e5301
BLAKE2b-256 211cfc12c1e5723e9ae325d15868a0cadeec030751c672d3ea0965f3fcc86f08

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 590f5fc8d245cf0fea2c60dc624010fbfe54d18212c22bb9e4d9e9525304d8ea
MD5 9dc295c58b91032f0a2a66c59c14e82b
BLAKE2b-256 832b21beb4d80c0c6460e77bf767a925771e61b6efef516c1cc7fd74d9a1c7cc

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec729994de6c171b20167099414f71cd5dc121684cefc91701c691dc9f4cf19b
MD5 2e3507cce205d484068fb054a20aea3c
BLAKE2b-256 69f978069da4faff060a339f6b60412cf461ce93380e0bc35a923b54d8ee5073

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 4c01fbcfa8de94cf2b04894d8f9fe036b9b67deb56372b9e68c02a15537f20d1
MD5 6e5e19dfc19d23c299b40f37a5df618e
BLAKE2b-256 45936e65ca583e4ee92f729d298600dd8808eee8c5113ccb54bb6e2f0d534a26

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-none-win32.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e6a7c2bde8ee234df2da7c52309d789ef1c068c126bdd6d1ccc486a2a57c6410
MD5 68e2a792ea2454fdf252aca75bd21838
BLAKE2b-256 c4145f4afb2fda7308e9c041df9ba9e8a42c6aeba2b050c4787b556c30cc4ee9

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 74b1e434ba5c9b08cba2d407d10edd3ef4a8a3bffbd9e2f4aaaa19d076bfb56a
MD5 969b2908ececa122ad0ca71874f7785c
BLAKE2b-256 a300ed239fc69fe01ebe92c8a71f68114f18e17567a3804829cb996f6493c5ee

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 75a197ebd6ce3d7317d4dc0ad05dae58b079a11b87e87a5bb43916a8933b048a
MD5 ff5fda86bb14cc04bcc38d0727dc6605
BLAKE2b-256 857e29fae4cbcda643967fb3ce0d662546fc4cf5a40a1cea1dd3e412d6f261ba

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1c657e7e71dc7271c4081856e1656d4da5998af969d6f0e73925458bb1991b7
MD5 24b4c460e72eec3b7853330dae880a11
BLAKE2b-256 fbdd8f5a2449c15e3db8359005ec22fe2d7252974689d1291ff73acd3df6e344

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96ca098b51556d599d487725c09777ad441a9ee184a1d85fccb8c6e8ab4c7b32
MD5 f3953274da116a5c13387983b8c15a40
BLAKE2b-256 bc9bdf29a2e1abee186458ddbede5dd182dd06902a0cf21098c2b3487171bf38

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8207087ae6e6f62b6db6357b71b1749d21e84438cdc59f80fe5f7d44bd50d925
MD5 3be7af1cc0ba3dbc84f4c413fb43157d
BLAKE2b-256 40bd6c3d7346fd4e8eaed9dcdf8f12d6c94db03a15d09758187627b4ffa9534b

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4cc6cf993ec8b65e7ab73ee2226d8b03d20fc95dd1e5e684dfa58ebf54e7a34
MD5 9184ba55619e432f1ec686568acd7e56
BLAKE2b-256 9a59f96d3e38f2f1730e8d276dc119cfe47fe554d289537d44a4c91a8f8ecfaf

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 128747f66996cee81d27724dbba6e8bb301cc86b942eb5716b754179fe60afe1
MD5 5b42e1cc156920820bd0b9822b6353e8
BLAKE2b-256 5202a740e7d4fde7ef0bcd565d098edd75ef304cdad34297225ea857ac7242ae

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 968efeaf243204661ff0d0d2fc8fa41ffc91b07baccbbc65b2298241db46dbaf
MD5 c4b7fdff680568901adc7cc08f781b37
BLAKE2b-256 243d85a5ab947039ddd5d0ba4aed1b644155b553dc490be0ba7fd0ee3bf1539f

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85a2c0ef7f759cc7ad908241b20294af566c248aec98d68405fdf6d118bf9cea
MD5 e89720056dfff8c8acea6f2487870234
BLAKE2b-256 b465acd52014b36118f19ab8fb5dbeee1e7836c78d6d33dec6ba0816de7d9dac

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df7c7afe4b07cebddf0e92f2ebbc2124f25855510bd70b1f5e0211a5228df084
MD5 849a68bda4178220df4868cb2f9785dc
BLAKE2b-256 d12f4e5927937e1c139368f97c4a9363f8ac0f37b59276a8ba6615bb366434c9

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 ae317bac2bf3623f18756b647b979b3d6cc8770f8f20daef97a9113fab9e2809
MD5 f9c6c9c6ee8705107a3574005017b483
BLAKE2b-256 6e69dcf718dc6a129a18f7f2a3f4ed49c5e53dc897c13e187d1efeefcf820fcb

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-none-win32.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 1f5e57743eebac4a5ba921a86ca83a582cec3328c4c83f53333ad6fc8a9f304f
MD5 6962ff9ce3a0665f3fd3d36058fa2e95
BLAKE2b-256 55148cca21ed9504108d5028e094f832996d335351d1be2785675979e71ba963

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6371b466f80f4b4882bd1c381a5cd2c4d8200c4ede2ca4a44a8968b569fe4221
MD5 2037441bd92e0a22b9232bc86496947b
BLAKE2b-256 170e424a4e90861126c254393e4bc0efb124f67ea553965a17473a15978b49c2

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 87845cfe88076016ad2cf74530cea2f4a590d1532e52f9461001463bb7d560ee
MD5 da52cd9f2ba87e878464511dd7d51ee4
BLAKE2b-256 8e4e787f018ab7712463f9a9cd935f4f751dcfac2d3bf72cc0f9abb29ffbc8a1

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a6463779fbda2be254ce98971a4fccd13beef043cc4bdad46df80e743e264b5
MD5 18415efe1c003c1766a6db65656af787
BLAKE2b-256 18449443c27a4926648e23ad037461f4e2d5a6f104baa40c73e0fe4f66b527d8

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 747fabe0d7a10bdac3345adb336088293985bf94ddc5632e9e718d84db486586
MD5 38c260b181b015fc2ca2fa0a4b9dfe1b
BLAKE2b-256 1157a74316249148995d8691f42b4f0553eeadfcb7f5683de8dce4673e601e1a

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b83f9294eac102408ea11f109087d00623e55432a914c4f30a19546c3d1c482f
MD5 34ee25ee572e099f71bc9eb01fbc11c9
BLAKE2b-256 0f0a02ad8979d1eefb286fa430227f5bf42f5290546ec223db5d3c9b44f24da1

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55368efd5bb7ec9a04182ebd04649e80258080ddd6f8d50816a5acaa00c11a6b
MD5 8d31ff39ca27424627e7a5ed626e65d0
BLAKE2b-256 073968311b5ea9bc9e849d8050d365cee417e59a06d2bb64d2089be74106ddd9

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bed494e1ff469616377db1b266aaa8015d63da1de74118ac168310b1a484a80b
MD5 163e06430369990f68b98e259a389f6d
BLAKE2b-256 7814d32a94e49ea240c57d556d5bead2934a3bf878a3d31f5021bce1dbb8eaa8

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4ea1269a3a5f49a4b9476092d39d9b27b777d519e85336df30b7c44b433370f1
MD5 11e4b04515ffab14d2e6b5483bda05e2
BLAKE2b-256 39dfd65649d4b6f496ea644d1744df5d6227a5f845d4dea5bb072cd744dcf552

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3f2e19923dae17236fb5ea39d2748c03f3de237e2da11f02fd9b26c484202aa
MD5 221029118a67b5c76911ec841c1401d2
BLAKE2b-256 4feebb4f8ea824a5720a6162761278d54429138ed4a5b47d667c9075fe5ea435

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a1b22feebf0dd1b53031daeff505fa5658c886df2e1bcd32d85242079efa012
MD5 fc97793ca00c05e992c8db34d1e8b1da
BLAKE2b-256 48c53ff258385680f081f7477422775c7969164eaed441c307994365bfc423c6

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 1a03c1625154e836ccb63321d45085a6146ba72acbef42934ac2f11695898c4b
MD5 dc2a15db1ce0803cae781d84828a9bee
BLAKE2b-256 2407a5f04c5ad4daf49eb28e22d6fb07dab919b4b449876d5f847ba94bc48614

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-none-win32.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 ee2b14d890e17ce0bb3c4238dab832ae2af04575da2747c094a3825a496b8b5a
MD5 9cb1f73f5e116390ff1ecdb265477c34
BLAKE2b-256 5721cc3879e1eb35877d337f6488c5129930af0b40fbf0e98e4bcf9f6e46f964

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 08c54e15f4e6b4c628bb097c929c4542010fecc2a4565c139b8fecfce542342b
MD5 3e7f7085496107ad6b02a913afd01964
BLAKE2b-256 4e7e4e1abf31707c57435517681bb637a187a1a56b70c5f74c7e56060f4260f0

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fdf2c20f0045a592f9f587d1aa9074685866ea339355ca3f0e9629b807f2c9d9
MD5 f05494faa8f8da4a6a8429f7ca5b6340
BLAKE2b-256 581c9f506b710b3595484414efd57c67b81d446242bf98741a7887bc44e0b4bd

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64ca2c6c59af389909402d3841d339b7234b5f25d9c978e20f96cf7693d20572
MD5 396ed8ead80151bbb8080b94f698cd10
BLAKE2b-256 4be2292f4101c7b26e095df444bbe92634af81f56d634e6021cdb94f6bf23914

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56192015e447197f073133a087a28bfd50018c2719607afad8be259fddbccb7e
MD5 2690706763cc31cad79c502fcd71bf5e
BLAKE2b-256 d330afb96034a41de9cc5f41ec7a1f6a05ad3116f40e2c1d47d9c2f5dbf333bb

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f7097f9ff9e5ed88bed0f763b9e7b211e93b37f2869aa3172278a6cf9a6483e
MD5 8d15ecca8f5893db7e94a78d9bf4c7d3
BLAKE2b-256 05b70dc61a780b2a4d1f0eebc1ac4354eb9cb3e30bf0374a191aab603c320d5e

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef5e05d911d1d24b266acca3adf8f91c790ffb25593f5a954908693ed4547d20
MD5 b729699d3199697bae8c8778860f954d
BLAKE2b-256 eb48a464793d460133202c333aef6c51380c35702340b18e6e235252bb2cdff4

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db549d7b112cdf520eb845036bc8d99321ef92c7cde74583df640bdbba1b853c
MD5 d7d23b992043f60f86576e93c005cb63
BLAKE2b-256 a7469ae651a5e80ce5ba7172d20f87390eb74f0fc4e1bcd1f15787c16548db56

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2265d7de168bfeb05729912e153c104c5650d79d80b915955482cf438b3baddc
MD5 644146127ec1b359214066254ccdce42
BLAKE2b-256 d1645b41d6fdc6415c9b717b91008d83a765f63e16c98b4a69b09b6a364e7580

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-cp37m-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d574febddb0a6c60f3755f4f4309e769f7daed266c45b8fc82dc1ad6f527fc34
MD5 1e10845c7de65398f693baa3237af3aa
BLAKE2b-256 3fe4cb284c0c95263335e962b05013758a79b655f63ff2c273f8ead98058235e

See more details on using hashes here.

File details

Details for the file tokenizers_gt-0.15.2.post0-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokenizers_gt-0.15.2.post0-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf89500762a32f6ea207552f95e53de77debf5f251ea9d0030537e907d103b94
MD5 51b4d0f71170c0e6708f79c0fade3d60
BLAKE2b-256 664077ad7203c50ed026df7be033ba1a5e4183bee42f13192a30aa3097ed278d

See more details on using hashes here.

Supported by

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