Skip to main content

Fast and Customizable Tokenizers

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 setuptools_rust
python setup.py install

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)
tokenizer.train(trainer, [
	"./path/to/dataset/1.txt",
	"./path/to/dataset/2.txt",
	"./path/to/dataset/3.txt"
])

# 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


Release history Release notifications | RSS feed

Download files

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

Source Distribution

tokenizers-0.9.4.tar.gz (184.2 kB view details)

Uploaded Source

Built Distributions

tokenizers-0.9.4-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

tokenizers-0.9.4-cp39-cp39-win32.whl (1.7 MB view details)

Uploaded CPython 3.9 Windows x86

tokenizers-0.9.4-cp39-cp39-manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.9

tokenizers-0.9.4-cp39-cp39-manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.9

tokenizers-0.9.4-cp39-cp39-manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.9

tokenizers-0.9.4-cp39-cp39-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

tokenizers-0.9.4-cp39-cp39-manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9

tokenizers-0.9.4-cp39-cp39-macosx_10_11_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 macOS 10.11+ x86-64

tokenizers-0.9.4-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

tokenizers-0.9.4-cp38-cp38-win32.whl (1.7 MB view details)

Uploaded CPython 3.8 Windows x86

tokenizers-0.9.4-cp38-cp38-manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.8

tokenizers-0.9.4-cp38-cp38-manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.8

tokenizers-0.9.4-cp38-cp38-manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.8

tokenizers-0.9.4-cp38-cp38-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

tokenizers-0.9.4-cp38-cp38-manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8

tokenizers-0.9.4-cp38-cp38-macosx_10_11_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 macOS 10.11+ x86-64

tokenizers-0.9.4-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

tokenizers-0.9.4-cp37-cp37m-win32.whl (1.7 MB view details)

Uploaded CPython 3.7m Windows x86

tokenizers-0.9.4-cp37-cp37m-manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.7m

tokenizers-0.9.4-cp37-cp37m-manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.7m

tokenizers-0.9.4-cp37-cp37m-manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.7m

tokenizers-0.9.4-cp37-cp37m-manylinux2010_x86_64.whl (2.9 MB view details)

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

tokenizers-0.9.4-cp37-cp37m-manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.7m

tokenizers-0.9.4-cp37-cp37m-macosx_10_11_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 10.11+ x86-64

tokenizers-0.9.4-cp36-cp36m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.6m Windows x86-64

tokenizers-0.9.4-cp36-cp36m-win32.whl (1.7 MB view details)

Uploaded CPython 3.6m Windows x86

tokenizers-0.9.4-cp36-cp36m-manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.6m

tokenizers-0.9.4-cp36-cp36m-manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.6m

tokenizers-0.9.4-cp36-cp36m-manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.6m

tokenizers-0.9.4-cp36-cp36m-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

tokenizers-0.9.4-cp36-cp36m-manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.6m

tokenizers-0.9.4-cp36-cp36m-macosx_10_11_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.11+ x86-64

tokenizers-0.9.4-cp35-cp35m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.5m Windows x86-64

tokenizers-0.9.4-cp35-cp35m-win32.whl (1.7 MB view details)

Uploaded CPython 3.5m Windows x86

tokenizers-0.9.4-cp35-cp35m-manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.5m

tokenizers-0.9.4-cp35-cp35m-manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.5m

tokenizers-0.9.4-cp35-cp35m-manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.5m

tokenizers-0.9.4-cp35-cp35m-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

tokenizers-0.9.4-cp35-cp35m-manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.5m

tokenizers-0.9.4-cp35-cp35m-macosx_10_11_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.5m macOS 10.11+ x86-64

File details

Details for the file tokenizers-0.9.4.tar.gz.

File metadata

  • Download URL: tokenizers-0.9.4.tar.gz
  • Upload date:
  • Size: 184.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4.tar.gz
Algorithm Hash digest
SHA256 3ea3038008f1f74c8a1e1e2e73728690eed2d7fa4db0a51bcea391e644672426
MD5 4b076cbd2afbcf16eedcf09533188d6b
BLAKE2b-256 236e89019979dc7a3a86f36da5de707cf2eec72046bcb8656305a26df5c85ca7

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2479ef9a30fe8a961cb49c8bf6a5c5e2ce8e1b87849374c9756f41cf06189bdf
MD5 7d709f1ef935172f6ebd8e342222253e
BLAKE2b-256 1dc5eb1ba6537202f3751b4a2245d1c7e61ad09f4668e395fe2beebb5e512595

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c496748853c0300b8b7be916e130f0de8224575ee72e8889405477f120bfe575
MD5 92b2d10f01bcf47b7414db145b33b990
BLAKE2b-256 3b05f0b576231c991bf3faaebff921729e017a91ff2f393e39ab54b4b78e202e

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp39-cp39-manylinux2014_s390x.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f79b57a4d6a1aa8379a931e8ee54cb155cc3f5f1ba5172bcdea504dbd4cb746
MD5 54a92770b72aa800ae97265f0404f712
BLAKE2b-256 443176e5395c7fc65ae81a6efbe37ba74f2b3932b566c4ca95d932c1f845a980

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd46747f5c7d6e1721234d5ec1c0038bcfe0050c147c92171c3ef5b36d6fb2a9
MD5 086ba3cdd7e40287d87012e23939b64e
BLAKE2b-256 c4a133635bfa99dd2318e1b55fe85edf292337299a040342d4549e0e8b21c90f

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15440ba1db7c7b3eb7b5881b276555e25420ce14639926585837b7b60ddb55a8
MD5 5a898d00afb00e8f6f1da269bef18153
BLAKE2b-256 da602d8bb685df13f04a4cbdda83638e4bce41c2b450bbcc9de322ed289b4bee

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3ea6d65a32c8b3236553e489573f42855af484d24bf96ab32a5d6d1a2c4b0ed0
MD5 77b034b7e1acb31382bdee55aa34aba7
BLAKE2b-256 0e799b734a29f80350818f2d81dd7a553ec07b64050179eea5e6cad4c73113bc

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 807f321731a3466b9e0230cbc8e6d9c5581d5ac6536d96360b5fe1ec457d837f
MD5 3e5018f9e1363fe822a989418c971557
BLAKE2b-256 8d762e615a419aa2dba2a4c22cac1d12e1b86c29468864f439a1fb6aaf7c0a86

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp39-cp39-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp39-cp39-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp39-cp39-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 d518ef8323690cd4d51979ff2f44edbac5862db8c8af125e815e41cf4517c638
MD5 31a8943dbfc274b4034328a5335bff8c
BLAKE2b-256 3193d97f8035665f271ca2a626f6c8d958ddddc79be3793d6dda9f78379361e0

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a3180c8a1cb77eca8fe9c291e0f197aee202c93ffdea4f96d06ca154f319980c
MD5 ef77f7778264e692da985918f7b72fbd
BLAKE2b-256 afbba4d1b4b50fa297fedeffb41ea136860fd33aaef0c011ee03a9444268a1b4

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1764a705be63fb61abcaa96637399f124528f9a01925c88efb438aefe315b61b
MD5 6fa082139420e7a05e088a7f646bb1d4
BLAKE2b-256 045584ce9c31b1171b722f6ec2ab6265157ca45db630fa3e1f706709e9e32a16

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp38-cp38-manylinux2014_s390x.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96879e21be25b63fb99fa7d65b50b05c2a0333f104ca003917df7433d6eb073e
MD5 7bbc06f0067e916df68a5bd1eb21e218
BLAKE2b-256 8b9cbd6c43832c030b579c1413448a7df1549fc200263f63100230f26dddef14

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac4c0a2f052a83146c6475dc22f9eb740d352b29779ac6036459f00d897025b8
MD5 e8324a80c0456c28618a4d259c9a4b93
BLAKE2b-256 f40d081f153c769eb624d8610ba2f0d1efca0b9ff2e0a53e4f1fc368128aad0e

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abdbd169738c33e2e643e7701230f43c2f4e6e03d49283d4250f19159f6a6c71
MD5 ac6feb63b259e0428fa276c28b39b2ed
BLAKE2b-256 8c8c2366f24206e8bf38c82030ae95649604d025bae04b52b44c236567e23221

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 31184c4691aed1e84088d7a18c1000bbc59f7bedeec95774ec4027129ea16272
MD5 35d80a88fb87e2b7b941d4b689690d5c
BLAKE2b-256 1843e05d164b93ff02dbf89c7f661fff22dbb3e2fbc2eb9a42dc1dacbf947f41

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c60b8ba2d8a948bb40c39223a4b2553c7c1df9f732b0077722b91df5d63c5e37
MD5 186d03f022e1b2434960a04e9a61c3b1
BLAKE2b-256 5ac164bcb9670dd7145fca376cb4e3924116cb00bb59b75067aea97b1675f103

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp38-cp38-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp38-cp38-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp38-cp38-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 06e1a1c50c7600d8162d8f0eeed460ad9e9234ffee7d5c7bcd1308024d781647
MD5 cb0a6f41a338926a314543ce655b91d1
BLAKE2b-256 449394798ddcda0e2f8036cc6760b4e956651abd234ec70398e802eab97840dd

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f3351eef9187ba7b9ceb04ff74fcda535f26c4146fe40155c6ed6087302944fd
MD5 6e708f1c2cc3d9329ff34b5872fda612
BLAKE2b-256 b1132f37147c56b9d598fa84663eaa06554b2048d60826645fa901106c8d0195

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 535cf3edfd0df2c1887ea388691dd8f614331f47b41cb40c0901a2ce070ff7e0
MD5 254fc8c662b0aed8dd50426861d20d04
BLAKE2b-256 0c01cec6d529ca14355915b83da1e784bc2df75260c0a4e7c2d4c92a3e1090b6

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9de00f951fa8c1cf5c54a5a813447c9bf810759822de6ba6cfa42d7f503ff799
MD5 2503e9785fda37f22e8fc35a43777942
BLAKE2b-256 a4115ee66dfdce7add391ec6eb7d52a82a86da52def9a389ae116700d5cd1f1f

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d8ca7daa2f2274ec9327961ac828c20fcadd76e88d07f611742f240a6c73abe
MD5 071241b88e8459c0cf95b11a783d34dc
BLAKE2b-256 dc0d67ac1f5ff5128f003513b078a9ac43db1687674702ce6a72b0866f4acfbb

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a03c101d8058c851a7647cc74c68d4db511d7a3db8a73f7ec715e4fe14281ed7
MD5 d7d711b9d2efc64b1d96e2ff4b30d0e2
BLAKE2b-256 33e97ffd5ba6a52fdb2617b2c9fc1e33d12c361517859b187e843b2859b1505f

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 da361a88b21cd141441fb139d1ee05c815103d49d10b49bfb4218a240d0d5a84
MD5 180bc72e227ab9bb61a572cdb5279e5e
BLAKE2b-256 fb3659e4a62254c5fcb43894c6b0e9403ec6f4238cc2422a003ed2e6279a1784

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b49f17c2ac2bf88875a74d63e8070fd5a69e8c3b2874dee47649826b603a3af1
MD5 0e99cdf1e1a0a3ae824c5628e96494ba
BLAKE2b-256 8e36d6c927c578f204bcb210893ae3abca660419bb39be974c1d17d33275afa2

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp37-cp37m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp37-cp37m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp37-cp37m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 d2824dedd9f26e3757159d99c743b287ebf78775ccf4a36a3e0ec7058ee66303
MD5 6e4b12cc24d854c172b9659e11e627cf
BLAKE2b-256 b8ec6d009ff69a9fdc2debab4a8f6c3e47afebb505bdea335187bc0bbf4a618f

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 53395c4423e8309b208f1e973337c08a3cb68af5eb9dee8d8618428fd4579803
MD5 a5750122e6ad73d87f91480f04870507
BLAKE2b-256 b9bc5d61cd272307a465c72106545b656b8317ed491fd1ea0b23a23d2dd89d6d

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4a5ddd6689e18b6c5398b97134e79e948e1bbe7664f6962aa63f50fb05cae091
MD5 5be6ee8ba6ce6b7c30bce0ee1a9479bf
BLAKE2b-256 797afe7a70352bb6c2d4a3b5b1a5b47a338db0592eb742e1f583c357e211c5d3

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp36-cp36m-manylinux2014_s390x.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 427257e78b71e9310d0c035df9b054525d1da91cc46efbae95fee2d523b88eb9
MD5 a5fe78e2f66d4a6c9a5e5a4b39c44002
BLAKE2b-256 99abac6b7d775c34441f99e04489e333d40ef66cd79b2fa13103d495eced071e

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c83f7a26d6f0c765906440c7f2b726cbd18e5c7a63e0364095600c91e2905cc4
MD5 0b5599e725a317616587c86aa19b0f16
BLAKE2b-256 ca4072c5a9e5ca67cb02681bf3641267b622b39c31b298ffff81ad3cfdb02a1f

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cf5b470b2e06aadee22771740d87a706216385f881308c70cb317476ec40904
MD5 c36a4a91cd31f26daf2ab293cd02bd25
BLAKE2b-256 3bb758b46012d59d4d75b10fd8f3d41884153fb7a402c510ecff10076bbb4a94

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4fd1a765af0a7aff7dab58d7fcd63a2e4a860e829b931bdfd59e2c56ba1769b9
MD5 91a84447978e082874d81d198dcb7f6c
BLAKE2b-256 0f1ce789a8b12e28be5bc1ce2156cf87cb522b379be9cadc7ad8091a4cc107c4

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 58e1904c3e75e37be379ee4b29b21b05189d54bfab0260b334cff6e5a44a4f45
MD5 2d2ef6d9b165f8dfb8f480490f990ee7
BLAKE2b-256 5ff7b7a4861a66660ca686df9e50dd3669b006bbe68120cc01f81afe4d76e2cc

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp36-cp36m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp36-cp36m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp36-cp36m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 2dd1156815cf2ca2a0942c8efc72e0725b6cd4640a61e026c72bf5a330f4383a
MD5 3cfb8cba83463de76e608015436ca78d
BLAKE2b-256 b54d63115861ab15c97fedeaf445c648c56f697462ad5bd562e6b65570b7960e

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 1313d63ce286c6c9812a51ea39ae84cf1b8f2887c8ce8cc813459fdfbf526c9b
MD5 378a951dce96a4242005b357ea09c30e
BLAKE2b-256 583eb63e36ec60eb1c720a1368f44f1cc7c78ea762dae192794b25761398e8a4

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp35-cp35m-win32.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b57fc7f2003f1f7b873dcffd5d0ee7c71f01709c54c36f4d191e4a7911d49565
MD5 0e9edd3ffb0570c927387960e85c2ec2
BLAKE2b-256 27fe9aa96b32e25f1f39c4b29415f5e15358c8c47025d6c2c4e1df8e7e37a1f6

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp35-cp35m-manylinux2014_s390x.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bce664d24c744387760beab14cc7bd4e405bbef93c333ba3ca4a93347949c3ba
MD5 c26ba70d468dada405f37464a3865038
BLAKE2b-256 980ea393ff0372ef623ce1396c19570b3258880bc0570f911dfcf16781f802b2

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp35-cp35m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 800917d7085245db0b55f88b2a12bd0ba4eb5966e8b88bd9f21aa46aadfa8204
MD5 52312b3af87424b989dc1878c6f3743c
BLAKE2b-256 ba7de2b59fd522c22bdcc96b0b2051a18bbedf0a2f273d2343c1239602467d06

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 768f36e743604f567f4e4817a76738ed1bcdaecfef5ae8c74bdf2277a7a1902d
MD5 a5d31b8f148dee48c7b5d6e7a6940577
BLAKE2b-256 7e46e28bf5ec9a1f28043bd30ffdb92792d24d1d6606543990dc3d7da83c7419

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 89f816e5aa61c464e9d82025f2c4f1f66cd92f648ab9194a154ba2b0e180dc70
MD5 8b95ddd7c03a5b24573bf06be21774a0
BLAKE2b-256 27761c1a45063f4379dac8545e78f2d7033e3be95a58230c9c14ea5262cb3c89

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 543dcb31b8534cf3ad66817f925f50f4ccd182ed1433fcd07adaed5d389f682b
MD5 8faba1f359644a55429f041de930ecdf
BLAKE2b-256 215ae61033d336d82d51988e1d911e823effc86dc34b1bf5afbdf33de6e1b354

See more details on using hashes here.

File details

Details for the file tokenizers-0.9.4-cp35-cp35m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: tokenizers-0.9.4-cp35-cp35m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.5m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for tokenizers-0.9.4-cp35-cp35m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 082de5272363aee13f36641065a3dd2d78f5b51486e3ab7d6d34138905a46303
MD5 6a54ff0b541e1135fa015e077effa08d
BLAKE2b-256 f443a9b0e410ed4b355d374ba17889d541f9f3105d809ff6cc23409034a78139

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