rwkv-tokenizer


Namerwkv-tokenizer JSON
Version 0.5.0 PyPI version JSON
download
home_pageNone
SummaryRWKV Tokenizer
upload_time2024-06-08 21:00:31
maintainerNone
docs_urlNone
authorCahya Wirawan <cahya.wirawan@gmail.com>
requires_python>=3.8
licenseNone
keywords llm rwkv language model
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # RWKV Tokenizer (WIP)

A fast RWKV Tokenizer using Rust, it supports the World tokenizer used by the RWKV v5 and v6 model.
*This is my very first Rust program, so there might still have many bugs and silly codes :-)*

## Installation
Install the rwkv-tokenizer python module:
```
$ pip install rwkv-tokenizer
```
## Usage
```
>>> import rwkv_tokenizer
>>> tokenizer = rwkv_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 some parts of 
English Wikipedia and Chinese poetries dataset. Both results are identical. The Rust RWKV Tokenizer passes
also the unit test that the original tokenizer provided. Following steps describe how to do the unittest:
```
$ pip install pytest rwkv-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
- OpenAI Tiktoken
- The Rust RWKV tokenizer

The comparison is done using [this jupyter notebook](rwkv_tokenizers.ipynb) in Google Colab. The Rust RWKV tokenizer 
is around 7x faster than the original tokenizer and 3x faster than OpenAI Tiktoken.

![performance-comparison](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.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "rwkv-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/56/ed/5d058bd89e3d2dc4d53e4138ba3241bf37001f5121f29a17037bd5984bd0/rwkv_tokenizer-0.5.0.tar.gz",
    "platform": null,
    "description": "# RWKV Tokenizer (WIP)\n\nA fast RWKV Tokenizer using Rust, it supports the World tokenizer used by the RWKV v5 and v6 model.\n*This is my very first Rust program, so there might still have many bugs and silly codes :-)*\n\n## Installation\nInstall the rwkv-tokenizer python module:\n```\n$ pip install rwkv-tokenizer\n```\n## Usage\n```\n>>> import rwkv_tokenizer\n>>> tokenizer = rwkv_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 some parts of \nEnglish Wikipedia and Chinese poetries dataset. Both results are identical. The Rust RWKV Tokenizer passes\nalso the unit test that the original tokenizer provided. Following steps describe how to do the unittest:\n```\n$ pip install pytest rwkv-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- OpenAI Tiktoken\n- The Rust RWKV tokenizer\n\nThe comparison is done using [this jupyter notebook](rwkv_tokenizers.ipynb) in Google Colab. The Rust RWKV tokenizer \nis around 7x faster than the original tokenizer and 3x faster than OpenAI Tiktoken.\n\n![performance-comparison](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",
    "bugtrack_url": null,
    "license": null,
    "summary": "RWKV Tokenizer",
    "version": "0.5.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": "da725753ba484d4a9daee7e16d9c6edc6a2e5dd4ad16a6f13d076b4351eff2d2",
                "md5": "55dd8acfcaede909d3e291810b2941ab",
                "sha256": "c5aa143ca264b13a6c7cd74e67bc3e49d88018c117a34c8867711e4c76d5840f"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55dd8acfcaede909d3e291810b2941ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1242691,
            "upload_time": "2024-06-08T21:00:25",
            "upload_time_iso_8601": "2024-06-08T21:00:25.836605Z",
            "url": "https://files.pythonhosted.org/packages/da/72/5753ba484d4a9daee7e16d9c6edc6a2e5dd4ad16a6f13d076b4351eff2d2/rwkv_tokenizer-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2e820dd92621b6968b6864700cc9f811c0a24481d6648d4fb4961fc7425dc32",
                "md5": "c25fb14f507aaa54ea7c9278651cc110",
                "sha256": "7186d94783800a581ccc47da19a6c05072f43ef9d6a57f91ed1e1e00d43680bb"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c25fb14f507aaa54ea7c9278651cc110",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1200445,
            "upload_time": "2024-06-08T21:00:18",
            "upload_time_iso_8601": "2024-06-08T21:00:18.629037Z",
            "url": "https://files.pythonhosted.org/packages/f2/e8/20dd92621b6968b6864700cc9f811c0a24481d6648d4fb4961fc7425dc32/rwkv_tokenizer-0.5.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37556d8fe35aed815fc4d225f921ea33e03d491ce2d933be451452de0b6efbdf",
                "md5": "50ddfcbd6f1fb588a555af1e874b8b39",
                "sha256": "0d904b9501934d94d21d945f858c693c002e03e0b70fea2f89e9c118498e47e0"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "50ddfcbd6f1fb588a555af1e874b8b39",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2072958,
            "upload_time": "2024-06-08T20:58:58",
            "upload_time_iso_8601": "2024-06-08T20:58:58.998177Z",
            "url": "https://files.pythonhosted.org/packages/37/55/6d8fe35aed815fc4d225f921ea33e03d491ce2d933be451452de0b6efbdf/rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c890637d6b175b73a277010564ad1990d3fcfdaf096107a1fe9aee31d16b6ad",
                "md5": "69aaa21503f249e2640a3a4d990634d5",
                "sha256": "09278f10d2a7d8431f2902307b62cd1dbe31647f6079a5444bca2588a0fcd239"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "69aaa21503f249e2640a3a4d990634d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2028235,
            "upload_time": "2024-06-08T20:59:12",
            "upload_time_iso_8601": "2024-06-08T20:59:12.653079Z",
            "url": "https://files.pythonhosted.org/packages/9c/89/0637d6b175b73a277010564ad1990d3fcfdaf096107a1fe9aee31d16b6ad/rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4389ce2eee4e5ed78697c7a7f7501b438af8dbe8040d51eaf86b285e053d201e",
                "md5": "2ac35c66b9178f485aa9c39d52377cb2",
                "sha256": "6477b5d112c82f8588c5943612779447f7697463629e0f491e2531159f3bd25a"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2ac35c66b9178f485aa9c39d52377cb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2125014,
            "upload_time": "2024-06-08T20:59:24",
            "upload_time_iso_8601": "2024-06-08T20:59:24.719431Z",
            "url": "https://files.pythonhosted.org/packages/43/89/ce2eee4e5ed78697c7a7f7501b438af8dbe8040d51eaf86b285e053d201e/rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb27034570629a33212b0d9ead619023ccf5257a1dc96325aaa8e4766af52f98",
                "md5": "60ce891a556ef91683ee0111314c018f",
                "sha256": "e1fae09722b86f98792c3532bd087105851f271c19d2945f82ddca851305e03a"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "60ce891a556ef91683ee0111314c018f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2280666,
            "upload_time": "2024-06-08T20:59:37",
            "upload_time_iso_8601": "2024-06-08T20:59:37.871251Z",
            "url": "https://files.pythonhosted.org/packages/fb/27/034570629a33212b0d9ead619023ccf5257a1dc96325aaa8e4766af52f98/rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff7610b79b3a89b27b1b9c5bd65c46ca3770492bd247a9e05c7d0cd8d1635ba0",
                "md5": "58f2a1b5dcc04103e0fbbff78b550f03",
                "sha256": "bb8947ae26f8c1d4a19f639eb3abbb10e65ba03538bc0bfaab53ca0ee6f57ce5"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58f2a1b5dcc04103e0fbbff78b550f03",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2113941,
            "upload_time": "2024-06-08T21:00:04",
            "upload_time_iso_8601": "2024-06-08T21:00:04.305683Z",
            "url": "https://files.pythonhosted.org/packages/ff/76/10b79b3a89b27b1b9c5bd65c46ca3770492bd247a9e05c7d0cd8d1635ba0/rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11adf0ef078dc4c4fd809b5577b73fd5a11da0a404379bed97ffc462709d8b9f",
                "md5": "6a1e9bc05cd4a74fff8b86d56cfb82d9",
                "sha256": "bd14b5ed7ef744c57b4f02346f376eac06b426acb6a85231e827959cf5878827"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "6a1e9bc05cd4a74fff8b86d56cfb82d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2105710,
            "upload_time": "2024-06-08T20:59:51",
            "upload_time_iso_8601": "2024-06-08T20:59:51.038703Z",
            "url": "https://files.pythonhosted.org/packages/11/ad/f0ef078dc4c4fd809b5577b73fd5a11da0a404379bed97ffc462709d8b9f/rwkv_tokenizer-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3e7d73f2e60d472af6c029e437a4d198f6af8c6ce67d9010cbdd6fa8201c9cd",
                "md5": "b0e49c300de73889f1e7346dd7f5ebec",
                "sha256": "0132490d64e15d506e1feee99d1b4b1c59c7ba33bf6e08dfa289955141f5b41e"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b0e49c300de73889f1e7346dd7f5ebec",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1031092,
            "upload_time": "2024-06-08T21:00:41",
            "upload_time_iso_8601": "2024-06-08T21:00:41.495545Z",
            "url": "https://files.pythonhosted.org/packages/a3/e7/d73f2e60d472af6c029e437a4d198f6af8c6ce67d9010cbdd6fa8201c9cd/rwkv_tokenizer-0.5.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf5d4ba7a6e7e61b7255ad2ca6e8fef57c359ba18e1054d41a9e6e2c63477a90",
                "md5": "20fdad0cbdc36784a45a742e5052abcc",
                "sha256": "daf32acbc611523b072022bfa4c7b6be2e5b8a2cd2bdfb519ee33d94dc78d08a"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "20fdad0cbdc36784a45a742e5052abcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1094082,
            "upload_time": "2024-06-08T21:00:33",
            "upload_time_iso_8601": "2024-06-08T21:00:33.485568Z",
            "url": "https://files.pythonhosted.org/packages/cf/5d/4ba7a6e7e61b7255ad2ca6e8fef57c359ba18e1054d41a9e6e2c63477a90/rwkv_tokenizer-0.5.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9a69a20192939ad839d2d0f37dd7dedfda8db25220b24fde61e050b137a6037",
                "md5": "7e16a7a83d2563e9545528a87efc7989",
                "sha256": "7f1c7a03e96b175fa01ce55757078d55c79f75a8fa40306952f5eb1aad854dd4"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e16a7a83d2563e9545528a87efc7989",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1243339,
            "upload_time": "2024-06-08T21:00:27",
            "upload_time_iso_8601": "2024-06-08T21:00:27.216800Z",
            "url": "https://files.pythonhosted.org/packages/a9/a6/9a20192939ad839d2d0f37dd7dedfda8db25220b24fde61e050b137a6037/rwkv_tokenizer-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d7051107fd11aa9a02d3d95060ef26b27e24672ee36d9e113b011982d8fd7bc",
                "md5": "428771ebe2f3758b8284774fcc3ae574",
                "sha256": "51b3d9b056b865919101a06434979bae6726a0926612385e2756e3d723090354"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "428771ebe2f3758b8284774fcc3ae574",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1200422,
            "upload_time": "2024-06-08T21:00:20",
            "upload_time_iso_8601": "2024-06-08T21:00:20.728735Z",
            "url": "https://files.pythonhosted.org/packages/4d/70/51107fd11aa9a02d3d95060ef26b27e24672ee36d9e113b011982d8fd7bc/rwkv_tokenizer-0.5.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70b0d98583e8b04e964f1c185637cac2ad807a42f0a318619ed4950bec1ce668",
                "md5": "e0bb8593393bdbe5e31891f98da9b471",
                "sha256": "0046528610961810bd6cc74cf8059ca3f52ed60f11e8ea14d0d39220cdc946f4"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e0bb8593393bdbe5e31891f98da9b471",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2073278,
            "upload_time": "2024-06-08T20:59:01",
            "upload_time_iso_8601": "2024-06-08T20:59:01.025067Z",
            "url": "https://files.pythonhosted.org/packages/70/b0/d98583e8b04e964f1c185637cac2ad807a42f0a318619ed4950bec1ce668/rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67106e70e607f3c1c31e162fbfd6e1fb86df73993d6ec16fc5ac77a731c56316",
                "md5": "10b821e5c3bdbf125cfa84aa486cdd68",
                "sha256": "ed673a17088b94763721ffc156ca59df86b22970320faa2fcac67811c15a8682"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "10b821e5c3bdbf125cfa84aa486cdd68",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2028033,
            "upload_time": "2024-06-08T20:59:14",
            "upload_time_iso_8601": "2024-06-08T20:59:14.321530Z",
            "url": "https://files.pythonhosted.org/packages/67/10/6e70e607f3c1c31e162fbfd6e1fb86df73993d6ec16fc5ac77a731c56316/rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32614f4b06298dd9cb6b370a0c8d16e3e81445dd45a25c4ff4f7a1d1e2650acf",
                "md5": "dcf9fcd9bfd81d71e6f0ce494c8a79ff",
                "sha256": "4cee9de0670a9433477885151954edb2a9acd061d29e58def5c5d1424b9e20c0"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "dcf9fcd9bfd81d71e6f0ce494c8a79ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2124242,
            "upload_time": "2024-06-08T20:59:26",
            "upload_time_iso_8601": "2024-06-08T20:59:26.003866Z",
            "url": "https://files.pythonhosted.org/packages/32/61/4f4b06298dd9cb6b370a0c8d16e3e81445dd45a25c4ff4f7a1d1e2650acf/rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f44cf94fc494bc68bcc83cbcf69e286a4c21b782c80d28898c671c0563e2142e",
                "md5": "64e09e3b0637fc19937e64c230961a77",
                "sha256": "819af8e1647e4fdeb4de33700d42501503825b41991f06985a59d22339c4fa84"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "64e09e3b0637fc19937e64c230961a77",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2278849,
            "upload_time": "2024-06-08T20:59:39",
            "upload_time_iso_8601": "2024-06-08T20:59:39.596874Z",
            "url": "https://files.pythonhosted.org/packages/f4/4c/f94fc494bc68bcc83cbcf69e286a4c21b782c80d28898c671c0563e2142e/rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "266c932418829bce1f53cd453d443b0776f42319414ec9ad3bd43d0afcc88d2b",
                "md5": "d1e53bad9ef77cbb5a504936ac7d9458",
                "sha256": "3998a72fe48dc499a6a252aa838ea27c2e24b936bc2917011184d94d714cef48"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1e53bad9ef77cbb5a504936ac7d9458",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2114717,
            "upload_time": "2024-06-08T21:00:06",
            "upload_time_iso_8601": "2024-06-08T21:00:06.049137Z",
            "url": "https://files.pythonhosted.org/packages/26/6c/932418829bce1f53cd453d443b0776f42319414ec9ad3bd43d0afcc88d2b/rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d942899cd93262c62a68ff065d1db223a5f31e8b68f62860aa35ffb3beaae59",
                "md5": "e7bd9ba74bbda7f5dacd619f461a7bc0",
                "sha256": "be5a1692298e66c7d18c70fb4c7f9c753656bf632b6ea6b0ee0c5f1d5b0b4c59"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e7bd9ba74bbda7f5dacd619f461a7bc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2105970,
            "upload_time": "2024-06-08T20:59:52",
            "upload_time_iso_8601": "2024-06-08T20:59:52.784714Z",
            "url": "https://files.pythonhosted.org/packages/8d/94/2899cd93262c62a68ff065d1db223a5f31e8b68f62860aa35ffb3beaae59/rwkv_tokenizer-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4827f2b20a68adb5b907c64083c51c5d1e61df25f5dac80f9a59ae830e2c3b8",
                "md5": "6285db04f47acb37f11beeab55dfe8c8",
                "sha256": "ef3df2aa14ae76933bc77b59c891ae87f61a389b20704fc5674a7f325d488041"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "6285db04f47acb37f11beeab55dfe8c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1030971,
            "upload_time": "2024-06-08T21:00:43",
            "upload_time_iso_8601": "2024-06-08T21:00:43.205841Z",
            "url": "https://files.pythonhosted.org/packages/d4/82/7f2b20a68adb5b907c64083c51c5d1e61df25f5dac80f9a59ae830e2c3b8/rwkv_tokenizer-0.5.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "436815ba313162c31041fa2c547f19494b693348b54bf9d5ef6ad1598cc250b0",
                "md5": "add790a443404f5776c78edd66bf2df7",
                "sha256": "16b4e0716a776fe557aef80e8deed420b3510e2bcf5dfc422b84517cb9c13933"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "add790a443404f5776c78edd66bf2df7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1093730,
            "upload_time": "2024-06-08T21:00:35",
            "upload_time_iso_8601": "2024-06-08T21:00:35.337084Z",
            "url": "https://files.pythonhosted.org/packages/43/68/15ba313162c31041fa2c547f19494b693348b54bf9d5ef6ad1598cc250b0/rwkv_tokenizer-0.5.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58e086c8d886865bdcf980f2aa2d5bd8156686814e96173758d8292be571048d",
                "md5": "804859bb1c9b3a8b91db95c0d1628733",
                "sha256": "ab1a59de4c050de87342b1caaf1ee06d161621ea1494449201374a8f3b132c85"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "804859bb1c9b3a8b91db95c0d1628733",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1241276,
            "upload_time": "2024-06-08T21:00:28",
            "upload_time_iso_8601": "2024-06-08T21:00:28.585079Z",
            "url": "https://files.pythonhosted.org/packages/58/e0/86c8d886865bdcf980f2aa2d5bd8156686814e96173758d8292be571048d/rwkv_tokenizer-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "439f3c7006542a6ef81aa6f5f75d4a0de8f222e09215f7ae4e185a34c11536ff",
                "md5": "1588a233ea7c32a451c5c0c5bbf262e9",
                "sha256": "f140516c862df9dfd05f94c355284b15094dfe70f3a9b2d2264faffee5e00d53"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1588a233ea7c32a451c5c0c5bbf262e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1198779,
            "upload_time": "2024-06-08T21:00:22",
            "upload_time_iso_8601": "2024-06-08T21:00:22.577087Z",
            "url": "https://files.pythonhosted.org/packages/43/9f/3c7006542a6ef81aa6f5f75d4a0de8f222e09215f7ae4e185a34c11536ff/rwkv_tokenizer-0.5.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "325ff968606d8929944a230d3bf179d0e65d576ada0f334047ab02ef9deb5571",
                "md5": "b6fd420931ad9ffe8dcff97cc6c91672",
                "sha256": "2ff5b4a2fff93015554a553543f5620f7f801681e745e120b12bef4a59bee9fb"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b6fd420931ad9ffe8dcff97cc6c91672",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2071177,
            "upload_time": "2024-06-08T20:59:02",
            "upload_time_iso_8601": "2024-06-08T20:59:02.484872Z",
            "url": "https://files.pythonhosted.org/packages/32/5f/f968606d8929944a230d3bf179d0e65d576ada0f334047ab02ef9deb5571/rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e88ed09180539962cce33949f0924319d7566dfd0e28a7a88d535ed89dd81aae",
                "md5": "a311178ecea59a21454703bd1e1b28b9",
                "sha256": "b4a936b1fc7e27b47e83a623c502a579f86c9d4ffff17692e709a19103b462d5"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a311178ecea59a21454703bd1e1b28b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2028740,
            "upload_time": "2024-06-08T20:59:15",
            "upload_time_iso_8601": "2024-06-08T20:59:15.680295Z",
            "url": "https://files.pythonhosted.org/packages/e8/8e/d09180539962cce33949f0924319d7566dfd0e28a7a88d535ed89dd81aae/rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e88f42ea8c3a5728855dcc2a3ee4b04a9ae68c8c0621186430f6303fffa6f016",
                "md5": "e5463fa7987b8820bd3d388bc07ea750",
                "sha256": "4e1e8e669a12a6ff419c364d780ac40a3c6e564c4c10c08ed653d616d4e818c4"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e5463fa7987b8820bd3d388bc07ea750",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2123243,
            "upload_time": "2024-06-08T20:59:27",
            "upload_time_iso_8601": "2024-06-08T20:59:27.311590Z",
            "url": "https://files.pythonhosted.org/packages/e8/8f/42ea8c3a5728855dcc2a3ee4b04a9ae68c8c0621186430f6303fffa6f016/rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "980b312cbad62c54b1e825defaee05816ad28da23c8872c7112b2b574e6773a9",
                "md5": "300328bd735c2441080dc282c150e8a0",
                "sha256": "3a0f0312fbcbf683733909fac7adb09223e6b728736bce391b02d7024cf8cc35"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "300328bd735c2441080dc282c150e8a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2267238,
            "upload_time": "2024-06-08T20:59:40",
            "upload_time_iso_8601": "2024-06-08T20:59:40.919373Z",
            "url": "https://files.pythonhosted.org/packages/98/0b/312cbad62c54b1e825defaee05816ad28da23c8872c7112b2b574e6773a9/rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2bdc11302a6ea6b5eb54aef530befa162a28776e09f5546fce67e7344d2d36c",
                "md5": "caa3eadc36fca960a984587f519fd980",
                "sha256": "decf55c22139b11363725fcc5415c898d5481772c97307b1c712d39f8409885d"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "caa3eadc36fca960a984587f519fd980",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2112855,
            "upload_time": "2024-06-08T21:00:08",
            "upload_time_iso_8601": "2024-06-08T21:00:08.012645Z",
            "url": "https://files.pythonhosted.org/packages/d2/bd/c11302a6ea6b5eb54aef530befa162a28776e09f5546fce67e7344d2d36c/rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "119f2d8bc78eb9bfce627c945a7979b383eceddf2ca42728257e39816172883a",
                "md5": "be6f0b3016fe8cddc34976bb02adbc6b",
                "sha256": "dba68b0d8d5edd602c7f2291a8e83a5155555a565a2ecd1b27e7dbb01d13cd96"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "be6f0b3016fe8cddc34976bb02adbc6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2105676,
            "upload_time": "2024-06-08T20:59:54",
            "upload_time_iso_8601": "2024-06-08T20:59:54.659651Z",
            "url": "https://files.pythonhosted.org/packages/11/9f/2d8bc78eb9bfce627c945a7979b383eceddf2ca42728257e39816172883a/rwkv_tokenizer-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64c48f43a7411ed89823a1b5c6d97ea94dc9c954c13ed2183cdafffc86c25d56",
                "md5": "be900cb20cd438e9c2d458377103565d",
                "sha256": "0d474d82c59d02974a7569c835a21f4293415d36dda2f32c7de5bab4340f0a8a"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "be900cb20cd438e9c2d458377103565d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1031250,
            "upload_time": "2024-06-08T21:00:44",
            "upload_time_iso_8601": "2024-06-08T21:00:44.665438Z",
            "url": "https://files.pythonhosted.org/packages/64/c4/8f43a7411ed89823a1b5c6d97ea94dc9c954c13ed2183cdafffc86c25d56/rwkv_tokenizer-0.5.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2837ae7ed9a70894fbb8c16cc37f701c39cf85b88d7b66fe68c7b3b02b88079a",
                "md5": "5ef7a9786c250b8ee1e14514b2ce9fc4",
                "sha256": "77632d4447ba130a56872ae25ee9a7959275869336ee3bb276bd88429306a8a9"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5ef7a9786c250b8ee1e14514b2ce9fc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1093346,
            "upload_time": "2024-06-08T21:00:37",
            "upload_time_iso_8601": "2024-06-08T21:00:37.028824Z",
            "url": "https://files.pythonhosted.org/packages/28/37/ae7ed9a70894fbb8c16cc37f701c39cf85b88d7b66fe68c7b3b02b88079a/rwkv_tokenizer-0.5.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6838aa3aa7da217231d4292b31f39859bbde23f7b01623118ff87ec9bec99fb",
                "md5": "502b30736efbe9d38dcdb5509ca665da",
                "sha256": "e22229947c81a0cae8c63efa65a271e5c879429708d105ebf684c88f551b8ee1"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "502b30736efbe9d38dcdb5509ca665da",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2073460,
            "upload_time": "2024-06-08T20:59:03",
            "upload_time_iso_8601": "2024-06-08T20:59:03.945154Z",
            "url": "https://files.pythonhosted.org/packages/a6/83/8aa3aa7da217231d4292b31f39859bbde23f7b01623118ff87ec9bec99fb/rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0bdf00b5be763a116305372b22c14a762dc10833b4687c3611258eb1dc33040f",
                "md5": "b0c7fad9521b9de03f829805833ce968",
                "sha256": "ee110bc73525637f02a3ec4bd61ef087d31e45ad4d7bd2f52baa281afc02b669"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b0c7fad9521b9de03f829805833ce968",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2028868,
            "upload_time": "2024-06-08T20:59:17",
            "upload_time_iso_8601": "2024-06-08T20:59:17.175439Z",
            "url": "https://files.pythonhosted.org/packages/0b/df/00b5be763a116305372b22c14a762dc10833b4687c3611258eb1dc33040f/rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "892cfa652b2a27758b634f59df508f58c3975ac8dbb9cf9a4844e6dad5187195",
                "md5": "b56de59359abb0111d19b88722d9a2bd",
                "sha256": "a883cd84c3b27589de77081c9f19d4830d4b1f94f0ba4dabb4ae9c1e0324fbdb"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b56de59359abb0111d19b88722d9a2bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2125014,
            "upload_time": "2024-06-08T20:59:29",
            "upload_time_iso_8601": "2024-06-08T20:59:29.131775Z",
            "url": "https://files.pythonhosted.org/packages/89/2c/fa652b2a27758b634f59df508f58c3975ac8dbb9cf9a4844e6dad5187195/rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68b3d484796f48edf4b0154852dee2c4515266035d104d871ba076c009373149",
                "md5": "4c066623f5b3dc37c55bec7556e3b2a1",
                "sha256": "783289adefbce9e2bac858ac8632218687d6d1bb5389a556ab76b0364ba1ba9e"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4c066623f5b3dc37c55bec7556e3b2a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2280607,
            "upload_time": "2024-06-08T20:59:42",
            "upload_time_iso_8601": "2024-06-08T20:59:42.366973Z",
            "url": "https://files.pythonhosted.org/packages/68/b3/d484796f48edf4b0154852dee2c4515266035d104d871ba076c009373149/rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55e55069503a1d1dcf9624bb79d03575ae426707d73534a8d38a64d6f2f72f69",
                "md5": "5315545e9828185d0190bdd62655b555",
                "sha256": "b9405d5729202baae7e791a4143af1d1b6f16c016c5ffa9f48a100977c25c8a6"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5315545e9828185d0190bdd62655b555",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2114407,
            "upload_time": "2024-06-08T21:00:09",
            "upload_time_iso_8601": "2024-06-08T21:00:09.610657Z",
            "url": "https://files.pythonhosted.org/packages/55/e5/5069503a1d1dcf9624bb79d03575ae426707d73534a8d38a64d6f2f72f69/rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e4ab7c37605b3cddd196140570a3700b80d418065eb6acc6b68f9a18c9bcea5",
                "md5": "e7463ad2395c62af64c614245ee9e4c5",
                "sha256": "56f076d936a2aee5d87b5369b828d2b37ce70e46bde7c78e000700b186bab02d"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e7463ad2395c62af64c614245ee9e4c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2106541,
            "upload_time": "2024-06-08T20:59:55",
            "upload_time_iso_8601": "2024-06-08T20:59:55.967774Z",
            "url": "https://files.pythonhosted.org/packages/5e/4a/b7c37605b3cddd196140570a3700b80d418065eb6acc6b68f9a18c9bcea5/rwkv_tokenizer-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a5cdc9fe3622d6ccab03b89117f413fb505f724aa8c9a604972f91c6d317ad3",
                "md5": "d9cfc437b19ffee65cc2c5411a787879",
                "sha256": "c7cf60259adce42a5dd93aac8377d2233092bf1a06c7ce060caa1fd5d4870e77"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d9cfc437b19ffee65cc2c5411a787879",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1032298,
            "upload_time": "2024-06-08T21:00:46",
            "upload_time_iso_8601": "2024-06-08T21:00:46.378299Z",
            "url": "https://files.pythonhosted.org/packages/2a/5c/dc9fe3622d6ccab03b89117f413fb505f724aa8c9a604972f91c6d317ad3/rwkv_tokenizer-0.5.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df8eff230f40274163ce3d5aa34db0011a03c8b641f674b563b3da661a593081",
                "md5": "02e785ef3cff6c6690840080898d045e",
                "sha256": "73cc072dbdd7319725caa9c611a6a71a5b55522c682392c21868738eb483e2ee"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "02e785ef3cff6c6690840080898d045e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1094067,
            "upload_time": "2024-06-08T21:00:38",
            "upload_time_iso_8601": "2024-06-08T21:00:38.429172Z",
            "url": "https://files.pythonhosted.org/packages/df/8e/ff230f40274163ce3d5aa34db0011a03c8b641f674b563b3da661a593081/rwkv_tokenizer-0.5.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ede7af12e63d36c5403c7832bb829300695b4ae696203f03cbf0caf88758f2cc",
                "md5": "07c389233f008a61b4f6c0fa0dc1c779",
                "sha256": "669bd81cad9118f572314fd9266c2dc72aa10eb1c84ce59cba6e07bfb28a4a63"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07c389233f008a61b4f6c0fa0dc1c779",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1243290,
            "upload_time": "2024-06-08T21:00:30",
            "upload_time_iso_8601": "2024-06-08T21:00:30.025087Z",
            "url": "https://files.pythonhosted.org/packages/ed/e7/af12e63d36c5403c7832bb829300695b4ae696203f03cbf0caf88758f2cc/rwkv_tokenizer-0.5.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5964bc5b0c44b4849e0ad1ee02abe61c0025409a938f8f9b9ef0b0fa11876c2b",
                "md5": "8c44565e432e66232f1a309afff4943e",
                "sha256": "5e7c8839fbcbd2f779a9b8a4475e5fe0bf8d151586b154d56cc8537a641c4a71"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8c44565e432e66232f1a309afff4943e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1201138,
            "upload_time": "2024-06-08T21:00:24",
            "upload_time_iso_8601": "2024-06-08T21:00:24.320537Z",
            "url": "https://files.pythonhosted.org/packages/59/64/bc5b0c44b4849e0ad1ee02abe61c0025409a938f8f9b9ef0b0fa11876c2b/rwkv_tokenizer-0.5.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2b5f9f51e03e187c25baa95d06b9690b2e1ac95a26bef9836ec14b77f63396e",
                "md5": "73bcdc93fc4cc39cdd3f60d04a532f36",
                "sha256": "853c0e8dd13cb79c92a818fde28395f8c3b06a679bd3c42893128b55e1909a88"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "73bcdc93fc4cc39cdd3f60d04a532f36",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2072788,
            "upload_time": "2024-06-08T20:59:05",
            "upload_time_iso_8601": "2024-06-08T20:59:05.801271Z",
            "url": "https://files.pythonhosted.org/packages/a2/b5/f9f51e03e187c25baa95d06b9690b2e1ac95a26bef9836ec14b77f63396e/rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db4d67b1ccef066fc6ce72499f289c828519dd8ef76f573e66279ffe1677a1d9",
                "md5": "b6db28c5c585211d0581577fb70805c0",
                "sha256": "6b69d402bd80bd960beded34078435e46b753590499fe993a51deed496673082"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b6db28c5c585211d0581577fb70805c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2028623,
            "upload_time": "2024-06-08T20:59:18",
            "upload_time_iso_8601": "2024-06-08T20:59:18.734127Z",
            "url": "https://files.pythonhosted.org/packages/db/4d/67b1ccef066fc6ce72499f289c828519dd8ef76f573e66279ffe1677a1d9/rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a1a1f5f38f9bba80cede9a8b53038f390c5dd2a4fe4b841c5e54d719ce2b93f",
                "md5": "66655db31f2e82f4a12aabbedba1f356",
                "sha256": "bb8606d31167bb77e16d74999a350e0b2dc88df4cebd06093b68d83e21accb24"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "66655db31f2e82f4a12aabbedba1f356",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2124678,
            "upload_time": "2024-06-08T20:59:30",
            "upload_time_iso_8601": "2024-06-08T20:59:30.918361Z",
            "url": "https://files.pythonhosted.org/packages/1a/1a/1f5f38f9bba80cede9a8b53038f390c5dd2a4fe4b841c5e54d719ce2b93f/rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a02baf04879ca13769232c4201155fada66914f024ca17ee41dfcd56c14df9f7",
                "md5": "c383dedab15bdcade6b1ca05aa2ac4ba",
                "sha256": "f7cb6668ef6a175ba6528f1cbf253dec5337d6826432b758eca388e15126ca67"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c383dedab15bdcade6b1ca05aa2ac4ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2280618,
            "upload_time": "2024-06-08T20:59:44",
            "upload_time_iso_8601": "2024-06-08T20:59:44.548559Z",
            "url": "https://files.pythonhosted.org/packages/a0/2b/af04879ca13769232c4201155fada66914f024ca17ee41dfcd56c14df9f7/rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5910506f68d803756e1d13d004cfb97ec2ba1dcc632b5040e000ada6209614b8",
                "md5": "2cb36ccec011f3c44e7b320875279fd4",
                "sha256": "00960aeb342e99bb07f5c6b1b6d61e2d00d5ed1de4ee11a8a29bdd750dd76241"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2cb36ccec011f3c44e7b320875279fd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2113949,
            "upload_time": "2024-06-08T21:00:11",
            "upload_time_iso_8601": "2024-06-08T21:00:11.271949Z",
            "url": "https://files.pythonhosted.org/packages/59/10/506f68d803756e1d13d004cfb97ec2ba1dcc632b5040e000ada6209614b8/rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e0d62bd1613db8f0a0dce1191da2833975484214fe1dbe8d103800092e47a9c",
                "md5": "3d1e4171a000accef88f9eb767d76347",
                "sha256": "c7091cbc2b53ac72e4b38037a26651d634f97429237a2d9d4a44ab92ba603206"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3d1e4171a000accef88f9eb767d76347",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2106694,
            "upload_time": "2024-06-08T20:59:57",
            "upload_time_iso_8601": "2024-06-08T20:59:57.811869Z",
            "url": "https://files.pythonhosted.org/packages/2e/0d/62bd1613db8f0a0dce1191da2833975484214fe1dbe8d103800092e47a9c/rwkv_tokenizer-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f203414eb40ae597446488b130a61212562a171ef1cbfbe845e46e8484847604",
                "md5": "960c7cc9ca05427f4510ec07fffed82b",
                "sha256": "5bfb1140f75f474f02bd8f41f006089c303e0d4ef3693a0d06108fd0e94adb24"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "960c7cc9ca05427f4510ec07fffed82b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1031875,
            "upload_time": "2024-06-08T21:00:48",
            "upload_time_iso_8601": "2024-06-08T21:00:48.129312Z",
            "url": "https://files.pythonhosted.org/packages/f2/03/414eb40ae597446488b130a61212562a171ef1cbfbe845e46e8484847604/rwkv_tokenizer-0.5.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9eb279518e204b13080abf4a32c664815b88bbb9c15f199fe6f5fe2d74f361fd",
                "md5": "59807b3b89dc9aab9a3359fc3aea40b2",
                "sha256": "218469ef4c2e1716fd0f5d1a576ea9c4560b19c560802a85f5a627783cae6ff9"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "59807b3b89dc9aab9a3359fc3aea40b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1094027,
            "upload_time": "2024-06-08T21:00:40",
            "upload_time_iso_8601": "2024-06-08T21:00:40.136030Z",
            "url": "https://files.pythonhosted.org/packages/9e/b2/79518e204b13080abf4a32c664815b88bbb9c15f199fe6f5fe2d74f361fd/rwkv_tokenizer-0.5.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3444e0dc74d9eb32ca6922ecc881c4426bbe2cccf853aabc5e0202ec264d29e7",
                "md5": "9627ef7180db87a72a6aeba2dc925809",
                "sha256": "7385762b41acb5b98c79e3bbb864be92c53e18ddabe430c9fa42ba8f73887197"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9627ef7180db87a72a6aeba2dc925809",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2072397,
            "upload_time": "2024-06-08T20:59:07",
            "upload_time_iso_8601": "2024-06-08T20:59:07.648460Z",
            "url": "https://files.pythonhosted.org/packages/34/44/e0dc74d9eb32ca6922ecc881c4426bbe2cccf853aabc5e0202ec264d29e7/rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41e0c8645640d8f69bce06a911afa6a1268c79d4cd2175c1cb1f42df551bab71",
                "md5": "f250516f4fbf3ee2f1108ddf1b90e4cd",
                "sha256": "6f3cdbded5a3c3c92d9d7c32fc5228f6fdc4bf05ad0ef1e4a00e8f0762bf094f"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f250516f4fbf3ee2f1108ddf1b90e4cd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2030192,
            "upload_time": "2024-06-08T20:59:20",
            "upload_time_iso_8601": "2024-06-08T20:59:20.058667Z",
            "url": "https://files.pythonhosted.org/packages/41/e0/c8645640d8f69bce06a911afa6a1268c79d4cd2175c1cb1f42df551bab71/rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1671d064d11bf6c0685508a7983067ad122d2a7a1bf7f7d0531a82c2ac65a3bf",
                "md5": "feb207a0bbb35a1961ff6fd70e9faecb",
                "sha256": "274b0e93c87e729ef5e83e56b04478e41c199a00d46b90be7ca0f702d70365b8"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "feb207a0bbb35a1961ff6fd70e9faecb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2123811,
            "upload_time": "2024-06-08T20:59:32",
            "upload_time_iso_8601": "2024-06-08T20:59:32.570906Z",
            "url": "https://files.pythonhosted.org/packages/16/71/d064d11bf6c0685508a7983067ad122d2a7a1bf7f7d0531a82c2ac65a3bf/rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe44ad804916942a89f57d2f83f3292180e49982491e23a58b4e4eed36f7300b",
                "md5": "332de55f613fe870b788e6e0b0a221c5",
                "sha256": "655c4e8a4ae02408cd9fdb4aca572c038cc37a8e315086bfea69046d34247403"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "332de55f613fe870b788e6e0b0a221c5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2280318,
            "upload_time": "2024-06-08T20:59:46",
            "upload_time_iso_8601": "2024-06-08T20:59:46.358527Z",
            "url": "https://files.pythonhosted.org/packages/fe/44/ad804916942a89f57d2f83f3292180e49982491e23a58b4e4eed36f7300b/rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2dd97ea7ac57d35e12ddcc9bd4da776c426ec98c8844ba0345ded762553597b3",
                "md5": "c3b85ef3c63edb20cee9382a5fc72610",
                "sha256": "41cd6ca5354e5cd00b8797688ea278860062f35341d5c0199993eb714ff18e60"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3b85ef3c63edb20cee9382a5fc72610",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2113454,
            "upload_time": "2024-06-08T21:00:13",
            "upload_time_iso_8601": "2024-06-08T21:00:13.206741Z",
            "url": "https://files.pythonhosted.org/packages/2d/d9/7ea7ac57d35e12ddcc9bd4da776c426ec98c8844ba0345ded762553597b3/rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "219e42e0e1a1d040f935bbebceb53bf496ca76db0177a7fad140332a53e52173",
                "md5": "f71ad1c080994e494af32e2337d44364",
                "sha256": "aecc9cc87351989cc68c97976e89dac3ccdbb020abe5ef5c8a06c0c62ebfe08b"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f71ad1c080994e494af32e2337d44364",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2106852,
            "upload_time": "2024-06-08T20:59:59",
            "upload_time_iso_8601": "2024-06-08T20:59:59.303492Z",
            "url": "https://files.pythonhosted.org/packages/21/9e/42e0e1a1d040f935bbebceb53bf496ca76db0177a7fad140332a53e52173/rwkv_tokenizer-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bac965137198dd64e12ce72751a6642d701e249fc52d5a01f9d50b8a813d413",
                "md5": "7533d18a4e480956c9dc5401ef6560c6",
                "sha256": "93611243987d007701ac6d5e3ec25c34436ad896d9c498e8e5715cb7bbb9a7d1"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7533d18a4e480956c9dc5401ef6560c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2073243,
            "upload_time": "2024-06-08T20:59:09",
            "upload_time_iso_8601": "2024-06-08T20:59:09.103440Z",
            "url": "https://files.pythonhosted.org/packages/4b/ac/965137198dd64e12ce72751a6642d701e249fc52d5a01f9d50b8a813d413/rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ef90d559d45bbefff7aaef9ea00c39af6c80f6443ca69e8327ed0c258937d6a",
                "md5": "b35ced3ac6a0d719e1c039faa82a5297",
                "sha256": "0da7b6c15314ea6167915e575431be2483027de5e0995b98e4abd791763bb475"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b35ced3ac6a0d719e1c039faa82a5297",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2029169,
            "upload_time": "2024-06-08T20:59:21",
            "upload_time_iso_8601": "2024-06-08T20:59:21.418538Z",
            "url": "https://files.pythonhosted.org/packages/4e/f9/0d559d45bbefff7aaef9ea00c39af6c80f6443ca69e8327ed0c258937d6a/rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13769b6d5dd8545a30d47169cbfaeb4f9212831dc2a173df2bab6f3071acaeae",
                "md5": "47171be39e7cb9ca596be74eac503954",
                "sha256": "014e051e208f3f6e15c84622ab48b3c98605b3d028ec74a1959a14213570ccfb"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "47171be39e7cb9ca596be74eac503954",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2124366,
            "upload_time": "2024-06-08T20:59:33",
            "upload_time_iso_8601": "2024-06-08T20:59:33.973448Z",
            "url": "https://files.pythonhosted.org/packages/13/76/9b6d5dd8545a30d47169cbfaeb4f9212831dc2a173df2bab6f3071acaeae/rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ebbb47052c3b3903fb731157f3e822e85cfe5e8940e1151fa92ef7564ed3002",
                "md5": "46bb8d2bc39fb1a78fbffd8317be4213",
                "sha256": "6aa73f5c03f771f6eccdf7edbc5f7fbd912795dee31587d38e3e1090051a5dcc"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "46bb8d2bc39fb1a78fbffd8317be4213",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2279642,
            "upload_time": "2024-06-08T20:59:48",
            "upload_time_iso_8601": "2024-06-08T20:59:48.060235Z",
            "url": "https://files.pythonhosted.org/packages/1e/bb/b47052c3b3903fb731157f3e822e85cfe5e8940e1151fa92ef7564ed3002/rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "303813e2b49db618ccfca80b0b328b565ff515edab0d6283ba7e418fb3102dfd",
                "md5": "4591166e783be9da91d525ac23d2ecda",
                "sha256": "36cd2de4b844cb4a226786a1beb3ffb5b794fd3a5d66bb2c0c8f17b514bc498c"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4591166e783be9da91d525ac23d2ecda",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2113886,
            "upload_time": "2024-06-08T21:00:14",
            "upload_time_iso_8601": "2024-06-08T21:00:14.749596Z",
            "url": "https://files.pythonhosted.org/packages/30/38/13e2b49db618ccfca80b0b328b565ff515edab0d6283ba7e418fb3102dfd/rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b3005dbadbb1f19be7abcb48f698dde525d99bf771818b241ea7ad3b578cec5",
                "md5": "86880df8bcad4bcd51207b39a12e1860",
                "sha256": "9b7d6c7f72cf3545df03fc127278b64225c7cc0cf9b15b486c52fd2ac0b6691b"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "86880df8bcad4bcd51207b39a12e1860",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2107276,
            "upload_time": "2024-06-08T21:00:01",
            "upload_time_iso_8601": "2024-06-08T21:00:01.002292Z",
            "url": "https://files.pythonhosted.org/packages/8b/30/05dbadbb1f19be7abcb48f698dde525d99bf771818b241ea7ad3b578cec5/rwkv_tokenizer-0.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4b89575621385767cb5cb0083817105d8696d39308daa7c61d2327a6094f9fc",
                "md5": "d399641f7c85a7ead6fa574852b94733",
                "sha256": "255e7c82790dad5fba46c957b444777c0dbd6d2db44cc3c5a19c51c764e457a2"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d399641f7c85a7ead6fa574852b94733",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2072566,
            "upload_time": "2024-06-08T20:59:10",
            "upload_time_iso_8601": "2024-06-08T20:59:10.734511Z",
            "url": "https://files.pythonhosted.org/packages/a4/b8/9575621385767cb5cb0083817105d8696d39308daa7c61d2327a6094f9fc/rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b61256c4ec0be9d88082a0059fbd30bfd39f0534bf580afdf2522a2d762e2c25",
                "md5": "8616642fbc58865b73d219b2b15e80ff",
                "sha256": "bffd6adc6d5d4526338aca7b85faa93582e7c6c63aac346026c614f10f86c9af"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8616642fbc58865b73d219b2b15e80ff",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2029031,
            "upload_time": "2024-06-08T20:59:23",
            "upload_time_iso_8601": "2024-06-08T20:59:23.112334Z",
            "url": "https://files.pythonhosted.org/packages/b6/12/56c4ec0be9d88082a0059fbd30bfd39f0534bf580afdf2522a2d762e2c25/rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "734236b3301540692c40e606de97ed91e7f070722730ef9701b7482153aed52c",
                "md5": "999ca7d6839c3903051f598e917eacfd",
                "sha256": "107b95bfa37a054c05fa750412af98eb0890ba4513138ea37a43c695d7715266"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "999ca7d6839c3903051f598e917eacfd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2123993,
            "upload_time": "2024-06-08T20:59:36",
            "upload_time_iso_8601": "2024-06-08T20:59:36.454483Z",
            "url": "https://files.pythonhosted.org/packages/73/42/36b3301540692c40e606de97ed91e7f070722730ef9701b7482153aed52c/rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "929ace211b8ef6c84ff2b4dea8861227d204752773f91a96f3629e6441202315",
                "md5": "1e7a3ad16e78b22e56276280aab127da",
                "sha256": "23b9d416103687c8e1fec66bf77790448c7061c0c1e0d5740fd7bc930558f265"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1e7a3ad16e78b22e56276280aab127da",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2279400,
            "upload_time": "2024-06-08T20:59:49",
            "upload_time_iso_8601": "2024-06-08T20:59:49.436192Z",
            "url": "https://files.pythonhosted.org/packages/92/9a/ce211b8ef6c84ff2b4dea8861227d204752773f91a96f3629e6441202315/rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f5f95b08904a25a83324402fba878092a51e662983a4ec8c5ca74db2b27eb46",
                "md5": "0d0562343134447a610cec4ad17b3304",
                "sha256": "0104e382c87046fb89babe56b8e37937dacaec9e8d3fa69d93da6950d70ceaa7"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d0562343134447a610cec4ad17b3304",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2113908,
            "upload_time": "2024-06-08T21:00:16",
            "upload_time_iso_8601": "2024-06-08T21:00:16.840254Z",
            "url": "https://files.pythonhosted.org/packages/3f/5f/95b08904a25a83324402fba878092a51e662983a4ec8c5ca74db2b27eb46/rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1459ffaee83e60cee84f0b2ecdd849ae0590e909d0dae3abe50b8980df03dc09",
                "md5": "47106c424aa3c51bb1dbad66222b55fa",
                "sha256": "424ca399d2fb6cd5aca0652291429b987e3b08eab99257a7f2b0a2931f8f110b"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "47106c424aa3c51bb1dbad66222b55fa",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2106841,
            "upload_time": "2024-06-08T21:00:02",
            "upload_time_iso_8601": "2024-06-08T21:00:02.725967Z",
            "url": "https://files.pythonhosted.org/packages/14/59/ffaee83e60cee84f0b2ecdd849ae0590e909d0dae3abe50b8980df03dc09/rwkv_tokenizer-0.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56ed5d058bd89e3d2dc4d53e4138ba3241bf37001f5121f29a17037bd5984bd0",
                "md5": "cde21ab8ba56e1c7c049e96c8fa60706",
                "sha256": "84c65145874236921f529973c811292ee7fce44192888da64c5871614a360071"
            },
            "downloads": -1,
            "filename": "rwkv_tokenizer-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "cde21ab8ba56e1c7c049e96c8fa60706",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 827199,
            "upload_time": "2024-06-08T21:00:31",
            "upload_time_iso_8601": "2024-06-08T21:00:31.537230Z",
            "url": "https://files.pythonhosted.org/packages/56/ed/5d058bd89e3d2dc4d53e4138ba3241bf37001f5121f29a17037bd5984bd0/rwkv_tokenizer-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-08 21:00:31",
    "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": "rwkv-tokenizer"
}
        
Elapsed time: 0.30856s