pyrwkv-tokenizer


Namepyrwkv-tokenizer JSON
Version 0.9.0 PyPI version JSON
download
home_pageNone
SummaryRWKV Tokenizer
upload_time2024-08-16 11:36:23
maintainerNone
docs_urlNone
authorCahya Wirawan <cahya.wirawan@gmail.com>
requires_python>=3.8
licenseApache-2.0
keywords llm rwkv language model
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # RWKV Tokenizer

[![GitHub Actions Status](https://github.com/cahya-wirawan/rwkv-tokenizer/actions/workflows/CI.yml/badge.svg)](https://github.com/cahya-wirawan/rwkv-tokenizer/actions/)
[![Pypi.org Version](https://img.shields.io/pypi/v/pyrwkv-tokenizer.svg)](https://pypi.org/project/pyrwkv-tokenizer/)
[![Pypi.org Downloads](https://img.shields.io/pypi/dd/pyrwkv-tokenizer)](https://pypi.org/project/pyrwkv-tokenizer/)
[![License: Apache 2.0](https://img.shields.io/badge/license-Apache_2.0-blue.svg)](https://github.com/cahya-wirawan/rwkv-tokenizer/blob/main/LICENSE.txt)


A fast RWKV Tokenizer written in Rust that supports the World Tokenizer used by the 
[RWKV](https://github.com/BlinkDL/RWKV-LM) v5 and v6 models.

## Installation
Install the rwkv-tokenizer python module:
```
$ pip install pyrwkv-tokenizer
```
## Usage
```
>>> import pyrwkv_tokenizer
>>> tokenizer = pyrwkv_tokenizer.RWKVTokenizer()
>>> tokenizer.encode("Today is a beautiful day. 今天是美好的一天。")
[33520, 4600, 332, 59219, 21509, 47, 33, 10381, 11639, 13091, 15597, 11685, 14734, 10250, 11639, 10080]
>>> tokenizer.decode([33520, 4600, 332, 59219, 21509, 47, 33, 10381, 11639, 13091, 15597, 11685, 14734, 10250, 11639, 10080])
'Today is a beautiful day. 今天是美好的一天。'

```

## Performance and Validity Test

We compared the encoding results of the Rust RWKV Tokenizer and the original tokenizer using
the English Wikipedia and Chinese poetries datasets. Both results are identical. The Rust RWKV Tokenizer also 
passes [the original tokenizer's unit test](https://github.com/BlinkDL/ChatRWKV/blob/main/tokenizer/rwkv_tokenizer.py). 
The following steps describe how to do the unit test:
```
$ pip install pytest pyrwkv-tokenizer
$ git clone https://github.com/cahya-wirawan/rwkv-tokenizer.git
$ cd rwkv-tokenizer
$ pytest
```

We did a performance comparison on [the simple English Wikipedia dataset 20220301.en](https://huggingface.co/datasets/legacy-datasets/wikipedia) among following tokenizer:
- The original RWKV tokenizer (BlinkDL)
- Huggingface implementaion of RWKV tokenizer
- Huggingface LLama tokenizer
- Huggingface Mistral tokenizer
- Bert tokenizer
- OpenAI Tiktoken
- The Rust RWKV tokenizer

The comparison is done using this [jupyter notebook](https://github.com/cahya-wirawan/rwkv-tokenizer/blob/main/tools/rwkv_tokenizers.ipynb) in a M2 Mac mini. The Rust RWKV 
tokenizer is around 17x faster than the original tokenizer and 9.6x faster than OpenAI Tiktoken.

![performance-comparison](https://media.githubusercontent.com/media/cahya-wirawan/rwkv-tokenizer/main/data/performance-comparison.png)

## Bugs
~~There are still bugs where some characters are not encoded correctly.~~ The bug have been fixed in the version 0.3.0.
*This tokenizer is my very first Rust program, so it might still have many bugs and silly codes :-)*

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyrwkv-tokenizer",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "LLM, RWKV, Language Model",
    "author": "Cahya Wirawan <cahya.wirawan@gmail.com>",
    "author_email": "Cahya Wirawan <cahya.wirawan@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/1c/02/f2c0ef6499ffcbaa7ae48f29ace48c425fd9c3f07410656b38b4a3c85fdf/pyrwkv_tokenizer-0.9.0.tar.gz",
    "platform": null,
    "description": "# RWKV Tokenizer\n\n[![GitHub Actions Status](https://github.com/cahya-wirawan/rwkv-tokenizer/actions/workflows/CI.yml/badge.svg)](https://github.com/cahya-wirawan/rwkv-tokenizer/actions/)\n[![Pypi.org Version](https://img.shields.io/pypi/v/pyrwkv-tokenizer.svg)](https://pypi.org/project/pyrwkv-tokenizer/)\n[![Pypi.org Downloads](https://img.shields.io/pypi/dd/pyrwkv-tokenizer)](https://pypi.org/project/pyrwkv-tokenizer/)\n[![License: Apache 2.0](https://img.shields.io/badge/license-Apache_2.0-blue.svg)](https://github.com/cahya-wirawan/rwkv-tokenizer/blob/main/LICENSE.txt)\n\n\nA fast RWKV Tokenizer written in Rust that supports the World Tokenizer used by the \n[RWKV](https://github.com/BlinkDL/RWKV-LM) v5 and v6 models.\n\n## Installation\nInstall the rwkv-tokenizer python module:\n```\n$ pip install pyrwkv-tokenizer\n```\n## Usage\n```\n>>> import pyrwkv_tokenizer\n>>> tokenizer = pyrwkv_tokenizer.RWKVTokenizer()\n>>> tokenizer.encode(\"Today is a beautiful day. \u4eca\u5929\u662f\u7f8e\u597d\u7684\u4e00\u5929\u3002\")\n[33520, 4600, 332, 59219, 21509, 47, 33, 10381, 11639, 13091, 15597, 11685, 14734, 10250, 11639, 10080]\n>>> tokenizer.decode([33520, 4600, 332, 59219, 21509, 47, 33, 10381, 11639, 13091, 15597, 11685, 14734, 10250, 11639, 10080])\n'Today is a beautiful day. \u4eca\u5929\u662f\u7f8e\u597d\u7684\u4e00\u5929\u3002'\n\n```\n\n## Performance and Validity Test\n\nWe compared the encoding results of the Rust RWKV Tokenizer and the original tokenizer using\nthe English Wikipedia and Chinese poetries datasets. Both results are identical. The Rust RWKV Tokenizer also \npasses [the original tokenizer's unit test](https://github.com/BlinkDL/ChatRWKV/blob/main/tokenizer/rwkv_tokenizer.py). \nThe following steps describe how to do the unit test:\n```\n$ pip install pytest pyrwkv-tokenizer\n$ git clone https://github.com/cahya-wirawan/rwkv-tokenizer.git\n$ cd rwkv-tokenizer\n$ pytest\n```\n\nWe did a performance comparison on [the simple English Wikipedia dataset 20220301.en](https://huggingface.co/datasets/legacy-datasets/wikipedia) among following tokenizer:\n- The original RWKV tokenizer (BlinkDL)\n- Huggingface implementaion of RWKV tokenizer\n- Huggingface LLama tokenizer\n- Huggingface Mistral tokenizer\n- Bert tokenizer\n- OpenAI Tiktoken\n- The Rust RWKV tokenizer\n\nThe comparison is done using this [jupyter notebook](https://github.com/cahya-wirawan/rwkv-tokenizer/blob/main/tools/rwkv_tokenizers.ipynb) in a M2 Mac mini. The Rust RWKV \ntokenizer is around 17x faster than the original tokenizer and 9.6x faster than OpenAI Tiktoken.\n\n![performance-comparison](https://media.githubusercontent.com/media/cahya-wirawan/rwkv-tokenizer/main/data/performance-comparison.png)\n\n## Bugs\n~~There are still bugs where some characters are not encoded correctly.~~ The bug have been fixed in the version 0.3.0.\n*This tokenizer is my very first Rust program, so it might still have many bugs and silly codes :-)*\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "RWKV Tokenizer",
    "version": "0.9.0",
    "project_urls": {
        "changelog": "https://github.com/cahya-wirawan/rwkv-tokenizer/blob/master/CHANGELOG.md",
        "documentation": "https://github.com/cahya-wirawan/rwkv-tokenizer",
        "homepage": "https://github.com/cahya-wirawan/rwkv-tokenizer",
        "repository": "https://github.com/cahya-wirawan/rwkv-tokenizer"
    },
    "split_keywords": [
        "llm",
        " rwkv",
        " language model"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d480cd6e59769b712c19f802c13432e04cd067171c4e73f929decdb487b6f1f",
                "md5": "3c07ba35e1378491f94cbb7dd00ce591",
                "sha256": "b11638675101aacd900019650d8bab82f8f886f52c7270616756617b40de8ac4"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c07ba35e1378491f94cbb7dd00ce591",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1272657,
            "upload_time": "2024-08-16T11:36:15",
            "upload_time_iso_8601": "2024-08-16T11:36:15.805548Z",
            "url": "https://files.pythonhosted.org/packages/1d/48/0cd6e59769b712c19f802c13432e04cd067171c4e73f929decdb487b6f1f/pyrwkv_tokenizer-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49acbfef44dbacdfca3387fbd586b23423bb9c43945bbc3d28f2d35971bdc4b7",
                "md5": "5c9e871a91e4a008ad850796aed26db8",
                "sha256": "4e4e5f4bfdeccf9196428338d7a41da0f5ac71f45230eff0f31b26195c0867b3"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5c9e871a91e4a008ad850796aed26db8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1223835,
            "upload_time": "2024-08-16T11:36:08",
            "upload_time_iso_8601": "2024-08-16T11:36:08.363697Z",
            "url": "https://files.pythonhosted.org/packages/49/ac/bfef44dbacdfca3387fbd586b23423bb9c43945bbc3d28f2d35971bdc4b7/pyrwkv_tokenizer-0.9.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c52737b59a0279c3d16c1ff97e4a768765084185464e4beb52c99784c54ab998",
                "md5": "18e3662d46a25b079e7040210d86ed48",
                "sha256": "93ba9c5de30c393537f7e76692609a439c65ac667ee8df98074a5284bc0ac6a4"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "18e3662d46a25b079e7040210d86ed48",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1376329,
            "upload_time": "2024-08-16T11:34:30",
            "upload_time_iso_8601": "2024-08-16T11:34:30.991909Z",
            "url": "https://files.pythonhosted.org/packages/c5/27/37b59a0279c3d16c1ff97e4a768765084185464e4beb52c99784c54ab998/pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88374008e1be35db7ca365272051eb1f18abfe420e5193eb2a95789765b3ed02",
                "md5": "a0b33425923a90a92f7cf665b480cd4e",
                "sha256": "1101ea3fd0a97a364d6d70cd0a7e32cf06cded4fce8eeb479a3b66237c29562b"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a0b33425923a90a92f7cf665b480cd4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1315336,
            "upload_time": "2024-08-16T11:34:49",
            "upload_time_iso_8601": "2024-08-16T11:34:49.129427Z",
            "url": "https://files.pythonhosted.org/packages/88/37/4008e1be35db7ca365272051eb1f18abfe420e5193eb2a95789765b3ed02/pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8784d4398608da0ac2bebde72641203d2d83fa5b5d63506018d067bd665a0bac",
                "md5": "91ff07ea72d3f45879e3323fbbef7a33",
                "sha256": "37e1755cfa9e6281e21d207fffab5dda5155829382ce8e0d9c82a29c2c0f0d28"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "91ff07ea72d3f45879e3323fbbef7a33",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1385776,
            "upload_time": "2024-08-16T11:35:39",
            "upload_time_iso_8601": "2024-08-16T11:35:39.276735Z",
            "url": "https://files.pythonhosted.org/packages/87/84/d4398608da0ac2bebde72641203d2d83fa5b5d63506018d067bd665a0bac/pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "addd68c4903882448b23eccb2096ffad5a1c00de0384211e696fc05d117ae634",
                "md5": "c822727bc188ebd36dce3ce2a9ee6b4e",
                "sha256": "b1a81e3aa47f9df8637d1a0a8d5e37a86ab38fddd0fd8b0223b6dd2dc8a1e7a1"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c822727bc188ebd36dce3ce2a9ee6b4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1423863,
            "upload_time": "2024-08-16T11:35:05",
            "upload_time_iso_8601": "2024-08-16T11:35:05.084974Z",
            "url": "https://files.pythonhosted.org/packages/ad/dd/68c4903882448b23eccb2096ffad5a1c00de0384211e696fc05d117ae634/pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6fc3f0c6df634b2db11a75ac2fedbe0ea1e64fd1a19dfe40d48cc227c38f00b1",
                "md5": "e22326f761647fbf915ea3401014f79e",
                "sha256": "f893bb795b5c57f0bf4c80c2be320c63bec7ed6dd76ae4a8a96025779f937eb0"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e22326f761647fbf915ea3401014f79e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1478851,
            "upload_time": "2024-08-16T11:35:22",
            "upload_time_iso_8601": "2024-08-16T11:35:22.650562Z",
            "url": "https://files.pythonhosted.org/packages/6f/c3/f0c6df634b2db11a75ac2fedbe0ea1e64fd1a19dfe40d48cc227c38f00b1/pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36d8d48fc0b4d758fc03037a18736330eb6cdd421f6b63251906412c775cc5a3",
                "md5": "187d8540f544e2d595e42d480229bbce",
                "sha256": "e97dad6fe37178f415b341d042005e56973a994da1b1126eb056b39f249517a8"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "187d8540f544e2d595e42d480229bbce",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1398303,
            "upload_time": "2024-08-16T11:35:53",
            "upload_time_iso_8601": "2024-08-16T11:35:53.931246Z",
            "url": "https://files.pythonhosted.org/packages/36/d8/d48fc0b4d758fc03037a18736330eb6cdd421f6b63251906412c775cc5a3/pyrwkv_tokenizer-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6cddaeae19141bab8d060e1a2c6c673775b7c9bd3cde8b8a0f0d8d9d81d8c4e",
                "md5": "3e1aa61cf16e685c9af1e15077095cf6",
                "sha256": "1f1717230f4414854865d7deccd9ce44bc0292b3aef864d8f873078b11aeffd9"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "3e1aa61cf16e685c9af1e15077095cf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1056681,
            "upload_time": "2024-08-16T11:36:34",
            "upload_time_iso_8601": "2024-08-16T11:36:34.832456Z",
            "url": "https://files.pythonhosted.org/packages/d6/cd/daeae19141bab8d060e1a2c6c673775b7c9bd3cde8b8a0f0d8d9d81d8c4e/pyrwkv_tokenizer-0.9.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "937c5221936e387cf0a53674fe1bac5a130a30f035968b07fb20ce6f360ce803",
                "md5": "26ed473149392a0e30e9d7c16d701a00",
                "sha256": "522c08b90cec22c9032fc4994bddd273df64ef311cda1bd5c93ead0f72489828"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "26ed473149392a0e30e9d7c16d701a00",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1125845,
            "upload_time": "2024-08-16T11:36:25",
            "upload_time_iso_8601": "2024-08-16T11:36:25.761307Z",
            "url": "https://files.pythonhosted.org/packages/93/7c/5221936e387cf0a53674fe1bac5a130a30f035968b07fb20ce6f360ce803/pyrwkv_tokenizer-0.9.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3da1e40107600de798b10bc604b61aff3e3190bc8b2481047a3faaecd600b7fe",
                "md5": "41b8ad7657d1bfc8d7db0a9ddc78ebb5",
                "sha256": "c6caba70f28e4ff9102428727ce9ae175c84459e415f7a699d670a8c0ce0bea9"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "41b8ad7657d1bfc8d7db0a9ddc78ebb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1272205,
            "upload_time": "2024-08-16T11:36:18",
            "upload_time_iso_8601": "2024-08-16T11:36:18.197160Z",
            "url": "https://files.pythonhosted.org/packages/3d/a1/e40107600de798b10bc604b61aff3e3190bc8b2481047a3faaecd600b7fe/pyrwkv_tokenizer-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b04ae1a3740f39bc7d8607c907598aa0c02e3e2fd7bf284725f9a8a12741b1b",
                "md5": "4b784f7fe9a2d7205fa7488fc6bc9449",
                "sha256": "5e198e314e5b64e0777b98e157f2162a62cca2b33b67a56b63fe66a64de050e8"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4b784f7fe9a2d7205fa7488fc6bc9449",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1223746,
            "upload_time": "2024-08-16T11:36:10",
            "upload_time_iso_8601": "2024-08-16T11:36:10.294828Z",
            "url": "https://files.pythonhosted.org/packages/3b/04/ae1a3740f39bc7d8607c907598aa0c02e3e2fd7bf284725f9a8a12741b1b/pyrwkv_tokenizer-0.9.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80f5b71ffc6e6ec6301374483f4efa0778e640c04c239697e8723d10cd13f8e3",
                "md5": "d0635ecfdae524613e53c8ee51d0a974",
                "sha256": "ace27d8a4c5f1ceb21f51ae59716465308803b94a690282807337276a6c13203"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d0635ecfdae524613e53c8ee51d0a974",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1377089,
            "upload_time": "2024-08-16T11:34:33",
            "upload_time_iso_8601": "2024-08-16T11:34:33.277896Z",
            "url": "https://files.pythonhosted.org/packages/80/f5/b71ffc6e6ec6301374483f4efa0778e640c04c239697e8723d10cd13f8e3/pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "589ef208c322c4f5fe9182c74a1eb0f17cdcbe1376897928d9073f4c42258642",
                "md5": "e684bdd1f876b5a29812cec693ca9d06",
                "sha256": "286bcbf9680a524a8889ffb34e3c66e6d911725dc1386c71206e1dd21077d5e2"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e684bdd1f876b5a29812cec693ca9d06",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1314949,
            "upload_time": "2024-08-16T11:34:51",
            "upload_time_iso_8601": "2024-08-16T11:34:51.409271Z",
            "url": "https://files.pythonhosted.org/packages/58/9e/f208c322c4f5fe9182c74a1eb0f17cdcbe1376897928d9073f4c42258642/pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ef3e79c9198b045a2c3c25002c9700f127555685eb2ff04d8afc60bc75d07d6",
                "md5": "f5fbb1789c0edf0cccb4ef01a715bb93",
                "sha256": "135ec4d24542f88e331c7e7cda3d96264af05755db3e4cef76273b2b9ab201e6"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f5fbb1789c0edf0cccb4ef01a715bb93",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1385137,
            "upload_time": "2024-08-16T11:35:41",
            "upload_time_iso_8601": "2024-08-16T11:35:41.327215Z",
            "url": "https://files.pythonhosted.org/packages/6e/f3/e79c9198b045a2c3c25002c9700f127555685eb2ff04d8afc60bc75d07d6/pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcffecd8b119f0b2fe6cfb8f0587868e017b2a1733220de9906f93755b591b54",
                "md5": "8b5da27cebf076e09665be9ef1bfd79e",
                "sha256": "9f63aad0a45c1bec9be993f526778c72f1a615eb07137f42ee1cec5b1dd5f597"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8b5da27cebf076e09665be9ef1bfd79e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1423430,
            "upload_time": "2024-08-16T11:35:07",
            "upload_time_iso_8601": "2024-08-16T11:35:07.202019Z",
            "url": "https://files.pythonhosted.org/packages/bc/ff/ecd8b119f0b2fe6cfb8f0587868e017b2a1733220de9906f93755b591b54/pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1839c804375768a78a99735183ad2e343db6adc120ae89d92e752179917b202",
                "md5": "262f03cb33489ff0f16a024a17b0c579",
                "sha256": "998e9ba8ce0170041813424fc096bbd2eed0bb173dd3284435ce4f27b3f0adf8"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "262f03cb33489ff0f16a024a17b0c579",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1477790,
            "upload_time": "2024-08-16T11:35:24",
            "upload_time_iso_8601": "2024-08-16T11:35:24.709484Z",
            "url": "https://files.pythonhosted.org/packages/c1/83/9c804375768a78a99735183ad2e343db6adc120ae89d92e752179917b202/pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "377569183a1f53c12c60aec638ed428ee94b28daf61c40bf1c70efb85dd2a65f",
                "md5": "1b971f2a186dae735168f91b5dc68e4f",
                "sha256": "455f8e501aabd9420d90e49a65bc1746eaec4e75104a15fac83c45a5e895e738"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b971f2a186dae735168f91b5dc68e4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1398209,
            "upload_time": "2024-08-16T11:35:56",
            "upload_time_iso_8601": "2024-08-16T11:35:56.009261Z",
            "url": "https://files.pythonhosted.org/packages/37/75/69183a1f53c12c60aec638ed428ee94b28daf61c40bf1c70efb85dd2a65f/pyrwkv_tokenizer-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4aac2dcb8df3771466523ce50336de28996e738894fe2b2698fd747975dcb0d7",
                "md5": "763fe22830af3b69ac283f55c4a73779",
                "sha256": "b93f8d68b55b794abbf8b3301e128520461bcc55c5af387012e18f67182bd8fb"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "763fe22830af3b69ac283f55c4a73779",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1056634,
            "upload_time": "2024-08-16T11:36:36",
            "upload_time_iso_8601": "2024-08-16T11:36:36.632601Z",
            "url": "https://files.pythonhosted.org/packages/4a/ac/2dcb8df3771466523ce50336de28996e738894fe2b2698fd747975dcb0d7/pyrwkv_tokenizer-0.9.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a585ba8c59280fa743c55d385de3be9304318ec6c7fa5dc883e924d34fdb14a",
                "md5": "dd7e35c7ba60bc24ec3c74aa818bed01",
                "sha256": "556a885935beb561552cc082872a772a9e7cabd119ac7405f5bcb16d1d44340b"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dd7e35c7ba60bc24ec3c74aa818bed01",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1124691,
            "upload_time": "2024-08-16T11:36:27",
            "upload_time_iso_8601": "2024-08-16T11:36:27.626768Z",
            "url": "https://files.pythonhosted.org/packages/4a/58/5ba8c59280fa743c55d385de3be9304318ec6c7fa5dc883e924d34fdb14a/pyrwkv_tokenizer-0.9.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a4fdeb09bc2a554de63dc036aea587f96fe1bc0111de53847361d32249a4417",
                "md5": "a29de4d3fcaf0037d186cbbcd25ecae1",
                "sha256": "dbc3b006c8b37b8cb8b071d7e11daf6186492e7c0a34cf9c1ce2cd672a6776c7"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a29de4d3fcaf0037d186cbbcd25ecae1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1271402,
            "upload_time": "2024-08-16T11:36:19",
            "upload_time_iso_8601": "2024-08-16T11:36:19.896248Z",
            "url": "https://files.pythonhosted.org/packages/7a/4f/deb09bc2a554de63dc036aea587f96fe1bc0111de53847361d32249a4417/pyrwkv_tokenizer-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb5a4c7b66453fa8cef173d73b3a90a66d6625f0f2cbb403f03baa4654582f0f",
                "md5": "988371c48554fe1b968aa81b80df258b",
                "sha256": "b6bf8c93e7fa3870f2eb0b39ddd439a4da5c653d934472ae5e51dc9b786a3690"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "988371c48554fe1b968aa81b80df258b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1223120,
            "upload_time": "2024-08-16T11:36:12",
            "upload_time_iso_8601": "2024-08-16T11:36:12.115986Z",
            "url": "https://files.pythonhosted.org/packages/eb/5a/4c7b66453fa8cef173d73b3a90a66d6625f0f2cbb403f03baa4654582f0f/pyrwkv_tokenizer-0.9.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b943cacd73ee3dac4e188ee01188ead59c089a4ea1ff619f93c9d6485c5f4499",
                "md5": "f54ed03701fffb44dabe711ca914c34b",
                "sha256": "0cbbc7c7667e321a0b5e22dbd5324d7d3d8ddeb3546f27502cce126c87572605"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f54ed03701fffb44dabe711ca914c34b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1376053,
            "upload_time": "2024-08-16T11:34:35",
            "upload_time_iso_8601": "2024-08-16T11:34:35.502373Z",
            "url": "https://files.pythonhosted.org/packages/b9/43/cacd73ee3dac4e188ee01188ead59c089a4ea1ff619f93c9d6485c5f4499/pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19d4831a38fc6c47d719bf25409d15e4cad5ff3c744cb1ae1cb41f649de55047",
                "md5": "005074a05b26f319fda8a191efc918ba",
                "sha256": "c4de809bd621cd54db1943bc26571a27a1d9869c83c9d3d7265568f8879cf51c"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "005074a05b26f319fda8a191efc918ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1314674,
            "upload_time": "2024-08-16T11:34:53",
            "upload_time_iso_8601": "2024-08-16T11:34:53.456330Z",
            "url": "https://files.pythonhosted.org/packages/19/d4/831a38fc6c47d719bf25409d15e4cad5ff3c744cb1ae1cb41f649de55047/pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "faa6651bddebc27fa88b77896400b7f249b531dda82f27d3e931564c69968237",
                "md5": "3034883888fb379e6d7d47a4e342e28a",
                "sha256": "9d11833cd194f374c97062f2b42e3b95972c11a4b8a030345dddeb232fcd77a0"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3034883888fb379e6d7d47a4e342e28a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1386062,
            "upload_time": "2024-08-16T11:35:43",
            "upload_time_iso_8601": "2024-08-16T11:35:43.585361Z",
            "url": "https://files.pythonhosted.org/packages/fa/a6/651bddebc27fa88b77896400b7f249b531dda82f27d3e931564c69968237/pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c3ddc1937b735ca853b3b54db0c58042e68732901a4d93d395448679b73c119",
                "md5": "84f238f748fad0a7d1d4e65cf364005f",
                "sha256": "593f083161df044c9d5a25fa3e5949297b183510594b2dcf8020a6cc9f32c828"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "84f238f748fad0a7d1d4e65cf364005f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1422886,
            "upload_time": "2024-08-16T11:35:09",
            "upload_time_iso_8601": "2024-08-16T11:35:09.516148Z",
            "url": "https://files.pythonhosted.org/packages/8c/3d/dc1937b735ca853b3b54db0c58042e68732901a4d93d395448679b73c119/pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf5affb7f904a0a830258aacad8fbb37fc4c138860822c9497d848a92d8b6dea",
                "md5": "5e56fa710192741b2f6bc6856cd4c736",
                "sha256": "ddbfeecbcd4a97c4c2659e4d37a25fe9e51362f1e8160e9d506f2ae9c238ef1c"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5e56fa710192741b2f6bc6856cd4c736",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1465396,
            "upload_time": "2024-08-16T11:35:26",
            "upload_time_iso_8601": "2024-08-16T11:35:26.863538Z",
            "url": "https://files.pythonhosted.org/packages/bf/5a/ffb7f904a0a830258aacad8fbb37fc4c138860822c9497d848a92d8b6dea/pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70d33ebe81e7b42d4d379adec3453e194565c053001d65adb5cbbee432d79a92",
                "md5": "5b5cd350b85d978ffebc8f4fad5d3cf9",
                "sha256": "0296b86d31286b37f656c61ea6f943c5ec862f718d07b616b4f8837471201442"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b5cd350b85d978ffebc8f4fad5d3cf9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1397888,
            "upload_time": "2024-08-16T11:35:58",
            "upload_time_iso_8601": "2024-08-16T11:35:58.017668Z",
            "url": "https://files.pythonhosted.org/packages/70/d3/3ebe81e7b42d4d379adec3453e194565c053001d65adb5cbbee432d79a92/pyrwkv_tokenizer-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec999a70f195d632fca15169b974e5fb8eb99b5878dd850494bac6fe1137a800",
                "md5": "f77d6d5c57e20d5bb072dd49e6f2fda2",
                "sha256": "ca8c23acacb84d1146a13610bc96f3d7c19dc6f228d19cdfd97f78d634f2dfa2"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "f77d6d5c57e20d5bb072dd49e6f2fda2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1054913,
            "upload_time": "2024-08-16T11:36:38",
            "upload_time_iso_8601": "2024-08-16T11:36:38.240545Z",
            "url": "https://files.pythonhosted.org/packages/ec/99/9a70f195d632fca15169b974e5fb8eb99b5878dd850494bac6fe1137a800/pyrwkv_tokenizer-0.9.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6c73fa67dc4e4c94d832ed6e02dfad557ac215eee0b13cf88f4a812a73848e5",
                "md5": "0cddaf65232c16d4198c69c710dae336",
                "sha256": "ddea96c63934f512cd19eae4143c5090c9f20ed06a1f55228352fe23c386b27d"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0cddaf65232c16d4198c69c710dae336",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1124869,
            "upload_time": "2024-08-16T11:36:29",
            "upload_time_iso_8601": "2024-08-16T11:36:29.269829Z",
            "url": "https://files.pythonhosted.org/packages/e6/c7/3fa67dc4e4c94d832ed6e02dfad557ac215eee0b13cf88f4a812a73848e5/pyrwkv_tokenizer-0.9.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2f71f2f5a1e9faf266707fda0829e82378b613274d9565b2e505c692cdace76",
                "md5": "ea9a82bf5a6dc4a2e9ee301308f18da2",
                "sha256": "8a6798e37d53e6eca074c3559d05622de7f6e365f1c58231383fcdb69d6e6d30"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ea9a82bf5a6dc4a2e9ee301308f18da2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1377799,
            "upload_time": "2024-08-16T11:34:37",
            "upload_time_iso_8601": "2024-08-16T11:34:37.692744Z",
            "url": "https://files.pythonhosted.org/packages/d2/f7/1f2f5a1e9faf266707fda0829e82378b613274d9565b2e505c692cdace76/pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38ade3971914cafe5e2adaafa00158d4aaf055cd9173d86a6b47f779a50220da",
                "md5": "3c19baa74d899afd60683c7a786be053",
                "sha256": "eda47725cd87a5a64583d3267d9b98e8f50719cb503b781f358628f9dcea4e42"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3c19baa74d899afd60683c7a786be053",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1315049,
            "upload_time": "2024-08-16T11:34:55",
            "upload_time_iso_8601": "2024-08-16T11:34:55.360838Z",
            "url": "https://files.pythonhosted.org/packages/38/ad/e3971914cafe5e2adaafa00158d4aaf055cd9173d86a6b47f779a50220da/pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc5cb47653fd343f2f308f81b48ad292107e76281025e7c4f024eb3da8549589",
                "md5": "aac259565bfd7e77877476911ad30a10",
                "sha256": "d0dae9cde7df4e2c26c1894f46a588e52f95f4800f61514d672197809b71a8f4"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "aac259565bfd7e77877476911ad30a10",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1386831,
            "upload_time": "2024-08-16T11:35:45",
            "upload_time_iso_8601": "2024-08-16T11:35:45.539334Z",
            "url": "https://files.pythonhosted.org/packages/bc/5c/b47653fd343f2f308f81b48ad292107e76281025e7c4f024eb3da8549589/pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "644d14b35ab038365687f0686f9215907985de7a1aa10efe9e3857479b6ce8ef",
                "md5": "1acd9085ee234ffa27b001730c7e6388",
                "sha256": "eabfbe8649c5033220e2f5252270530b89bbd06b8c61b1cb93eb3bba3a325721"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1acd9085ee234ffa27b001730c7e6388",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1424893,
            "upload_time": "2024-08-16T11:35:11",
            "upload_time_iso_8601": "2024-08-16T11:35:11.365734Z",
            "url": "https://files.pythonhosted.org/packages/64/4d/14b35ab038365687f0686f9215907985de7a1aa10efe9e3857479b6ce8ef/pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83cf29908a05cd33ac413cf73f99eec139e56f0caafbe32bb3be719f86e7db42",
                "md5": "b8f3fa538056e114ac21e5d7b07a41bb",
                "sha256": "a428eefa572b6b5a0412585bd6ff966582c304a6b0c310ede60b50d9724a7848"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b8f3fa538056e114ac21e5d7b07a41bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1477022,
            "upload_time": "2024-08-16T11:35:28",
            "upload_time_iso_8601": "2024-08-16T11:35:28.884609Z",
            "url": "https://files.pythonhosted.org/packages/83/cf/29908a05cd33ac413cf73f99eec139e56f0caafbe32bb3be719f86e7db42/pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e35faab508af4c0ed349cad6e4ba0649b5fa4bd53bb9a204b79d3814d9052b8e",
                "md5": "30771f557a6e7dc928930fc00979f92f",
                "sha256": "ede27b89c690d3268e9d09d27bcb0718b8f45650720d42b838c608287090d184"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30771f557a6e7dc928930fc00979f92f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1399043,
            "upload_time": "2024-08-16T11:35:59",
            "upload_time_iso_8601": "2024-08-16T11:35:59.775460Z",
            "url": "https://files.pythonhosted.org/packages/e3/5f/aab508af4c0ed349cad6e4ba0649b5fa4bd53bb9a204b79d3814d9052b8e/pyrwkv_tokenizer-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f240356a4238d3757828a16e1eabcacf12b2edd9d786f88619b764c5897cc6fb",
                "md5": "1cd9aacd790f57f87006397805046eff",
                "sha256": "d932ed01c095497040cb706d36a0a589769a1a0d0e5a0d25cd226bc8b55fdf7b"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "1cd9aacd790f57f87006397805046eff",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1055863,
            "upload_time": "2024-08-16T11:36:40",
            "upload_time_iso_8601": "2024-08-16T11:36:40.039357Z",
            "url": "https://files.pythonhosted.org/packages/f2/40/356a4238d3757828a16e1eabcacf12b2edd9d786f88619b764c5897cc6fb/pyrwkv_tokenizer-0.9.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3090ee5ebf29a190a9bb8bcb130f29369500e40d5bfcaa6119e7e228477be20d",
                "md5": "4e30e5abcb6cbda508d80c754b066d77",
                "sha256": "60c9c9cbdcb9a319598a3f1559ec2b4a40aaf4244443c3c56103604d4e452e1a"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4e30e5abcb6cbda508d80c754b066d77",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1125950,
            "upload_time": "2024-08-16T11:36:31",
            "upload_time_iso_8601": "2024-08-16T11:36:31.215596Z",
            "url": "https://files.pythonhosted.org/packages/30/90/ee5ebf29a190a9bb8bcb130f29369500e40d5bfcaa6119e7e228477be20d/pyrwkv_tokenizer-0.9.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da02e52c4fc95aa480648e48f9ad58ea413f8a8b3d51e0f81943a0aa1eca8f0e",
                "md5": "404db0fd8d93790541dacc9f998ab237",
                "sha256": "e4369140af1d77daa0d251d6a1a1e7a6458e9a8d352595b138b6d37475ed3d84"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "404db0fd8d93790541dacc9f998ab237",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1273484,
            "upload_time": "2024-08-16T11:36:21",
            "upload_time_iso_8601": "2024-08-16T11:36:21.921754Z",
            "url": "https://files.pythonhosted.org/packages/da/02/e52c4fc95aa480648e48f9ad58ea413f8a8b3d51e0f81943a0aa1eca8f0e/pyrwkv_tokenizer-0.9.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdeb8e331f73065c6859307c8cf3f251c9ba08aaafee1438c491dc58aed4081e",
                "md5": "8d7e379646d6e3f3ef95b737aedc8912",
                "sha256": "c62e2bd00ff2ef384fc30ddfaf4e76dac82629c348eadeefebfaa22c3a28d5a4"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8d7e379646d6e3f3ef95b737aedc8912",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1224065,
            "upload_time": "2024-08-16T11:36:14",
            "upload_time_iso_8601": "2024-08-16T11:36:14.142631Z",
            "url": "https://files.pythonhosted.org/packages/fd/eb/8e331f73065c6859307c8cf3f251c9ba08aaafee1438c491dc58aed4081e/pyrwkv_tokenizer-0.9.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb6d72fbc608ee2b7b85792f0f71ab4bcebc4978127c609c392daa268bd4cecc",
                "md5": "393a64281a2c18ffe5cefdfc83822bd1",
                "sha256": "e76ab7d0826d6a6110c4cbf85d5b95073cc15985593489a976670a285ec0bdbb"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "393a64281a2c18ffe5cefdfc83822bd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1378124,
            "upload_time": "2024-08-16T11:34:40",
            "upload_time_iso_8601": "2024-08-16T11:34:40.220600Z",
            "url": "https://files.pythonhosted.org/packages/fb/6d/72fbc608ee2b7b85792f0f71ab4bcebc4978127c609c392daa268bd4cecc/pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed5ce783731603833919300dc0de8c9ba2b0b5d98e5fd3097f91796ab6279847",
                "md5": "cd52c1c1001569ba56ef74f292b3f443",
                "sha256": "2f59e158b5efe8887a25fab5c49ce03e23edd8bc10a5033404ab73cfb5f04a70"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cd52c1c1001569ba56ef74f292b3f443",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1315900,
            "upload_time": "2024-08-16T11:34:57",
            "upload_time_iso_8601": "2024-08-16T11:34:57.085781Z",
            "url": "https://files.pythonhosted.org/packages/ed/5c/e783731603833919300dc0de8c9ba2b0b5d98e5fd3097f91796ab6279847/pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c59527d5b25a0f7288e57c50f6b3dca9fc11645656ec1d266d7f755e0620e343",
                "md5": "8219b357f443d1298e91e5cd8b77bde3",
                "sha256": "f85f4453b155189df0b854d4fb378f8f0cede03d2297b801bbfd23990410f921"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8219b357f443d1298e91e5cd8b77bde3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1386113,
            "upload_time": "2024-08-16T11:35:48",
            "upload_time_iso_8601": "2024-08-16T11:35:48.044086Z",
            "url": "https://files.pythonhosted.org/packages/c5/95/27d5b25a0f7288e57c50f6b3dca9fc11645656ec1d266d7f755e0620e343/pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ead5ca41b5bb4ad0c966ef3b5697539036b4b67a12b38bd68b6cfcb386142b64",
                "md5": "36a117b3ad7629c88bc4e411f890bf0a",
                "sha256": "a46de8e68d9339c69ff5e417becac0a93b94d6be42b55bb0e4f6c88b9b20d9ca"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "36a117b3ad7629c88bc4e411f890bf0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1425375,
            "upload_time": "2024-08-16T11:35:13",
            "upload_time_iso_8601": "2024-08-16T11:35:13.850265Z",
            "url": "https://files.pythonhosted.org/packages/ea/d5/ca41b5bb4ad0c966ef3b5697539036b4b67a12b38bd68b6cfcb386142b64/pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "915ccf76594f36c77dbf8c40fb894ba6aaafa35807db33af20986ef95fcd0682",
                "md5": "c7f326d44ddd151130d1ccc4fa6359e5",
                "sha256": "e7f8154af7d0bc55d60f3956b394803ed561cf3114d94da83e6676746ad42a8a"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c7f326d44ddd151130d1ccc4fa6359e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1478666,
            "upload_time": "2024-08-16T11:35:31",
            "upload_time_iso_8601": "2024-08-16T11:35:31.224372Z",
            "url": "https://files.pythonhosted.org/packages/91/5c/cf76594f36c77dbf8c40fb894ba6aaafa35807db33af20986ef95fcd0682/pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "295a0360f18748a1e6007e970d1fe281c8250985490ca07bb14c20196a5fa235",
                "md5": "2f4d5ae368984d873e28f30b39434c29",
                "sha256": "1a11c5f04d17d561aa0d2935b53eb2c4f5b8ee604267046b0f333533f07f1447"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f4d5ae368984d873e28f30b39434c29",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1399447,
            "upload_time": "2024-08-16T11:36:02",
            "upload_time_iso_8601": "2024-08-16T11:36:02.282640Z",
            "url": "https://files.pythonhosted.org/packages/29/5a/0360f18748a1e6007e970d1fe281c8250985490ca07bb14c20196a5fa235/pyrwkv_tokenizer-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71e124530d1a8f5b4ca7c7cc9af1fdec0e00b64ea1c9d40e0e0e8cb5a1ccd9cd",
                "md5": "c0e8a29e30b28260d5dbf9f5c1e19205",
                "sha256": "c35ba5abfdf911572c627c89890e9a3d9652e01e084a26a614a45421c88a1c2b"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "c0e8a29e30b28260d5dbf9f5c1e19205",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1057356,
            "upload_time": "2024-08-16T11:36:41",
            "upload_time_iso_8601": "2024-08-16T11:36:41.744157Z",
            "url": "https://files.pythonhosted.org/packages/71/e1/24530d1a8f5b4ca7c7cc9af1fdec0e00b64ea1c9d40e0e0e8cb5a1ccd9cd/pyrwkv_tokenizer-0.9.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b74fd46141bc53f0c0b8453f989446aaeb95e1cc347d43c8d2448e906779a972",
                "md5": "fa340d2c1daf9a582eac40c50060fd1a",
                "sha256": "f6d1dc1c7b04413c9aa88b1ae36558738a86379942ed46090f29432f43521db0"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fa340d2c1daf9a582eac40c50060fd1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1126263,
            "upload_time": "2024-08-16T11:36:32",
            "upload_time_iso_8601": "2024-08-16T11:36:32.974861Z",
            "url": "https://files.pythonhosted.org/packages/b7/4f/d46141bc53f0c0b8453f989446aaeb95e1cc347d43c8d2448e906779a972/pyrwkv_tokenizer-0.9.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c880351de95bd55d88e515dcfb1c10e5d008197865a9e76b79d2916e6da1908",
                "md5": "bf90f04d185298b85d064e267569a60e",
                "sha256": "a4415052323cedc8c23663c46087917b784560dfdff0d5b9f532965e76daf728"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bf90f04d185298b85d064e267569a60e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1377055,
            "upload_time": "2024-08-16T11:34:42",
            "upload_time_iso_8601": "2024-08-16T11:34:42.584985Z",
            "url": "https://files.pythonhosted.org/packages/9c/88/0351de95bd55d88e515dcfb1c10e5d008197865a9e76b79d2916e6da1908/pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3ad0d04fd23e204ba2f5d2076cc2af39dee32094d14d9a03599e93f460b05f6",
                "md5": "4c4e1cd347c68906b2607b9e9ef225a0",
                "sha256": "fa28cd14f4a838557ae88b04435a4900021953010f11c4063ab3bd27a53826e4"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4c4e1cd347c68906b2607b9e9ef225a0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1313740,
            "upload_time": "2024-08-16T11:34:59",
            "upload_time_iso_8601": "2024-08-16T11:34:59.214750Z",
            "url": "https://files.pythonhosted.org/packages/a3/ad/0d04fd23e204ba2f5d2076cc2af39dee32094d14d9a03599e93f460b05f6/pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "988400e0ced5347729c2cc1650821d75b298abddb7f2deccda453152e1646485",
                "md5": "f091e1699b43d8565b87ad880e74819f",
                "sha256": "7d535c0050a74bdedc16aed44961e3a23a793782105d97a1a751cb34da848e3c"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f091e1699b43d8565b87ad880e74819f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1385633,
            "upload_time": "2024-08-16T11:35:50",
            "upload_time_iso_8601": "2024-08-16T11:35:50.121370Z",
            "url": "https://files.pythonhosted.org/packages/98/84/00e0ced5347729c2cc1650821d75b298abddb7f2deccda453152e1646485/pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "519205e0aed511cdd0c997b19eff251c809333cd34428ace3c0d18027ba2ccc5",
                "md5": "e6c58ec9cb3653e65ba92b6c8ee75b55",
                "sha256": "0b5b52d68354c9ac7ecb171d9948e381f8c865b2875eae75a27e224506be7f41"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e6c58ec9cb3653e65ba92b6c8ee75b55",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1424147,
            "upload_time": "2024-08-16T11:35:16",
            "upload_time_iso_8601": "2024-08-16T11:35:16.037112Z",
            "url": "https://files.pythonhosted.org/packages/51/92/05e0aed511cdd0c997b19eff251c809333cd34428ace3c0d18027ba2ccc5/pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fee19ece531d841488abd74e7450f5746b12606aa89f2e11da1f635d45defade",
                "md5": "35442297a7a588d51fd40cad960677bf",
                "sha256": "f2babec7cbe37cd7f699576c13b8e9d6661e878ded3afb45ebec3858e62d494b"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "35442297a7a588d51fd40cad960677bf",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1478757,
            "upload_time": "2024-08-16T11:35:32",
            "upload_time_iso_8601": "2024-08-16T11:35:32.934390Z",
            "url": "https://files.pythonhosted.org/packages/fe/e1/9ece531d841488abd74e7450f5746b12606aa89f2e11da1f635d45defade/pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5729ddf0be746a2a5ad8d7801f71bab7870d0266c2936af953e139f56c112ca",
                "md5": "a05d13cc79532323624bc9d1247e685e",
                "sha256": "6836d325389c7cd3c909b3dd1b39d69a4bb985fc22eb6429520e63d3f084b4aa"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a05d13cc79532323624bc9d1247e685e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1398203,
            "upload_time": "2024-08-16T11:36:04",
            "upload_time_iso_8601": "2024-08-16T11:36:04.267336Z",
            "url": "https://files.pythonhosted.org/packages/f5/72/9ddf0be746a2a5ad8d7801f71bab7870d0266c2936af953e139f56c112ca/pyrwkv_tokenizer-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac3c7f09facd9ebfbe76bf2da33f9975c7272a2c846f17874e6aed07b2287404",
                "md5": "78d6b1fb1b02bb9ffeac0397961392bb",
                "sha256": "1a7affd7f2856eb35fa17c95804da8f7a83fb715b98cc4a862649c961932b143"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "78d6b1fb1b02bb9ffeac0397961392bb",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1377269,
            "upload_time": "2024-08-16T11:34:44",
            "upload_time_iso_8601": "2024-08-16T11:34:44.309770Z",
            "url": "https://files.pythonhosted.org/packages/ac/3c/7f09facd9ebfbe76bf2da33f9975c7272a2c846f17874e6aed07b2287404/pyrwkv_tokenizer-0.9.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3e29687f9abfa963f53dfebf09cce50c286cc03849a126674036decf9cd9cce",
                "md5": "fc38e553e8fc2c4f7b2db42ba315549d",
                "sha256": "79cc148fe73674c0bff2f4b72705fa08cddabf189d30d144d7d648c2b9cf7c31"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fc38e553e8fc2c4f7b2db42ba315549d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1314337,
            "upload_time": "2024-08-16T11:35:00",
            "upload_time_iso_8601": "2024-08-16T11:35:00.953815Z",
            "url": "https://files.pythonhosted.org/packages/e3/e2/9687f9abfa963f53dfebf09cce50c286cc03849a126674036decf9cd9cce/pyrwkv_tokenizer-0.9.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21516fa1b1b8046f3ffb49ae606296e28caebdeb3b7d2678a76ff2a81bb07325",
                "md5": "621115be2c115aa5466ed4db159e2541",
                "sha256": "00f17caa3a0916434146cd6afc03fdb8885537d9a8d8d033f31005fb1c6040af"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "621115be2c115aa5466ed4db159e2541",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1425021,
            "upload_time": "2024-08-16T11:35:18",
            "upload_time_iso_8601": "2024-08-16T11:35:18.256764Z",
            "url": "https://files.pythonhosted.org/packages/21/51/6fa1b1b8046f3ffb49ae606296e28caebdeb3b7d2678a76ff2a81bb07325/pyrwkv_tokenizer-0.9.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1d460592887959719a28396cb3c9185a67f45926af2b65c665933c44884e54b",
                "md5": "afbe804801d2052525a7bb2b1458e69c",
                "sha256": "8b5e2719a6f765808e2e5ba239a38244da854eabb38fcb21d3d38b85aef15941"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "afbe804801d2052525a7bb2b1458e69c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1479222,
            "upload_time": "2024-08-16T11:35:35",
            "upload_time_iso_8601": "2024-08-16T11:35:35.070218Z",
            "url": "https://files.pythonhosted.org/packages/f1/d4/60592887959719a28396cb3c9185a67f45926af2b65c665933c44884e54b/pyrwkv_tokenizer-0.9.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a15be0bba1c23f18a45ec46e6e003f30d157d6cdb41178f120901b86aff59b4a",
                "md5": "f8540f41f720d27d9ab3ddb315ca4cf1",
                "sha256": "a6d85750c4a22abc1d225b2b4309b72817516420b35ee203c17b6bbd719749b9"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f8540f41f720d27d9ab3ddb315ca4cf1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1377371,
            "upload_time": "2024-08-16T11:34:46",
            "upload_time_iso_8601": "2024-08-16T11:34:46.538083Z",
            "url": "https://files.pythonhosted.org/packages/a1/5b/e0bba1c23f18a45ec46e6e003f30d157d6cdb41178f120901b86aff59b4a/pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fad0403f14818f7394e852392a6527b190e09c5651514f174ccd4fff6296cbd0",
                "md5": "8ef4494059f18b05366f09e4491f9c28",
                "sha256": "b0eacd47937eca83b4260fec920557c9971644ffc0a7b5cc775b365f7eb52f0c"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8ef4494059f18b05366f09e4491f9c28",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1314156,
            "upload_time": "2024-08-16T11:35:02",
            "upload_time_iso_8601": "2024-08-16T11:35:02.935829Z",
            "url": "https://files.pythonhosted.org/packages/fa/d0/403f14818f7394e852392a6527b190e09c5651514f174ccd4fff6296cbd0/pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3e20b24673279fe95a059ce734cc2bc5801ee610f6f07d6f0a42906a80adb8f",
                "md5": "156ecf294f8d2fbc160b90681c111ec8",
                "sha256": "9954e9b378aee4b86b06a36b1d1aa0db9686c14e97e51acd7e470b2da785de6e"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "156ecf294f8d2fbc160b90681c111ec8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1387492,
            "upload_time": "2024-08-16T11:35:51",
            "upload_time_iso_8601": "2024-08-16T11:35:51.915433Z",
            "url": "https://files.pythonhosted.org/packages/c3/e2/0b24673279fe95a059ce734cc2bc5801ee610f6f07d6f0a42906a80adb8f/pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea7b5e35804a765aecc3f7896b08893bf225b12d8644feecf3b7c21fed5ff3d9",
                "md5": "6e01d568cb8d9345702900fbd54481a0",
                "sha256": "0479a71d33541085fbfd29c6f52ea0a29d32e407091f3efd8bd9e6c6f6668b88"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6e01d568cb8d9345702900fbd54481a0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1424529,
            "upload_time": "2024-08-16T11:35:20",
            "upload_time_iso_8601": "2024-08-16T11:35:20.493740Z",
            "url": "https://files.pythonhosted.org/packages/ea/7b/5e35804a765aecc3f7896b08893bf225b12d8644feecf3b7c21fed5ff3d9/pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fcb255fa1324c840e426b0a316e28cfaaa596bb7368f3819c0002505c8294dd4",
                "md5": "e056b23565c84de7cca42746053c650f",
                "sha256": "1f2fcd59cf2ef631a194ce6c0a3fa89761ff99b8cd3ad00cab2f5002d5b70df0"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e056b23565c84de7cca42746053c650f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1480807,
            "upload_time": "2024-08-16T11:35:37",
            "upload_time_iso_8601": "2024-08-16T11:35:37.284711Z",
            "url": "https://files.pythonhosted.org/packages/fc/b2/55fa1324c840e426b0a316e28cfaaa596bb7368f3819c0002505c8294dd4/pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef5068599381b9438345bb6b4da1472d367ae519b089847496022c951a35206d",
                "md5": "b9eaaa760683703771763e4ab8ddfe72",
                "sha256": "b9a1ff756912d0e1b4268b539cef395a3fea1ef561109c9c90492f1548535e18"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b9eaaa760683703771763e4ab8ddfe72",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1398477,
            "upload_time": "2024-08-16T11:36:06",
            "upload_time_iso_8601": "2024-08-16T11:36:06.274231Z",
            "url": "https://files.pythonhosted.org/packages/ef/50/68599381b9438345bb6b4da1472d367ae519b089847496022c951a35206d/pyrwkv_tokenizer-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c02f2c0ef6499ffcbaa7ae48f29ace48c425fd9c3f07410656b38b4a3c85fdf",
                "md5": "ba1db0046fa19a7e0d5a0f23e7476c84",
                "sha256": "c31b4a1d60f0b79429d1441c706ad4e5c5bba04dd48f37a1cd0b119d08114e7f"
            },
            "downloads": -1,
            "filename": "pyrwkv_tokenizer-0.9.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ba1db0046fa19a7e0d5a0f23e7476c84",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 393293,
            "upload_time": "2024-08-16T11:36:23",
            "upload_time_iso_8601": "2024-08-16T11:36:23.852145Z",
            "url": "https://files.pythonhosted.org/packages/1c/02/f2c0ef6499ffcbaa7ae48f29ace48c425fd9c3f07410656b38b4a3c85fdf/pyrwkv_tokenizer-0.9.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-16 11:36:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cahya-wirawan",
    "github_project": "rwkv-tokenizer",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyrwkv-tokenizer"
}
        
Elapsed time: 0.31431s