tokenizers-gt


Nametokenizers-gt JSON
Version 0.15.2.post0 PyPI version JSON
download
home_pageNone
SummaryNone
upload_time2024-02-19 01:41:23
maintainerNone
docs_urlNone
authorAnthony MOI <m.anthony.moi@gmail.com>
requires_python>=3.7
licenseNone
keywords nlp tokenizer bpe transformer deep learning
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <br>
    <img src="https://huggingface.co/landing/assets/tokenizers/tokenizers-logo.png" width="600"/>
    <br>
<p>
<p align="center">
    <a href="https://badge.fury.io/py/tokenizers">
         <img alt="Build" src="https://badge.fury.io/py/tokenizers.svg">
    </a>
    <a href="https://github.com/huggingface/tokenizers/blob/master/LICENSE">
        <img alt="GitHub" src="https://img.shields.io/github/license/huggingface/tokenizers.svg?color=blue">
    </a>
</p>
<br>

# Tokenizers

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

Bindings over the [Rust](https://github.com/huggingface/tokenizers/tree/master/tokenizers) 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:

```bash
pip install tokenizers
```

#### From sources:

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

```bash
# 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

```bash
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

```python
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:

```python
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:

```python
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](https://github.com/huggingface/tokenizers/tree/master/bindings/python/py_src/tokenizers/implementations) 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:

```python
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:

```python
from tokenizers import Tokenizer

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

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


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "tokenizers-gt",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "NLP,tokenizer,BPE,transformer,deep learning",
    "author": "Anthony MOI <m.anthony.moi@gmail.com>",
    "author_email": "Nicolas Patry <patry.nicolas@protonmail.com>, Anthony Moi <anthony@huggingface.co>",
    "download_url": "https://files.pythonhosted.org/packages/31/14/da07c5c796345c10315634be4dd841c9ec1c04c092f1cd1e95dbe694834a/tokenizers_gt-0.15.2.post0.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <br>\n    <img src=\"https://huggingface.co/landing/assets/tokenizers/tokenizers-logo.png\" width=\"600\"/>\n    <br>\n<p>\n<p align=\"center\">\n    <a href=\"https://badge.fury.io/py/tokenizers\">\n         <img alt=\"Build\" src=\"https://badge.fury.io/py/tokenizers.svg\">\n    </a>\n    <a href=\"https://github.com/huggingface/tokenizers/blob/master/LICENSE\">\n        <img alt=\"GitHub\" src=\"https://img.shields.io/github/license/huggingface/tokenizers.svg?color=blue\">\n    </a>\n</p>\n<br>\n\n# Tokenizers\n\nProvides an implementation of today's most used tokenizers, with a focus on performance and\nversatility.\n\nBindings over the [Rust](https://github.com/huggingface/tokenizers/tree/master/tokenizers) implementation.\nIf you are interested in the High-level design, you can go check it there.\n\nOtherwise, let's dive in!\n\n## Main features:\n\n - Train new vocabularies and tokenize using 4 pre-made tokenizers (Bert WordPiece and the 3\n   most common BPE versions).\n - Extremely fast (both training and tokenization), thanks to the Rust implementation. Takes\n   less than 20 seconds to tokenize a GB of text on a server's CPU.\n - Easy to use, but also extremely versatile.\n - Designed for research and production.\n - Normalization comes with alignments tracking. It's always possible to get the part of the\n   original sentence that corresponds to a given token.\n - Does all the pre-processing: Truncate, Pad, add the special tokens your model needs.\n\n### Installation\n\n#### With pip:\n\n```bash\npip install tokenizers\n```\n\n#### From sources:\n\nTo use this method, you need to have the Rust installed:\n\n```bash\n# Install with:\ncurl https://sh.rustup.rs -sSf | sh -s -- -y\nexport PATH=\"$HOME/.cargo/bin:$PATH\"\n```\n\nOnce Rust is installed, you can compile doing the following\n\n```bash\ngit clone https://github.com/huggingface/tokenizers\ncd tokenizers/bindings/python\n\n# Create a virtual env (you can use yours as well)\npython -m venv .env\nsource .env/bin/activate\n\n# Install `tokenizers` in the current virtual env\npip install -e .\n```\n\n### Load a pretrained tokenizer from the Hub\n\n```python\nfrom tokenizers import Tokenizer\n\ntokenizer = Tokenizer.from_pretrained(\"bert-base-cased\")\n```\n\n### Using the provided Tokenizers\n\nWe provide some pre-build tokenizers to cover the most common cases. You can easily load one of\nthese using some `vocab.json` and `merges.txt` files:\n\n```python\nfrom tokenizers import CharBPETokenizer\n\n# Initialize a tokenizer\nvocab = \"./path/to/vocab.json\"\nmerges = \"./path/to/merges.txt\"\ntokenizer = CharBPETokenizer(vocab, merges)\n\n# And then encode:\nencoded = tokenizer.encode(\"I can feel the magic, can you?\")\nprint(encoded.ids)\nprint(encoded.tokens)\n```\n\nAnd you can train them just as simply:\n\n```python\nfrom tokenizers import CharBPETokenizer\n\n# Initialize a tokenizer\ntokenizer = CharBPETokenizer()\n\n# Then train it!\ntokenizer.train([ \"./path/to/files/1.txt\", \"./path/to/files/2.txt\" ])\n\n# Now, let's use it:\nencoded = tokenizer.encode(\"I can feel the magic, can you?\")\n\n# And finally save it somewhere\ntokenizer.save(\"./path/to/directory/my-bpe.tokenizer.json\")\n```\n\n#### Provided Tokenizers\n\n - `CharBPETokenizer`: The original BPE\n - `ByteLevelBPETokenizer`: The byte level version of the BPE\n - `SentencePieceBPETokenizer`: A BPE implementation compatible with the one used by SentencePiece\n - `BertWordPieceTokenizer`: The famous Bert tokenizer, using WordPiece\n\nAll of these can be used and trained as explained above!\n\n### Build your own\n\nWhenever these provided tokenizers don't give you enough freedom, you can build your own tokenizer,\nby putting all the different parts you need together.\nYou can check how we implemented the [provided tokenizers](https://github.com/huggingface/tokenizers/tree/master/bindings/python/py_src/tokenizers/implementations) and adapt them easily to your own needs.\n\n#### Building a byte-level BPE\n\nHere is an example showing how to build your own byte-level BPE by putting all the different pieces\ntogether, and then saving it to a single file:\n\n```python\nfrom tokenizers import Tokenizer, models, pre_tokenizers, decoders, trainers, processors\n\n# Initialize a tokenizer\ntokenizer = Tokenizer(models.BPE())\n\n# Customize pre-tokenization and decoding\ntokenizer.pre_tokenizer = pre_tokenizers.ByteLevel(add_prefix_space=True)\ntokenizer.decoder = decoders.ByteLevel()\ntokenizer.post_processor = processors.ByteLevel(trim_offsets=True)\n\n# And then train\ntrainer = trainers.BpeTrainer(\n    vocab_size=20000,\n    min_frequency=2,\n    initial_alphabet=pre_tokenizers.ByteLevel.alphabet()\n)\ntokenizer.train([\n    \"./path/to/dataset/1.txt\",\n    \"./path/to/dataset/2.txt\",\n    \"./path/to/dataset/3.txt\"\n], trainer=trainer)\n\n# And Save it\ntokenizer.save(\"byte-level-bpe.tokenizer.json\", pretty=True)\n```\n\nNow, when you want to use this tokenizer, this is as simple as:\n\n```python\nfrom tokenizers import Tokenizer\n\ntokenizer = Tokenizer.from_file(\"byte-level-bpe.tokenizer.json\")\n\nencoded = tokenizer.encode(\"I can feel the magic, can you?\")\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": null,
    "version": "0.15.2.post0",
    "project_urls": {
        "Homepage": "https://github.com/huggingface/tokenizers",
        "Source": "https://github.com/huggingface/tokenizers"
    },
    "split_keywords": [
        "nlp",
        "tokenizer",
        "bpe",
        "transformer",
        "deep learning"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69f978069da4faff060a339f6b60412cf461ce93380e0bc35a923b54d8ee5073",
                "md5": "2e3507cce205d484068fb054a20aea3c",
                "sha256": "ec729994de6c171b20167099414f71cd5dc121684cefc91701c691dc9f4cf19b"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e3507cce205d484068fb054a20aea3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2542772,
            "upload_time": "2024-02-19T01:36:58",
            "upload_time_iso_8601": "2024-02-19T01:36:58.377369Z",
            "url": "https://files.pythonhosted.org/packages/69/f9/78069da4faff060a339f6b60412cf461ce93380e0bc35a923b54d8ee5073/tokenizers_gt-0.15.2.post0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "832b21beb4d80c0c6460e77bf767a925771e61b6efef516c1cc7fd74d9a1c7cc",
                "md5": "9dc295c58b91032f0a2a66c59c14e82b",
                "sha256": "590f5fc8d245cf0fea2c60dc624010fbfe54d18212c22bb9e4d9e9525304d8ea"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9dc295c58b91032f0a2a66c59c14e82b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2453813,
            "upload_time": "2024-02-19T01:37:03",
            "upload_time_iso_8601": "2024-02-19T01:37:03.937351Z",
            "url": "https://files.pythonhosted.org/packages/83/2b/21beb4d80c0c6460e77bf767a925771e61b6efef516c1cc7fd74d9a1c7cc/tokenizers_gt-0.15.2.post0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "211cfc12c1e5723e9ae325d15868a0cadeec030751c672d3ea0965f3fcc86f08",
                "md5": "95d1c8e2fbacc7d9bc8dd81a2b8e5301",
                "sha256": "a57b7caf6bc4514b55873de28ca81774a3712571633f84032265a8a215b07ebc"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "95d1c8e2fbacc7d9bc8dd81a2b8e5301",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3702732,
            "upload_time": "2024-02-19T01:37:08",
            "upload_time_iso_8601": "2024-02-19T01:37:08.398559Z",
            "url": "https://files.pythonhosted.org/packages/21/1c/fc12c1e5723e9ae325d15868a0cadeec030751c672d3ea0965f3fcc86f08/tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f0e1f0dd71f313960512057849f7ab363d32ef8a62a585753988a42510a8144",
                "md5": "46569b8b4621cc00bff2b3ab953648dc",
                "sha256": "220db1489beaf5e7970e4a1e2b8ffd9aede1b77507d4b463688b936511c9781a"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "46569b8b4621cc00bff2b3ab953648dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3574752,
            "upload_time": "2024-02-19T01:37:10",
            "upload_time_iso_8601": "2024-02-19T01:37:10.793695Z",
            "url": "https://files.pythonhosted.org/packages/7f/0e/1f0dd71f313960512057849f7ab363d32ef8a62a585753988a42510a8144/tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "520adbcc4dd1144f5c6a65a0f9d57c04b1f241cc026b1e294b6ddcbba4fd5b22",
                "md5": "1b42eccfc22d19bed8cc653f80c4c515",
                "sha256": "4325e25f4bfd8d577be7d8bde67cd56fccc8ac62999984c68ccc12ae1852b6f1"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1b42eccfc22d19bed8cc653f80c4c515",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3441530,
            "upload_time": "2024-02-19T01:37:13",
            "upload_time_iso_8601": "2024-02-19T01:37:13.850106Z",
            "url": "https://files.pythonhosted.org/packages/52/0a/dbcc4dd1144f5c6a65a0f9d57c04b1f241cc026b1e294b6ddcbba4fd5b22/tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "765e8a15d78276c3dc45b15c82779e10681e096690495240e4d4271c2e446a6a",
                "md5": "1bca199ab311bd1d9bbea3c90f256a95",
                "sha256": "089ec29aa98012ec21cd2bbac19aa2692aab7639f71525a87d7d594018245f69"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1bca199ab311bd1d9bbea3c90f256a95",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3971417,
            "upload_time": "2024-02-19T01:37:16",
            "upload_time_iso_8601": "2024-02-19T01:37:16.653639Z",
            "url": "https://files.pythonhosted.org/packages/76/5e/8a15d78276c3dc45b15c82779e10681e096690495240e4d4271c2e446a6a/tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a937581d3b002316bad0310472998d39709336482cafe2f944cb904d85bfd27",
                "md5": "7423b4e14806c48efb8de9239003441e",
                "sha256": "5a1ad9223020ed073972308a39fd6d3c21662e5f57f06a06737a8be3a02f75e1"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7423b4e14806c48efb8de9239003441e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 4073905,
            "upload_time": "2024-02-19T01:37:18",
            "upload_time_iso_8601": "2024-02-19T01:37:18.902345Z",
            "url": "https://files.pythonhosted.org/packages/7a/93/7581d3b002316bad0310472998d39709336482cafe2f944cb904d85bfd27/tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc18fbccd81a8281f31fd88257466b9f8075512b9f14946664a12811ea02ebad",
                "md5": "f580c1970ff22d5b58b81e3a3bac1350",
                "sha256": "22f823fc5af46a311e76a62123a73d5a8d4d272ed14ff9f33b43c0ee8b047b91"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f580c1970ff22d5b58b81e3a3bac1350",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3622144,
            "upload_time": "2024-02-19T01:37:21",
            "upload_time_iso_8601": "2024-02-19T01:37:21.988658Z",
            "url": "https://files.pythonhosted.org/packages/cc/18/fbccd81a8281f31fd88257466b9f8075512b9f14946664a12811ea02ebad/tokenizers_gt-0.15.2.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fca3817029aa3286ff8f571daf4a9993d549589645e88677c55e55fd5173520",
                "md5": "813812f372d4a220316181b38a3178de",
                "sha256": "3b70064871835af439f30ca9332e4f2bc3e66292f9b93486c4f1d98b5ba71c1b"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "813812f372d4a220316181b38a3178de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 9638924,
            "upload_time": "2024-02-19T01:37:24",
            "upload_time_iso_8601": "2024-02-19T01:37:24.823762Z",
            "url": "https://files.pythonhosted.org/packages/9f/ca/3817029aa3286ff8f571daf4a9993d549589645e88677c55e55fd5173520/tokenizers_gt-0.15.2.post0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc7279f257f871d6d1fa5a97a0752ae6a3a23ecc4c60ecacbc730bef42c72e37",
                "md5": "0bc16b277043b776fb94559f1d0eb05b",
                "sha256": "93723ce6748ed5276c6158b61289933d0a80c7da31db5e0242eec58a739aaa13"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0bc16b277043b776fb94559f1d0eb05b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 9968139,
            "upload_time": "2024-02-19T01:37:28",
            "upload_time_iso_8601": "2024-02-19T01:37:28.309051Z",
            "url": "https://files.pythonhosted.org/packages/cc/72/79f257f871d6d1fa5a97a0752ae6a3a23ecc4c60ecacbc730bef42c72e37/tokenizers_gt-0.15.2.post0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a04eaea2f90936bf28dcf8a9b4afe91e61d43217e002bf4698fafaf0cfb57dd",
                "md5": "b0beec7f47a89171c66c83e6a60c6290",
                "sha256": "77fb3f947be4acf1c6d0b94853bb6d4f680bffebb4622b12901b7b258c434c14"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b0beec7f47a89171c66c83e6a60c6290",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2048909,
            "upload_time": "2024-02-19T01:37:31",
            "upload_time_iso_8601": "2024-02-19T01:37:31.506192Z",
            "url": "https://files.pythonhosted.org/packages/7a/04/eaea2f90936bf28dcf8a9b4afe91e61d43217e002bf4698fafaf0cfb57dd/tokenizers_gt-0.15.2.post0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f92fde3f68eb17ef00dcbae40e5d3ad5578fb63f0ed18c8df763a5ea00a6de12",
                "md5": "fa0769650d19571d94eefc0808500992",
                "sha256": "d831c6337e9ac43ebd06d50aeeb9e60a3b3c3c1d90e61548784cb513882353a2"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fa0769650d19571d94eefc0808500992",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2226941,
            "upload_time": "2024-02-19T01:37:33",
            "upload_time_iso_8601": "2024-02-19T01:37:33.564748Z",
            "url": "https://files.pythonhosted.org/packages/f9/2f/de3f68eb17ef00dcbae40e5d3ad5578fb63f0ed18c8df763a5ea00a6de12/tokenizers_gt-0.15.2.post0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5aa67efc281b8fd2d73d7a1b952c94aa7f2e247d046c6481a0c3da84ebd6a051",
                "md5": "0c20283ec2b256495195b9890a025c55",
                "sha256": "c4d2fa37d5eb886c7311ff136e117482a6114111a3117d8057767516025a3302"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c20283ec2b256495195b9890a025c55",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2542790,
            "upload_time": "2024-02-19T01:37:36",
            "upload_time_iso_8601": "2024-02-19T01:37:36.532675Z",
            "url": "https://files.pythonhosted.org/packages/5a/a6/7efc281b8fd2d73d7a1b952c94aa7f2e247d046c6481a0c3da84ebd6a051/tokenizers_gt-0.15.2.post0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a98730249ee9618ec1811e7e6d11d55a595c7e74d19f2dd3abefa4c43e4a9480",
                "md5": "1de1a675c514a7fa48e78ba9fe6dfbc2",
                "sha256": "a0d72ee7d76243c5e22afbfde12701f029ae49d18cbd4d5afa5f73669e1ec961"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1de1a675c514a7fa48e78ba9fe6dfbc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2453968,
            "upload_time": "2024-02-19T01:37:38",
            "upload_time_iso_8601": "2024-02-19T01:37:38.926804Z",
            "url": "https://files.pythonhosted.org/packages/a9/87/30249ee9618ec1811e7e6d11d55a595c7e74d19f2dd3abefa4c43e4a9480/tokenizers_gt-0.15.2.post0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "085d6e06364051417ff3e7450945194f470c794fecbf2610795327477fb2b797",
                "md5": "6cb49f434eaec273a0da7dee05c2b6eb",
                "sha256": "c0a657c4aa53ad88eeb113093859009a05c0d6ffe3850ee5bf5df9f006a78456"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "6cb49f434eaec273a0da7dee05c2b6eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3702751,
            "upload_time": "2024-02-19T01:37:41",
            "upload_time_iso_8601": "2024-02-19T01:37:41.297735Z",
            "url": "https://files.pythonhosted.org/packages/08/5d/6e06364051417ff3e7450945194f470c794fecbf2610795327477fb2b797/tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76a176439529c0e490d56f06b26f5cedb7a8d26ad9cef5fe3d2fdadbbeaddac3",
                "md5": "6b5f9095fbf7ade8152329bf53c64e8d",
                "sha256": "021fdbd966d77fa0120a13136f992002ecbfedf7ece5dd68a49cdb19b806a062"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6b5f9095fbf7ade8152329bf53c64e8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3574823,
            "upload_time": "2024-02-19T01:37:43",
            "upload_time_iso_8601": "2024-02-19T01:37:43.565121Z",
            "url": "https://files.pythonhosted.org/packages/76/a1/76439529c0e490d56f06b26f5cedb7a8d26ad9cef5fe3d2fdadbbeaddac3/tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7c35e98aa3de312589321bb26cb67f8ac16150eef31936cb63f382bc6031e53",
                "md5": "bf51f8b5ff2491053df4a2f9476b5bec",
                "sha256": "624e0a4758ed0623cfe1941cd7d21b99316d4ef639b52b26fd15daf0142dd96d"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bf51f8b5ff2491053df4a2f9476b5bec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3441456,
            "upload_time": "2024-02-19T01:37:47",
            "upload_time_iso_8601": "2024-02-19T01:37:47.163795Z",
            "url": "https://files.pythonhosted.org/packages/e7/c3/5e98aa3de312589321bb26cb67f8ac16150eef31936cb63f382bc6031e53/tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8989ade38a688c63bba3f6a855b5f66b8897fbe242760cc3e7b078a08fe13c42",
                "md5": "72c26249b7b9ff0b5495e8b6d44e4764",
                "sha256": "d2dbc5dc8b7b0cddf57d82cfb02c7e12fe60719b1e99eaec7ccf0f3432a378ed"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "72c26249b7b9ff0b5495e8b6d44e4764",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3971872,
            "upload_time": "2024-02-19T01:37:49",
            "upload_time_iso_8601": "2024-02-19T01:37:49.922912Z",
            "url": "https://files.pythonhosted.org/packages/89/89/ade38a688c63bba3f6a855b5f66b8897fbe242760cc3e7b078a08fe13c42/tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44a2489dcb026434dd4e1c6cb956db17529ecc2985f8a83b0165cfe00eb9f746",
                "md5": "bb40436c123dfdbd60cc9b82d842080e",
                "sha256": "94ece08a6f914f12c51914c64b1d391905cc95f0f636fe63cde30991b46765ba"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bb40436c123dfdbd60cc9b82d842080e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 4073737,
            "upload_time": "2024-02-19T01:37:52",
            "upload_time_iso_8601": "2024-02-19T01:37:52.317204Z",
            "url": "https://files.pythonhosted.org/packages/44/a2/489dcb026434dd4e1c6cb956db17529ecc2985f8a83b0165cfe00eb9f746/tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e264656afbda2bdfe4f9b1ac7a598d74094fe4e3529214d1234fa6d671834a13",
                "md5": "98de607e389e17f56a37060250841a9d",
                "sha256": "02d6c2c2ed6827c123819a82ec5a0891414f435459212dfbf2b94e85c037dad0"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98de607e389e17f56a37060250841a9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3622796,
            "upload_time": "2024-02-19T01:37:54",
            "upload_time_iso_8601": "2024-02-19T01:37:54.388880Z",
            "url": "https://files.pythonhosted.org/packages/e2/64/656afbda2bdfe4f9b1ac7a598d74094fe4e3529214d1234fa6d671834a13/tokenizers_gt-0.15.2.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac059744fbc383df8f50892d704ee6619f7de950ad7e72873500b0294179e707",
                "md5": "a8b722c215c9d2228be6bd1a2a636d97",
                "sha256": "72ff49016b73728b2df1468ffe40cf6251716499704c2f20ef4f8f2a5a4737db"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a8b722c215c9d2228be6bd1a2a636d97",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 9638885,
            "upload_time": "2024-02-19T01:37:57",
            "upload_time_iso_8601": "2024-02-19T01:37:57.265266Z",
            "url": "https://files.pythonhosted.org/packages/ac/05/9744fbc383df8f50892d704ee6619f7de950ad7e72873500b0294179e707/tokenizers_gt-0.15.2.post0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "321124125f96df7cd46b304ac5114c18408cfc1a1d3442e5e143b69a0dc7d1d0",
                "md5": "b6fbabdc7f455aed8382919ff852d50f",
                "sha256": "03282839dc8986aaf8d92c677e5cf4d33c35e50858530adb488a7cfb3745ffba"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6fbabdc7f455aed8382919ff852d50f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 9968245,
            "upload_time": "2024-02-19T01:38:00",
            "upload_time_iso_8601": "2024-02-19T01:38:00.307052Z",
            "url": "https://files.pythonhosted.org/packages/32/11/24125f96df7cd46b304ac5114c18408cfc1a1d3442e5e143b69a0dc7d1d0/tokenizers_gt-0.15.2.post0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9e03908ad76195aa0d46e7d8258b42d194b4e3aab980693f23242d9cf97ab43",
                "md5": "b7a6b8704429fae1275f94d023c22a97",
                "sha256": "a3272d34706f426193ac9b8ec58f5b5456f45ca6341e4e5b4e76c132101e84ea"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b7a6b8704429fae1275f94d023c22a97",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2050751,
            "upload_time": "2024-02-19T01:38:03",
            "upload_time_iso_8601": "2024-02-19T01:38:03.327326Z",
            "url": "https://files.pythonhosted.org/packages/c9/e0/3908ad76195aa0d46e7d8258b42d194b4e3aab980693f23242d9cf97ab43/tokenizers_gt-0.15.2.post0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bebaecae8873314e5811ecd6744d9984b218d084fb3508138adeaec82d0fbde5",
                "md5": "13bcd5be8ab1001d33c319be285e4551",
                "sha256": "7de09be9aac8501cc6fcc47ac08bb421e9d38c491dc47876d3e18e1ed50c39ad"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "13bcd5be8ab1001d33c319be285e4551",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2227207,
            "upload_time": "2024-02-19T01:38:05",
            "upload_time_iso_8601": "2024-02-19T01:38:05.655472Z",
            "url": "https://files.pythonhosted.org/packages/be/ba/ecae8873314e5811ecd6744d9984b218d084fb3508138adeaec82d0fbde5/tokenizers_gt-0.15.2.post0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cedd9b7d6b600929fdced7795f3bfaec8464cb1277224b8b384bd31bf9cad8f3",
                "md5": "2ce7ac4da6df427855a116dec0ac9e14",
                "sha256": "8e609443f4c8ceff1ef2c601b7871f24ef9c50419c1762fb5e6f42ec7853f9c9"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ce7ac4da6df427855a116dec0ac9e14",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2542074,
            "upload_time": "2024-02-19T01:38:08",
            "upload_time_iso_8601": "2024-02-19T01:38:08.827813Z",
            "url": "https://files.pythonhosted.org/packages/ce/dd/9b7d6b600929fdced7795f3bfaec8464cb1277224b8b384bd31bf9cad8f3/tokenizers_gt-0.15.2.post0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa6f967f82ffca77ad4bcae14c7e2ef661c249cebc7921f6d99ff5f2bff39bb4",
                "md5": "243f08825081800c1419e096192f8966",
                "sha256": "6765dae08c83bec9c514190f00982f35dc62f2364315e41c2714a611b020ecf1"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "243f08825081800c1419e096192f8966",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2447171,
            "upload_time": "2024-02-19T01:38:10",
            "upload_time_iso_8601": "2024-02-19T01:38:10.965312Z",
            "url": "https://files.pythonhosted.org/packages/aa/6f/967f82ffca77ad4bcae14c7e2ef661c249cebc7921f6d99ff5f2bff39bb4/tokenizers_gt-0.15.2.post0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53b4ddaf7e5b6d45c900a268a737dfb70ca42b1a57c3ab1b0b748039c2c142ef",
                "md5": "f2c5b2f664548a069de16bec23f067ae",
                "sha256": "07549a7acd8ca12172612e65af49139591c3a10c0efd806d19ca6466cdd5ad89"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "f2c5b2f664548a069de16bec23f067ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3703547,
            "upload_time": "2024-02-19T01:38:13",
            "upload_time_iso_8601": "2024-02-19T01:38:13.543465Z",
            "url": "https://files.pythonhosted.org/packages/53/b4/ddaf7e5b6d45c900a268a737dfb70ca42b1a57c3ab1b0b748039c2c142ef/tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "01ee59751cd427c98e9126d6e8baaaa37e481eb73e8c7d6c0ae549f0b6712f94",
                "md5": "3705da1c5c49fa916adee16ff5c30506",
                "sha256": "af0c74b7c4f512861b09f80abe0da653eff253f72ee8fa061a5065754d26466f"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3705da1c5c49fa916adee16ff5c30506",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3571690,
            "upload_time": "2024-02-19T01:38:15",
            "upload_time_iso_8601": "2024-02-19T01:38:15.777734Z",
            "url": "https://files.pythonhosted.org/packages/01/ee/59751cd427c98e9126d6e8baaaa37e481eb73e8c7d6c0ae549f0b6712f94/tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0947dcc1d3ecb1e75517a1380ace446e90145be07c188f00ba56b9c02c46b7ab",
                "md5": "dd0c23708ee27735ff0c8712f18e9982",
                "sha256": "4cb72b51ba2eb429befa778e736310d5f147cbdab6b35fcfc276ff2c8f7c8915"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "dd0c23708ee27735ff0c8712f18e9982",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3445674,
            "upload_time": "2024-02-19T01:38:17",
            "upload_time_iso_8601": "2024-02-19T01:38:17.918123Z",
            "url": "https://files.pythonhosted.org/packages/09/47/dcc1d3ecb1e75517a1380ace446e90145be07c188f00ba56b9c02c46b7ab/tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4859eb4c5e0e02506f1f233fe2741d290174d01c426769384f127b38d2dedfa",
                "md5": "4f172fa0759591c4ade924d190caf278",
                "sha256": "ecac1beebfa29286ca1f40d3540c0776b0153f87a8c7891b7a64e563f87e9b22"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4f172fa0759591c4ade924d190caf278",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3964782,
            "upload_time": "2024-02-19T01:38:20",
            "upload_time_iso_8601": "2024-02-19T01:38:20.115480Z",
            "url": "https://files.pythonhosted.org/packages/e4/85/9eb4c5e0e02506f1f233fe2741d290174d01c426769384f127b38d2dedfa/tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7927edc401572255bbbae4969ac3593c782354983337319022f9319d6956d884",
                "md5": "d4c4c0b0285e248fe6d6577456163d7f",
                "sha256": "9b03c97ef6ef51ee958a8c3f4d512b2c4bc540165e9a6038a26728f21f2f10fb"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d4c4c0b0285e248fe6d6577456163d7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 4069694,
            "upload_time": "2024-02-19T01:38:23",
            "upload_time_iso_8601": "2024-02-19T01:38:23.237636Z",
            "url": "https://files.pythonhosted.org/packages/79/27/edc401572255bbbae4969ac3593c782354983337319022f9319d6956d884/tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53a0c7de11edd258649f9bca279e95d6ebc8986e0035c93f74bd36174559f71a",
                "md5": "c9275a7183cfdd97493ea55247c37e3e",
                "sha256": "729b8ffc905ae0dd6052a6ed91113bc43033bbc17ab6700c236c64bfef0dfedd"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c9275a7183cfdd97493ea55247c37e3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3616857,
            "upload_time": "2024-02-19T01:38:25",
            "upload_time_iso_8601": "2024-02-19T01:38:25.731458Z",
            "url": "https://files.pythonhosted.org/packages/53/a0/c7de11edd258649f9bca279e95d6ebc8986e0035c93f74bd36174559f71a/tokenizers_gt-0.15.2.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac41e875b272bdc218acb7cf91d0271eba50944ecc8bf9b9c2111b7eee13a170",
                "md5": "7deb2dee24816d3cf96cc905dae76212",
                "sha256": "e291acff96fa5bce16765943abfece942b8e2d9f924c7362ca50b7907b3cb981"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7deb2dee24816d3cf96cc905dae76212",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 9637223,
            "upload_time": "2024-02-19T01:38:28",
            "upload_time_iso_8601": "2024-02-19T01:38:28.460554Z",
            "url": "https://files.pythonhosted.org/packages/ac/41/e875b272bdc218acb7cf91d0271eba50944ecc8bf9b9c2111b7eee13a170/tokenizers_gt-0.15.2.post0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19bda115cbfae3d802edec79a6f567f660e4a89bd10477ba8fb17ca7b80b098f",
                "md5": "adabefd1bef0d6702c8d059b870230b8",
                "sha256": "eaa4f059b94d1457a511652a4eb8e4a961281390fc4c06be96d6cda2fc985dd3"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "adabefd1bef0d6702c8d059b870230b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 9965182,
            "upload_time": "2024-02-19T01:38:32",
            "upload_time_iso_8601": "2024-02-19T01:38:32.807420Z",
            "url": "https://files.pythonhosted.org/packages/19/bd/a115cbfae3d802edec79a6f567f660e4a89bd10477ba8fb17ca7b80b098f/tokenizers_gt-0.15.2.post0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "664077ad7203c50ed026df7be033ba1a5e4183bee42f13192a30aa3097ed278d",
                "md5": "51b4d0f71170c0e6708f79c0fade3d60",
                "sha256": "bf89500762a32f6ea207552f95e53de77debf5f251ea9d0030537e907d103b94"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-cp37m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "51b4d0f71170c0e6708f79c0fade3d60",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2546378,
            "upload_time": "2024-02-19T01:38:36",
            "upload_time_iso_8601": "2024-02-19T01:38:36.194173Z",
            "url": "https://files.pythonhosted.org/packages/66/40/77ad7203c50ed026df7be033ba1a5e4183bee42f13192a30aa3097ed278d/tokenizers_gt-0.15.2.post0-cp37-cp37m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3fe4cb284c0c95263335e962b05013758a79b655f63ff2c273f8ead98058235e",
                "md5": "1e10845c7de65398f693baa3237af3aa",
                "sha256": "d574febddb0a6c60f3755f4f4309e769f7daed266c45b8fc82dc1ad6f527fc34"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-cp37m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1e10845c7de65398f693baa3237af3aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2455523,
            "upload_time": "2024-02-19T01:38:38",
            "upload_time_iso_8601": "2024-02-19T01:38:38.725727Z",
            "url": "https://files.pythonhosted.org/packages/3f/e4/cb284c0c95263335e962b05013758a79b655f63ff2c273f8ead98058235e/tokenizers_gt-0.15.2.post0-cp37-cp37m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1645b41d6fdc6415c9b717b91008d83a765f63e16c98b4a69b09b6a364e7580",
                "md5": "644146127ec1b359214066254ccdce42",
                "sha256": "2265d7de168bfeb05729912e153c104c5650d79d80b915955482cf438b3baddc"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "644146127ec1b359214066254ccdce42",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3700623,
            "upload_time": "2024-02-19T01:38:41",
            "upload_time_iso_8601": "2024-02-19T01:38:41.499463Z",
            "url": "https://files.pythonhosted.org/packages/d1/64/5b41d6fdc6415c9b717b91008d83a765f63e16c98b4a69b09b6a364e7580/tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7469ae651a5e80ce5ba7172d20f87390eb74f0fc4e1bcd1f15787c16548db56",
                "md5": "d7d23b992043f60f86576e93c005cb63",
                "sha256": "db549d7b112cdf520eb845036bc8d99321ef92c7cde74583df640bdbba1b853c"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d7d23b992043f60f86576e93c005cb63",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3575796,
            "upload_time": "2024-02-19T01:38:43",
            "upload_time_iso_8601": "2024-02-19T01:38:43.852511Z",
            "url": "https://files.pythonhosted.org/packages/a7/46/9ae651a5e80ce5ba7172d20f87390eb74f0fc4e1bcd1f15787c16548db56/tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb48a464793d460133202c333aef6c51380c35702340b18e6e235252bb2cdff4",
                "md5": "b729699d3199697bae8c8778860f954d",
                "sha256": "ef5e05d911d1d24b266acca3adf8f91c790ffb25593f5a954908693ed4547d20"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b729699d3199697bae8c8778860f954d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3439870,
            "upload_time": "2024-02-19T01:38:46",
            "upload_time_iso_8601": "2024-02-19T01:38:46.626473Z",
            "url": "https://files.pythonhosted.org/packages/eb/48/a464793d460133202c333aef6c51380c35702340b18e6e235252bb2cdff4/tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05b70dc61a780b2a4d1f0eebc1ac4354eb9cb3e30bf0374a191aab603c320d5e",
                "md5": "8d15ecca8f5893db7e94a78d9bf4c7d3",
                "sha256": "5f7097f9ff9e5ed88bed0f763b9e7b211e93b37f2869aa3172278a6cf9a6483e"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8d15ecca8f5893db7e94a78d9bf4c7d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3970034,
            "upload_time": "2024-02-19T01:38:49",
            "upload_time_iso_8601": "2024-02-19T01:38:49.221402Z",
            "url": "https://files.pythonhosted.org/packages/05/b7/0dc61a780b2a4d1f0eebc1ac4354eb9cb3e30bf0374a191aab603c320d5e/tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d330afb96034a41de9cc5f41ec7a1f6a05ad3116f40e2c1d47d9c2f5dbf333bb",
                "md5": "2690706763cc31cad79c502fcd71bf5e",
                "sha256": "56192015e447197f073133a087a28bfd50018c2719607afad8be259fddbccb7e"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2690706763cc31cad79c502fcd71bf5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4074640,
            "upload_time": "2024-02-19T01:38:51",
            "upload_time_iso_8601": "2024-02-19T01:38:51.359884Z",
            "url": "https://files.pythonhosted.org/packages/d3/30/afb96034a41de9cc5f41ec7a1f6a05ad3116f40e2c1d47d9c2f5dbf333bb/tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4be2292f4101c7b26e095df444bbe92634af81f56d634e6021cdb94f6bf23914",
                "md5": "396ed8ead80151bbb8080b94f698cd10",
                "sha256": "64ca2c6c59af389909402d3841d339b7234b5f25d9c978e20f96cf7693d20572"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "396ed8ead80151bbb8080b94f698cd10",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3622682,
            "upload_time": "2024-02-19T01:38:53",
            "upload_time_iso_8601": "2024-02-19T01:38:53.443469Z",
            "url": "https://files.pythonhosted.org/packages/4b/e2/292f4101c7b26e095df444bbe92634af81f56d634e6021cdb94f6bf23914/tokenizers_gt-0.15.2.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "581c9f506b710b3595484414efd57c67b81d446242bf98741a7887bc44e0b4bd",
                "md5": "f05494faa8f8da4a6a8429f7ca5b6340",
                "sha256": "fdf2c20f0045a592f9f587d1aa9074685866ea339355ca3f0e9629b807f2c9d9"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f05494faa8f8da4a6a8429f7ca5b6340",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 9638390,
            "upload_time": "2024-02-19T01:38:55",
            "upload_time_iso_8601": "2024-02-19T01:38:55.848969Z",
            "url": "https://files.pythonhosted.org/packages/58/1c/9f506b710b3595484414efd57c67b81d446242bf98741a7887bc44e0b4bd/tokenizers_gt-0.15.2.post0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e7e4e1abf31707c57435517681bb637a187a1a56b70c5f74c7e56060f4260f0",
                "md5": "3e7f7085496107ad6b02a913afd01964",
                "sha256": "08c54e15f4e6b4c628bb097c929c4542010fecc2a4565c139b8fecfce542342b"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e7f7085496107ad6b02a913afd01964",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 9968464,
            "upload_time": "2024-02-19T01:38:59",
            "upload_time_iso_8601": "2024-02-19T01:38:59.161063Z",
            "url": "https://files.pythonhosted.org/packages/4e/7e/4e1abf31707c57435517681bb637a187a1a56b70c5f74c7e56060f4260f0/tokenizers_gt-0.15.2.post0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5721cc3879e1eb35877d337f6488c5129930af0b40fbf0e98e4bcf9f6e46f964",
                "md5": "9cb1f73f5e116390ff1ecdb265477c34",
                "sha256": "ee2b14d890e17ce0bb3c4238dab832ae2af04575da2747c094a3825a496b8b5a"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "9cb1f73f5e116390ff1ecdb265477c34",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2050460,
            "upload_time": "2024-02-19T01:39:01",
            "upload_time_iso_8601": "2024-02-19T01:39:01.882878Z",
            "url": "https://files.pythonhosted.org/packages/57/21/cc3879e1eb35877d337f6488c5129930af0b40fbf0e98e4bcf9f6e46f964/tokenizers_gt-0.15.2.post0-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2407a5f04c5ad4daf49eb28e22d6fb07dab919b4b449876d5f847ba94bc48614",
                "md5": "dc2a15db1ce0803cae781d84828a9bee",
                "sha256": "1a03c1625154e836ccb63321d45085a6146ba72acbef42934ac2f11695898c4b"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dc2a15db1ce0803cae781d84828a9bee",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2225832,
            "upload_time": "2024-02-19T01:39:05",
            "upload_time_iso_8601": "2024-02-19T01:39:05.132129Z",
            "url": "https://files.pythonhosted.org/packages/24/07/a5f04c5ad4daf49eb28e22d6fb07dab919b4b449876d5f847ba94bc48614/tokenizers_gt-0.15.2.post0-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48c53ff258385680f081f7477422775c7969164eaed441c307994365bfc423c6",
                "md5": "fc97793ca00c05e992c8db34d1e8b1da",
                "sha256": "7a1b22feebf0dd1b53031daeff505fa5658c886df2e1bcd32d85242079efa012"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc97793ca00c05e992c8db34d1e8b1da",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2542326,
            "upload_time": "2024-02-19T01:39:08",
            "upload_time_iso_8601": "2024-02-19T01:39:08.183697Z",
            "url": "https://files.pythonhosted.org/packages/48/c5/3ff258385680f081f7477422775c7969164eaed441c307994365bfc423c6/tokenizers_gt-0.15.2.post0-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4feebb4f8ea824a5720a6162761278d54429138ed4a5b47d667c9075fe5ea435",
                "md5": "221029118a67b5c76911ec841c1401d2",
                "sha256": "c3f2e19923dae17236fb5ea39d2748c03f3de237e2da11f02fd9b26c484202aa"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "221029118a67b5c76911ec841c1401d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2454363,
            "upload_time": "2024-02-19T01:39:10",
            "upload_time_iso_8601": "2024-02-19T01:39:10.312335Z",
            "url": "https://files.pythonhosted.org/packages/4f/ee/bb4f8ea824a5720a6162761278d54429138ed4a5b47d667c9075fe5ea435/tokenizers_gt-0.15.2.post0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39dfd65649d4b6f496ea644d1744df5d6227a5f845d4dea5bb072cd744dcf552",
                "md5": "11e4b04515ffab14d2e6b5483bda05e2",
                "sha256": "4ea1269a3a5f49a4b9476092d39d9b27b777d519e85336df30b7c44b433370f1"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "11e4b04515ffab14d2e6b5483bda05e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3704559,
            "upload_time": "2024-02-19T01:39:13",
            "upload_time_iso_8601": "2024-02-19T01:39:13.020302Z",
            "url": "https://files.pythonhosted.org/packages/39/df/d65649d4b6f496ea644d1744df5d6227a5f845d4dea5bb072cd744dcf552/tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7814d32a94e49ea240c57d556d5bead2934a3bf878a3d31f5021bce1dbb8eaa8",
                "md5": "163e06430369990f68b98e259a389f6d",
                "sha256": "bed494e1ff469616377db1b266aaa8015d63da1de74118ac168310b1a484a80b"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "163e06430369990f68b98e259a389f6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3574492,
            "upload_time": "2024-02-19T01:39:15",
            "upload_time_iso_8601": "2024-02-19T01:39:15.185926Z",
            "url": "https://files.pythonhosted.org/packages/78/14/d32a94e49ea240c57d556d5bead2934a3bf878a3d31f5021bce1dbb8eaa8/tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "073968311b5ea9bc9e849d8050d365cee417e59a06d2bb64d2089be74106ddd9",
                "md5": "8d31ff39ca27424627e7a5ed626e65d0",
                "sha256": "55368efd5bb7ec9a04182ebd04649e80258080ddd6f8d50816a5acaa00c11a6b"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8d31ff39ca27424627e7a5ed626e65d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3439825,
            "upload_time": "2024-02-19T01:39:17",
            "upload_time_iso_8601": "2024-02-19T01:39:17.806470Z",
            "url": "https://files.pythonhosted.org/packages/07/39/68311b5ea9bc9e849d8050d365cee417e59a06d2bb64d2089be74106ddd9/tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f0a02ad8979d1eefb286fa430227f5bf42f5290546ec223db5d3c9b44f24da1",
                "md5": "34ee25ee572e099f71bc9eb01fbc11c9",
                "sha256": "b83f9294eac102408ea11f109087d00623e55432a914c4f30a19546c3d1c482f"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "34ee25ee572e099f71bc9eb01fbc11c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3970498,
            "upload_time": "2024-02-19T01:39:20",
            "upload_time_iso_8601": "2024-02-19T01:39:20.264427Z",
            "url": "https://files.pythonhosted.org/packages/0f/0a/02ad8979d1eefb286fa430227f5bf42f5290546ec223db5d3c9b44f24da1/tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1157a74316249148995d8691f42b4f0553eeadfcb7f5683de8dce4673e601e1a",
                "md5": "38c260b181b015fc2ca2fa0a4b9dfe1b",
                "sha256": "747fabe0d7a10bdac3345adb336088293985bf94ddc5632e9e718d84db486586"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "38c260b181b015fc2ca2fa0a4b9dfe1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 4073602,
            "upload_time": "2024-02-19T01:39:22",
            "upload_time_iso_8601": "2024-02-19T01:39:22.432064Z",
            "url": "https://files.pythonhosted.org/packages/11/57/a74316249148995d8691f42b4f0553eeadfcb7f5683de8dce4673e601e1a/tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "18449443c27a4926648e23ad037461f4e2d5a6f104baa40c73e0fe4f66b527d8",
                "md5": "18415efe1c003c1766a6db65656af787",
                "sha256": "7a6463779fbda2be254ce98971a4fccd13beef043cc4bdad46df80e743e264b5"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "18415efe1c003c1766a6db65656af787",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3621004,
            "upload_time": "2024-02-19T01:39:25",
            "upload_time_iso_8601": "2024-02-19T01:39:25.069453Z",
            "url": "https://files.pythonhosted.org/packages/18/44/9443c27a4926648e23ad037461f4e2d5a6f104baa40c73e0fe4f66b527d8/tokenizers_gt-0.15.2.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e4e787f018ab7712463f9a9cd935f4f751dcfac2d3bf72cc0f9abb29ffbc8a1",
                "md5": "da52cd9f2ba87e878464511dd7d51ee4",
                "sha256": "87845cfe88076016ad2cf74530cea2f4a590d1532e52f9461001463bb7d560ee"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "da52cd9f2ba87e878464511dd7d51ee4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 9638388,
            "upload_time": "2024-02-19T01:39:28",
            "upload_time_iso_8601": "2024-02-19T01:39:28.084309Z",
            "url": "https://files.pythonhosted.org/packages/8e/4e/787f018ab7712463f9a9cd935f4f751dcfac2d3bf72cc0f9abb29ffbc8a1/tokenizers_gt-0.15.2.post0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "170e424a4e90861126c254393e4bc0efb124f67ea553965a17473a15978b49c2",
                "md5": "2037441bd92e0a22b9232bc86496947b",
                "sha256": "6371b466f80f4b4882bd1c381a5cd2c4d8200c4ede2ca4a44a8968b569fe4221"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2037441bd92e0a22b9232bc86496947b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 9967911,
            "upload_time": "2024-02-19T01:39:31",
            "upload_time_iso_8601": "2024-02-19T01:39:31.182440Z",
            "url": "https://files.pythonhosted.org/packages/17/0e/424a4e90861126c254393e4bc0efb124f67ea553965a17473a15978b49c2/tokenizers_gt-0.15.2.post0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55148cca21ed9504108d5028e094f832996d335351d1be2785675979e71ba963",
                "md5": "6962ff9ce3a0665f3fd3d36058fa2e95",
                "sha256": "1f5e57743eebac4a5ba921a86ca83a582cec3328c4c83f53333ad6fc8a9f304f"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "6962ff9ce3a0665f3fd3d36058fa2e95",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2048587,
            "upload_time": "2024-02-19T01:39:33",
            "upload_time_iso_8601": "2024-02-19T01:39:33.913304Z",
            "url": "https://files.pythonhosted.org/packages/55/14/8cca21ed9504108d5028e094f832996d335351d1be2785675979e71ba963/tokenizers_gt-0.15.2.post0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e69dcf718dc6a129a18f7f2a3f4ed49c5e53dc897c13e187d1efeefcf820fcb",
                "md5": "f9c6c9c6ee8705107a3574005017b483",
                "sha256": "ae317bac2bf3623f18756b647b979b3d6cc8770f8f20daef97a9113fab9e2809"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f9c6c9c6ee8705107a3574005017b483",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2227195,
            "upload_time": "2024-02-19T01:39:36",
            "upload_time_iso_8601": "2024-02-19T01:39:36.359827Z",
            "url": "https://files.pythonhosted.org/packages/6e/69/dcf718dc6a129a18f7f2a3f4ed49c5e53dc897c13e187d1efeefcf820fcb/tokenizers_gt-0.15.2.post0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d12f4e5927937e1c139368f97c4a9363f8ac0f37b59276a8ba6615bb366434c9",
                "md5": "849a68bda4178220df4868cb2f9785dc",
                "sha256": "df7c7afe4b07cebddf0e92f2ebbc2124f25855510bd70b1f5e0211a5228df084"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "849a68bda4178220df4868cb2f9785dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2543133,
            "upload_time": "2024-02-19T01:39:38",
            "upload_time_iso_8601": "2024-02-19T01:39:38.384538Z",
            "url": "https://files.pythonhosted.org/packages/d1/2f/4e5927937e1c139368f97c4a9363f8ac0f37b59276a8ba6615bb366434c9/tokenizers_gt-0.15.2.post0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b465acd52014b36118f19ab8fb5dbeee1e7836c78d6d33dec6ba0816de7d9dac",
                "md5": "e89720056dfff8c8acea6f2487870234",
                "sha256": "85a2c0ef7f759cc7ad908241b20294af566c248aec98d68405fdf6d118bf9cea"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e89720056dfff8c8acea6f2487870234",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2454997,
            "upload_time": "2024-02-19T01:39:40",
            "upload_time_iso_8601": "2024-02-19T01:39:40.502136Z",
            "url": "https://files.pythonhosted.org/packages/b4/65/acd52014b36118f19ab8fb5dbeee1e7836c78d6d33dec6ba0816de7d9dac/tokenizers_gt-0.15.2.post0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "243d85a5ab947039ddd5d0ba4aed1b644155b553dc490be0ba7fd0ee3bf1539f",
                "md5": "c4b7fdff680568901adc7cc08f781b37",
                "sha256": "968efeaf243204661ff0d0d2fc8fa41ffc91b07baccbbc65b2298241db46dbaf"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "c4b7fdff680568901adc7cc08f781b37",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3702957,
            "upload_time": "2024-02-19T01:39:43",
            "upload_time_iso_8601": "2024-02-19T01:39:43.273024Z",
            "url": "https://files.pythonhosted.org/packages/24/3d/85a5ab947039ddd5d0ba4aed1b644155b553dc490be0ba7fd0ee3bf1539f/tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5202a740e7d4fde7ef0bcd565d098edd75ef304cdad34297225ea857ac7242ae",
                "md5": "5b42e1cc156920820bd0b9822b6353e8",
                "sha256": "128747f66996cee81d27724dbba6e8bb301cc86b942eb5716b754179fe60afe1"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5b42e1cc156920820bd0b9822b6353e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3574881,
            "upload_time": "2024-02-19T01:39:45",
            "upload_time_iso_8601": "2024-02-19T01:39:45.624380Z",
            "url": "https://files.pythonhosted.org/packages/52/02/a740e7d4fde7ef0bcd565d098edd75ef304cdad34297225ea857ac7242ae/tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a59f96d3e38f2f1730e8d276dc119cfe47fe554d289537d44a4c91a8f8ecfaf",
                "md5": "9184ba55619e432f1ec686568acd7e56",
                "sha256": "a4cc6cf993ec8b65e7ab73ee2226d8b03d20fc95dd1e5e684dfa58ebf54e7a34"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9184ba55619e432f1ec686568acd7e56",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3440240,
            "upload_time": "2024-02-19T01:39:48",
            "upload_time_iso_8601": "2024-02-19T01:39:48.244010Z",
            "url": "https://files.pythonhosted.org/packages/9a/59/f96d3e38f2f1730e8d276dc119cfe47fe554d289537d44a4c91a8f8ecfaf/tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40bd6c3d7346fd4e8eaed9dcdf8f12d6c94db03a15d09758187627b4ffa9534b",
                "md5": "3be7af1cc0ba3dbc84f4c413fb43157d",
                "sha256": "8207087ae6e6f62b6db6357b71b1749d21e84438cdc59f80fe5f7d44bd50d925"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3be7af1cc0ba3dbc84f4c413fb43157d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3971493,
            "upload_time": "2024-02-19T01:39:51",
            "upload_time_iso_8601": "2024-02-19T01:39:51.075695Z",
            "url": "https://files.pythonhosted.org/packages/40/bd/6c3d7346fd4e8eaed9dcdf8f12d6c94db03a15d09758187627b4ffa9534b/tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc9bdf29a2e1abee186458ddbede5dd182dd06902a0cf21098c2b3487171bf38",
                "md5": "f3953274da116a5c13387983b8c15a40",
                "sha256": "96ca098b51556d599d487725c09777ad441a9ee184a1d85fccb8c6e8ab4c7b32"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f3953274da116a5c13387983b8c15a40",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4073724,
            "upload_time": "2024-02-19T01:39:53",
            "upload_time_iso_8601": "2024-02-19T01:39:53.261901Z",
            "url": "https://files.pythonhosted.org/packages/bc/9b/df29a2e1abee186458ddbede5dd182dd06902a0cf21098c2b3487171bf38/tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbdd8f5a2449c15e3db8359005ec22fe2d7252974689d1291ff73acd3df6e344",
                "md5": "24b4c460e72eec3b7853330dae880a11",
                "sha256": "b1c657e7e71dc7271c4081856e1656d4da5998af969d6f0e73925458bb1991b7"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24b4c460e72eec3b7853330dae880a11",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3622152,
            "upload_time": "2024-02-19T01:39:56",
            "upload_time_iso_8601": "2024-02-19T01:39:56.229742Z",
            "url": "https://files.pythonhosted.org/packages/fb/dd/8f5a2449c15e3db8359005ec22fe2d7252974689d1291ff73acd3df6e344/tokenizers_gt-0.15.2.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "857e29fae4cbcda643967fb3ce0d662546fc4cf5a40a1cea1dd3e412d6f261ba",
                "md5": "ff5fda86bb14cc04bcc38d0727dc6605",
                "sha256": "75a197ebd6ce3d7317d4dc0ad05dae58b079a11b87e87a5bb43916a8933b048a"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ff5fda86bb14cc04bcc38d0727dc6605",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 9638983,
            "upload_time": "2024-02-19T01:39:58",
            "upload_time_iso_8601": "2024-02-19T01:39:58.536172Z",
            "url": "https://files.pythonhosted.org/packages/85/7e/29fae4cbcda643967fb3ce0d662546fc4cf5a40a1cea1dd3e412d6f261ba/tokenizers_gt-0.15.2.post0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a300ed239fc69fe01ebe92c8a71f68114f18e17567a3804829cb996f6493c5ee",
                "md5": "969b2908ececa122ad0ca71874f7785c",
                "sha256": "74b1e434ba5c9b08cba2d407d10edd3ef4a8a3bffbd9e2f4aaaa19d076bfb56a"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "969b2908ececa122ad0ca71874f7785c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 9968419,
            "upload_time": "2024-02-19T01:40:01",
            "upload_time_iso_8601": "2024-02-19T01:40:01.820025Z",
            "url": "https://files.pythonhosted.org/packages/a3/00/ed239fc69fe01ebe92c8a71f68114f18e17567a3804829cb996f6493c5ee/tokenizers_gt-0.15.2.post0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4145f4afb2fda7308e9c041df9ba9e8a42c6aeba2b050c4787b556c30cc4ee9",
                "md5": "68e2a792ea2454fdf252aca75bd21838",
                "sha256": "e6a7c2bde8ee234df2da7c52309d789ef1c068c126bdd6d1ccc486a2a57c6410"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "68e2a792ea2454fdf252aca75bd21838",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2049267,
            "upload_time": "2024-02-19T01:40:05",
            "upload_time_iso_8601": "2024-02-19T01:40:05.727460Z",
            "url": "https://files.pythonhosted.org/packages/c4/14/5f4afb2fda7308e9c041df9ba9e8a42c6aeba2b050c4787b556c30cc4ee9/tokenizers_gt-0.15.2.post0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45936e65ca583e4ee92f729d298600dd8808eee8c5113ccb54bb6e2f0d534a26",
                "md5": "6e5e19dfc19d23c299b40f37a5df618e",
                "sha256": "4c01fbcfa8de94cf2b04894d8f9fe036b9b67deb56372b9e68c02a15537f20d1"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6e5e19dfc19d23c299b40f37a5df618e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2227088,
            "upload_time": "2024-02-19T01:40:08",
            "upload_time_iso_8601": "2024-02-19T01:40:08.171929Z",
            "url": "https://files.pythonhosted.org/packages/45/93/6e65ca583e4ee92f729d298600dd8808eee8c5113ccb54bb6e2f0d534a26/tokenizers_gt-0.15.2.post0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69032b4ed76d417226e2826df07de54b9541cc84b572d590acbe3c00762e74fe",
                "md5": "fd7314518af6a7377466e22b64ed76b1",
                "sha256": "6fe84ac4c563af2976018a2621388408d08818b4c9fcb1d4fa7a54749cd897d3"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd7314518af6a7377466e22b64ed76b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2543337,
            "upload_time": "2024-02-19T01:40:10",
            "upload_time_iso_8601": "2024-02-19T01:40:10.879594Z",
            "url": "https://files.pythonhosted.org/packages/69/03/2b4ed76d417226e2826df07de54b9541cc84b572d590acbe3c00762e74fe/tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89f150d0d462aac0b1a205315b5292f37a85d7a2cce15fff58c286043c1e54e0",
                "md5": "7b0457338433529eaead1a8b7e775124",
                "sha256": "ea149fc97c0adc2a6f6c2e06503e3c5a52da06932ccfa650c10e85f2375b4a67"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7b0457338433529eaead1a8b7e775124",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2452000,
            "upload_time": "2024-02-19T01:40:13",
            "upload_time_iso_8601": "2024-02-19T01:40:13.237413Z",
            "url": "https://files.pythonhosted.org/packages/89/f1/50d0d462aac0b1a205315b5292f37a85d7a2cce15fff58c286043c1e54e0/tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7bcb231c14a228c5aa02aff7fa1192427934a8929c5eaa2ca208b4400dd5dd2",
                "md5": "e97d38e28b025f5ca31beb2b7b44ee83",
                "sha256": "66764020426f106de6e1cb2bd2343b12aada1e125de9283f9d5805185267a0fd"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "e97d38e28b025f5ca31beb2b7b44ee83",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 3700628,
            "upload_time": "2024-02-19T01:40:15",
            "upload_time_iso_8601": "2024-02-19T01:40:15.850052Z",
            "url": "https://files.pythonhosted.org/packages/b7/bc/b231c14a228c5aa02aff7fa1192427934a8929c5eaa2ca208b4400dd5dd2/tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f36ea0e8fe21a1be64987cad89a90e9aaadb14b19d3490dabf7cf68e6452876",
                "md5": "824adecad0d15305e08ceea5b73e724a",
                "sha256": "e983b5922346987a0a4d5c78ec01b944619ed8ca51c4bc7db03212f5cf76ffb9"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "824adecad0d15305e08ceea5b73e724a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 3570081,
            "upload_time": "2024-02-19T01:40:18",
            "upload_time_iso_8601": "2024-02-19T01:40:18.081879Z",
            "url": "https://files.pythonhosted.org/packages/5f/36/ea0e8fe21a1be64987cad89a90e9aaadb14b19d3490dabf7cf68e6452876/tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e170b75756d53ba0cd0b63ee6ec6dbf26923af0d5795815b19ab7e025ec66fb",
                "md5": "5633a3aa02c509c9e04afddf71dedc04",
                "sha256": "7528cffa8ed60e249b16d7165fc587141f3cf26b12af8cffa81ed8a476cf103a"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5633a3aa02c509c9e04afddf71dedc04",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 3621900,
            "upload_time": "2024-02-19T01:40:20",
            "upload_time_iso_8601": "2024-02-19T01:40:20.777844Z",
            "url": "https://files.pythonhosted.org/packages/1e/17/0b75756d53ba0cd0b63ee6ec6dbf26923af0d5795815b19ab7e025ec66fb/tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65216f757ecdeeb2015152daa1924fd6795f6f550841dccdfac58446154b673d",
                "md5": "d0c45d1620f87d0c929a818decf60fbe",
                "sha256": "dc4376aaae3aeff60ebd097bed892c8d46f01cb183ee7fe47d5708b88758258d"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d0c45d1620f87d0c929a818decf60fbe",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 9637658,
            "upload_time": "2024-02-19T01:40:23",
            "upload_time_iso_8601": "2024-02-19T01:40:23.129437Z",
            "url": "https://files.pythonhosted.org/packages/65/21/6f757ecdeeb2015152daa1924fd6795f6f550841dccdfac58446154b673d/tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08a351447abeee13fec70c787a54aa8d27628e64a52149b705dc816113f066c5",
                "md5": "efe2d29b0821bc36a89dea1a5b6424bd",
                "sha256": "8bb443163825bc1202ce34215528669dc7e1be6ac26122b57c6ac39816e93706"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "efe2d29b0821bc36a89dea1a5b6424bd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 9967892,
            "upload_time": "2024-02-19T01:40:26",
            "upload_time_iso_8601": "2024-02-19T01:40:26.445771Z",
            "url": "https://files.pythonhosted.org/packages/08/a3/51447abeee13fec70c787a54aa8d27628e64a52149b705dc816113f066c5/tokenizers_gt-0.15.2.post0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c62d38c20eb6451045313cdbc8afda1814c4e0db25fe86f3616a2c5dcd1e3084",
                "md5": "5d142de37e39dd146b080a3636b4b8ed",
                "sha256": "f409d374eb6a82970fe56ac6846cd3dfaefdd2a8e51ccf971a1f4c55d8fcaba5"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d142de37e39dd146b080a3636b4b8ed",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 2545657,
            "upload_time": "2024-02-19T01:40:29",
            "upload_time_iso_8601": "2024-02-19T01:40:29.851100Z",
            "url": "https://files.pythonhosted.org/packages/c6/2d/38c20eb6451045313cdbc8afda1814c4e0db25fe86f3616a2c5dcd1e3084/tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8851dd5b108c2a5e4f05396b9aed8158210bc704ad84ebf7d70b05f159c072f1",
                "md5": "338286a3dac00a7d454d73d7ad57e753",
                "sha256": "3bfd5a90875ac555ea536c66eebb106ed09aa037a8a31d3d3d46d9faea20f092"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "338286a3dac00a7d454d73d7ad57e753",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 3704670,
            "upload_time": "2024-02-19T01:40:32",
            "upload_time_iso_8601": "2024-02-19T01:40:32.330983Z",
            "url": "https://files.pythonhosted.org/packages/88/51/dd5b108c2a5e4f05396b9aed8158210bc704ad84ebf7d70b05f159c072f1/tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c35d7810281d5d2175e46f8f8ee178906133a249800d0e62af31896f4a8d9265",
                "md5": "7489dbe77275f3136304648d4d4814c2",
                "sha256": "7d15f95a01a23501080b3a17618b5f5ac9ff51d1ed07dba6cbb850ca563c7359"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7489dbe77275f3136304648d4d4814c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 3573106,
            "upload_time": "2024-02-19T01:40:34",
            "upload_time_iso_8601": "2024-02-19T01:40:34.526916Z",
            "url": "https://files.pythonhosted.org/packages/c3/5d/7810281d5d2175e46f8f8ee178906133a249800d0e62af31896f4a8d9265/tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f010a29c9efb1bbad4eff017764407e307a26015e484d6d55b794ae2ae32905",
                "md5": "2d7489c2c9c45ce26fd4d7d9c3f3b42c",
                "sha256": "418445d61820a746d4b28c1af08c9cee83653bc3c1bac66591a6889c72d3f629"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d7489c2c9c45ce26fd4d7d9c3f3b42c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 3624485,
            "upload_time": "2024-02-19T01:40:36",
            "upload_time_iso_8601": "2024-02-19T01:40:36.876291Z",
            "url": "https://files.pythonhosted.org/packages/3f/01/0a29c9efb1bbad4eff017764407e307a26015e484d6d55b794ae2ae32905/tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "821a5a503b1b0791d1ac6b10bd4a4ba447d516bfec5b2d191593e272613e79be",
                "md5": "1be5d02e99c87c3399754e59d3f2e9b8",
                "sha256": "f172957d4f6bca64351730351bd915eaa746e6ad2e7b3a89f4787ecaa2af4561"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1be5d02e99c87c3399754e59d3f2e9b8",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 9639313,
            "upload_time": "2024-02-19T01:40:39",
            "upload_time_iso_8601": "2024-02-19T01:40:39.887460Z",
            "url": "https://files.pythonhosted.org/packages/82/1a/5a503b1b0791d1ac6b10bd4a4ba447d516bfec5b2d191593e272613e79be/tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db02042602964a7158719ba92bdb31c911e33c8c6f64827d129940d68d934434",
                "md5": "6e4fe23ff23ccd3b39a1dab49afbc165",
                "sha256": "05e55047c7af38588817611e82e773e8ae6c3eda32d3da8433c64581421739ee"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e4fe23ff23ccd3b39a1dab49afbc165",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 9971512,
            "upload_time": "2024-02-19T01:40:42",
            "upload_time_iso_8601": "2024-02-19T01:40:42.804675Z",
            "url": "https://files.pythonhosted.org/packages/db/02/042602964a7158719ba92bdb31c911e33c8c6f64827d129940d68d934434/tokenizers_gt-0.15.2.post0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6cbb655667a712c297deb3b6bf88242edc26c9c49d313efae7a6c1b7c77bece",
                "md5": "fea6dfe67e2f9ff940257f9667569123",
                "sha256": "e721a6147af6e60263d4acdf4956dfa64fba814f1c694ab269c83ef9560caebf"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fea6dfe67e2f9ff940257f9667569123",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 2543781,
            "upload_time": "2024-02-19T01:40:45",
            "upload_time_iso_8601": "2024-02-19T01:40:45.839551Z",
            "url": "https://files.pythonhosted.org/packages/f6/cb/b655667a712c297deb3b6bf88242edc26c9c49d313efae7a6c1b7c77bece/tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57da9861a999eff0df13f5ac5e35cb3da76203e33c9ce820d55fc5137611da8c",
                "md5": "12733c9869f8c63195c394a6855a0c1c",
                "sha256": "6cce3ce54159c41dfa8e776b4652d5a677be8fe62fdc55b1989e9f8bf4d36c3e"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "12733c9869f8c63195c394a6855a0c1c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 2452087,
            "upload_time": "2024-02-19T01:40:48",
            "upload_time_iso_8601": "2024-02-19T01:40:48.147991Z",
            "url": "https://files.pythonhosted.org/packages/57/da/9861a999eff0df13f5ac5e35cb3da76203e33c9ce820d55fc5137611da8c/tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2dca600870966a6ecd1f4906dfe609409935c0b70422b73c080efd38a4df93b3",
                "md5": "4d50c3c30f16777a6d3d9e90bb17581b",
                "sha256": "11eed21a4420b76cc3b20401b13f0a869e981c3d24165f605c7fa4e0b1debb75"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "4d50c3c30f16777a6d3d9e90bb17581b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 3702739,
            "upload_time": "2024-02-19T01:40:50",
            "upload_time_iso_8601": "2024-02-19T01:40:50.498609Z",
            "url": "https://files.pythonhosted.org/packages/2d/ca/600870966a6ecd1f4906dfe609409935c0b70422b73c080efd38a4df93b3/tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a973b2a5c93fff9de85ca2819bb18fc475c13b1f3253e063797eb9349877003d",
                "md5": "f98da0277d511d49ba82e365e1ea89c9",
                "sha256": "a76f315d5efb613dd985225895c4658c3bcd7246efc7aeb46e23ebd2fbd8f6df"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f98da0277d511d49ba82e365e1ea89c9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 3569766,
            "upload_time": "2024-02-19T01:40:53",
            "upload_time_iso_8601": "2024-02-19T01:40:53.323557Z",
            "url": "https://files.pythonhosted.org/packages/a9/73/b2a5c93fff9de85ca2819bb18fc475c13b1f3253e063797eb9349877003d/tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5826fc3512be23417561aa71ae2d8355dd7b7b201745f2cf8bff35e77c4cbda8",
                "md5": "a2af31790386406ec67970addf14ebab",
                "sha256": "cc604d2e3c3bd5ae7c9a488cb23d82ead69be36085837f6e9ed1af2d2cd04e40"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a2af31790386406ec67970addf14ebab",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 3621978,
            "upload_time": "2024-02-19T01:40:56",
            "upload_time_iso_8601": "2024-02-19T01:40:56.402366Z",
            "url": "https://files.pythonhosted.org/packages/58/26/fc3512be23417561aa71ae2d8355dd7b7b201745f2cf8bff35e77c4cbda8/tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "215da6cf8a98c43d417ec57ea1aff28223e0a99fb3115f524c1d17878dbb01a8",
                "md5": "2ba973371454f061118ebc1f7fc12934",
                "sha256": "64d7e0b048bf439d72e959e70f50781b06d7536a6535f1d298ef9c35700faf89"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2ba973371454f061118ebc1f7fc12934",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 9637693,
            "upload_time": "2024-02-19T01:40:59",
            "upload_time_iso_8601": "2024-02-19T01:40:59.011841Z",
            "url": "https://files.pythonhosted.org/packages/21/5d/a6cf8a98c43d417ec57ea1aff28223e0a99fb3115f524c1d17878dbb01a8/tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b9110fa4709d6124acceb4e4202df7598b421f116334190e3fe71d84fc9ecc7",
                "md5": "73b297b6d16f67efe47b16df6d65d5da",
                "sha256": "10696bcf206ef9a556ec2cfcef76fd5da73bd885ea55cda368fe0cd1ba938c4e"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73b297b6d16f67efe47b16df6d65d5da",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 9968113,
            "upload_time": "2024-02-19T01:41:02",
            "upload_time_iso_8601": "2024-02-19T01:41:02.356479Z",
            "url": "https://files.pythonhosted.org/packages/1b/91/10fa4709d6124acceb4e4202df7598b421f116334190e3fe71d84fc9ecc7/tokenizers_gt-0.15.2.post0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06c79f744cc13d95f953e54bcc8f87a702d339f51cdd5f9c699835fe0a276b66",
                "md5": "8049e533ce2ffbf9922488aad219f75c",
                "sha256": "57c6871e31e6e4e4c3b93e89822f9e8d3e08f172b023ba7ee55443029e6f32bb"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8049e533ce2ffbf9922488aad219f75c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2543796,
            "upload_time": "2024-02-19T01:41:05",
            "upload_time_iso_8601": "2024-02-19T01:41:05.320234Z",
            "url": "https://files.pythonhosted.org/packages/06/c7/9f744cc13d95f953e54bcc8f87a702d339f51cdd5f9c699835fe0a276b66/tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8dd700b5019a7cea16d12e34ab95abd2e224eac67a3da7197d8efd9a95ffc23c",
                "md5": "11d4e5e5d0e141091b8bb48e7d118355",
                "sha256": "d9fa1c47aaba81d1193c018112989eadb30c07eeb266ef9c1890985f51dcb3c4"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "11d4e5e5d0e141091b8bb48e7d118355",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2451535,
            "upload_time": "2024-02-19T01:41:08",
            "upload_time_iso_8601": "2024-02-19T01:41:08.110581Z",
            "url": "https://files.pythonhosted.org/packages/8d/d7/00b5019a7cea16d12e34ab95abd2e224eac67a3da7197d8efd9a95ffc23c/tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c0b5561c3080c4e9b67211cdf2172bc0a0673fc15205809ea78118f3ec75ef4",
                "md5": "d884a9f00f1fcbdd93a1314487d4def0",
                "sha256": "925e7b0b633d02d24500689f3cc6638560111ff73ead161c71e47fb739371ab5"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "d884a9f00f1fcbdd93a1314487d4def0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 3700743,
            "upload_time": "2024-02-19T01:41:10",
            "upload_time_iso_8601": "2024-02-19T01:41:10.209036Z",
            "url": "https://files.pythonhosted.org/packages/6c/0b/5561c3080c4e9b67211cdf2172bc0a0673fc15205809ea78118f3ec75ef4/tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9cfefcbacc31ec79d70537045ca53af8abcd44c5b5c979eabef81452388b44b",
                "md5": "5576263465bf2ea98581561bf62ba4bc",
                "sha256": "74758b25e9f81cf5242beceb0b1ebc0fbab2ec1aabdbaf8f6efbf4a0cba4ddae"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5576263465bf2ea98581561bf62ba4bc",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 3569435,
            "upload_time": "2024-02-19T01:41:12",
            "upload_time_iso_8601": "2024-02-19T01:41:12.450683Z",
            "url": "https://files.pythonhosted.org/packages/c9/cf/efcbacc31ec79d70537045ca53af8abcd44c5b5c979eabef81452388b44b/tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "174c79dbd1fde5c9b3d17266e7e62d1482e06121b81402fc84f1bc1709e93b8b",
                "md5": "5d4603ac01e3b663f4f6bf1c00a89dac",
                "sha256": "28847e33740588cf99fb8a02d0fb80aa7b91368f5e943dd2f90f7d86a1002aab"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d4603ac01e3b663f4f6bf1c00a89dac",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 3622360,
            "upload_time": "2024-02-19T01:41:14",
            "upload_time_iso_8601": "2024-02-19T01:41:14.732922Z",
            "url": "https://files.pythonhosted.org/packages/17/4c/79dbd1fde5c9b3d17266e7e62d1482e06121b81402fc84f1bc1709e93b8b/tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "569a62a5f306fe979c33d9163bc7cb68c5228d97c33a5e1f723feb006e11a635",
                "md5": "14a36df8ad23d3298e682b2f894294a4",
                "sha256": "e0893caf6a2e2b77ec11baffe6450b47c3b68902a4b3a4b442da19fe3553d8a2"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "14a36df8ad23d3298e682b2f894294a4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 9637417,
            "upload_time": "2024-02-19T01:41:17",
            "upload_time_iso_8601": "2024-02-19T01:41:17.158722Z",
            "url": "https://files.pythonhosted.org/packages/56/9a/62a5f306fe979c33d9163bc7cb68c5228d97c33a5e1f723feb006e11a635/tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55160b36c2511d20fd73d0ff052cd14dcc86e7cfbae8d7c774e51ed62f1dd92b",
                "md5": "da1018c2650393406050c78c3465bff0",
                "sha256": "eccbad323c11bf382d19bb601bb0fb3135b07b584037e4932df79f787fc231ab"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da1018c2650393406050c78c3465bff0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 9967426,
            "upload_time": "2024-02-19T01:41:20",
            "upload_time_iso_8601": "2024-02-19T01:41:20.591981Z",
            "url": "https://files.pythonhosted.org/packages/55/16/0b36c2511d20fd73d0ff052cd14dcc86e7cfbae8d7c774e51ed62f1dd92b/tokenizers_gt-0.15.2.post0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3114da07c5c796345c10315634be4dd841c9ec1c04c092f1cd1e95dbe694834a",
                "md5": "d861ea0cfe7de9fd9b649bef05c5654d",
                "sha256": "4e73b4465115cea3784ac906e79912b08e17bf28f8684b221097c59c5e69c25b"
            },
            "downloads": -1,
            "filename": "tokenizers_gt-0.15.2.post0.tar.gz",
            "has_sig": false,
            "md5_digest": "d861ea0cfe7de9fd9b649bef05c5654d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 322980,
            "upload_time": "2024-02-19T01:41:23",
            "upload_time_iso_8601": "2024-02-19T01:41:23.247250Z",
            "url": "https://files.pythonhosted.org/packages/31/14/da07c5c796345c10315634be4dd841c9ec1c04c092f1cd1e95dbe694834a/tokenizers_gt-0.15.2.post0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-19 01:41:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "huggingface",
    "github_project": "tokenizers",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "tokenizers-gt"
}
        
Elapsed time: 0.19470s