llama-rs-python


Namellama-rs-python JSON
Version 0.0.2 PyPI version JSON
download
home_pageNone
SummaryUnofficial python bindings for llama-rs. 🐍❤️🦀
upload_time2023-04-19 10:35:16
maintainerNone
docs_urlNone
authorLukas Kreussel
requires_python>=3.7
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # llama-rs-python
Unofficial python bindings for [llama-rs](https://github.com/rustformers/llama-rs) created with [PyO3](https://github.com/PyO3/pyo3). 🐍❤️🦀

This package gives access to the basic functionality of the llama-rs project.

GGML converted models can be loaded and executed.

## Installation

Simply install it via pip: `pip install llama-rs-python`

## Usage

The package is typehinted for easy usage.

A usage example could look like this:

```python 
from llama_rs_python import Model

#load the model
model = Model("path/to/model.bin")

#generate
print(model.generate("The meaning of life is"))
```

The package also supports callbacks to get each token as it is generated.
The callback-function also supports canceling the generation by returning a `True` value from the pytohn side.

```python 
from llama_rs_python import Model
import sys
from typing import Optional

#load the model
model = Model("path/to/model.bin")

#define the callback
def callback(token:str)->Optional[bool]:
    print(token,end="")
    sys.stdout.flush()
    # (return True here to cancel the generation)

#start generation
model.generate("The meaning of life is",callback=callback)
```

The configuration of the generation is handled by the `GenerationConfig` class.

```python 
from llama_rs_python import Model, GenerationConfig

#load the model
model = Model("path/to/model.bin")

#create a config
config = GenerationConfig(top_p=0.9,seed=1441,max_new_tokens=1024)

#generate
print(model.generate("The meaning of life is",generation_config=config))
```

To configure model specific settings the `SessionConfig` class can be used.

```python
from llama_rs_python import Model, SessionConfig

#define the session
session_config = SessionConfig(threads=8,context_length=512)

#load the model
model = Model("path/to/model.bin",session_config=session_config)
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "llama-rs-python",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Lukas Kreussel",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/16/70/e52781d2b528f6949a203666a3ae22eb96a831853980505d4f547f3e8ea1/llama_rs_python-0.0.2.tar.gz",
    "platform": null,
    "description": "# llama-rs-python\nUnofficial python bindings for [llama-rs](https://github.com/rustformers/llama-rs) created with [PyO3](https://github.com/PyO3/pyo3). \ud83d\udc0d\u2764\ufe0f\ud83e\udd80\n\nThis package gives access to the basic functionality of the llama-rs project.\n\nGGML converted models can be loaded and executed.\n\n## Installation\n\nSimply install it via pip: `pip install llama-rs-python`\n\n## Usage\n\nThe package is typehinted for easy usage.\n\nA usage example could look like this:\n\n```python \nfrom llama_rs_python import Model\n\n#load the model\nmodel = Model(\"path/to/model.bin\")\n\n#generate\nprint(model.generate(\"The meaning of life is\"))\n```\n\nThe package also supports callbacks to get each token as it is generated.\nThe callback-function also supports canceling the generation by returning a `True` value from the pytohn side.\n\n```python \nfrom llama_rs_python import Model\nimport sys\nfrom typing import Optional\n\n#load the model\nmodel = Model(\"path/to/model.bin\")\n\n#define the callback\ndef callback(token:str)->Optional[bool]:\n    print(token,end=\"\")\n    sys.stdout.flush()\n    # (return True here to cancel the generation)\n\n#start generation\nmodel.generate(\"The meaning of life is\",callback=callback)\n```\n\nThe configuration of the generation is handled by the `GenerationConfig` class.\n\n```python \nfrom llama_rs_python import Model, GenerationConfig\n\n#load the model\nmodel = Model(\"path/to/model.bin\")\n\n#create a config\nconfig = GenerationConfig(top_p=0.9,seed=1441,max_new_tokens=1024)\n\n#generate\nprint(model.generate(\"The meaning of life is\",generation_config=config))\n```\n\nTo configure model specific settings the `SessionConfig` class can be used.\n\n```python\nfrom llama_rs_python import Model, SessionConfig\n\n#define the session\nsession_config = SessionConfig(threads=8,context_length=512)\n\n#load the model\nmodel = Model(\"path/to/model.bin\",session_config=session_config)\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Unofficial python bindings for llama-rs. \ud83d\udc0d\u2764\ufe0f\ud83e\udd80",
    "version": "0.0.2",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a1eb33f82f44266afa5f54322c4d8b2cc40c296914e4497efa133dbc05aed51",
                "md5": "88efa2f4a4509edbd841c55cc5686b71",
                "sha256": "2e0baf2aee0e0d237bf6118cc5af125a791f74e50c3e54ade3a2f11af1c53ee1"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88efa2f4a4509edbd841c55cc5686b71",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 417174,
            "upload_time": "2023-04-19T10:34:27",
            "upload_time_iso_8601": "2023-04-19T10:34:27.699143Z",
            "url": "https://files.pythonhosted.org/packages/9a/1e/b33f82f44266afa5f54322c4d8b2cc40c296914e4497efa133dbc05aed51/llama_rs_python-0.0.2-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a509cf02e577286f402ad445d14c079384230842c0222d22a7e225f9b948db23",
                "md5": "c5f197a2a8f7a9dec394017f01398641",
                "sha256": "335db0818ce6ce9c2beb21d3813f95f7c204c74f78e516b6fb28dbd746fa5f57"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c5f197a2a8f7a9dec394017f01398641",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 393734,
            "upload_time": "2023-04-19T10:34:29",
            "upload_time_iso_8601": "2023-04-19T10:34:29.373128Z",
            "url": "https://files.pythonhosted.org/packages/a5/09/cf02e577286f402ad445d14c079384230842c0222d22a7e225f9b948db23/llama_rs_python-0.0.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc32826c0cfc2d1547feb2a9d5307b22511b17c52e8fdabe851ebd6d7207a574",
                "md5": "da47fe048d20c8ec03d9ed4c96a4993e",
                "sha256": "917dc5131e620d04db562a686e4969f4306d023973e11ab1a9066ddfb7623b35"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da47fe048d20c8ec03d9ed4c96a4993e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1249268,
            "upload_time": "2023-04-19T10:34:31",
            "upload_time_iso_8601": "2023-04-19T10:34:31.283320Z",
            "url": "https://files.pythonhosted.org/packages/dc/32/826c0cfc2d1547feb2a9d5307b22511b17c52e8fdabe851ebd6d7207a574/llama_rs_python-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78363d37e04d6f439249e92a8ffbc579c76316d39778a0ab3dcdfdcf12163871",
                "md5": "98a6bf07759716f1bff7a9e1f399bd51",
                "sha256": "de8658baa39f8ff3065030ad83d2ac2fc595b317ae85cb0240c03539bc91b2c7"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "98a6bf07759716f1bff7a9e1f399bd51",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1266554,
            "upload_time": "2023-04-19T10:34:32",
            "upload_time_iso_8601": "2023-04-19T10:34:32.949645Z",
            "url": "https://files.pythonhosted.org/packages/78/36/3d37e04d6f439249e92a8ffbc579c76316d39778a0ab3dcdfdcf12163871/llama_rs_python-0.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "35e21a97e168b3312ddf250fafece3465ba301f8e1b31de6995ac3a2f89136cf",
                "md5": "3ebd07b9cb33dd29e9b7190756b1f718",
                "sha256": "50bb4ee58b2dc938a34f45e4e69dd1c753fc624f9532d7c0e270c00b6dce604d"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "3ebd07b9cb33dd29e9b7190756b1f718",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 246201,
            "upload_time": "2023-04-19T10:34:34",
            "upload_time_iso_8601": "2023-04-19T10:34:34.592535Z",
            "url": "https://files.pythonhosted.org/packages/35/e2/1a97e168b3312ddf250fafece3465ba301f8e1b31de6995ac3a2f89136cf/llama_rs_python-0.0.2-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b423d370d979416f6d96f3269e47c05f0ae9842b3ab720b92669eff202ffe56",
                "md5": "5b5dd52c93609dd0a80cc2ea8037d4c9",
                "sha256": "a9207f57fe7a6bb9e23d3d70f75ff671867e2c101494412954b5b40fa4d3723a"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5b5dd52c93609dd0a80cc2ea8037d4c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 265301,
            "upload_time": "2023-04-19T10:34:36",
            "upload_time_iso_8601": "2023-04-19T10:34:36.365824Z",
            "url": "https://files.pythonhosted.org/packages/8b/42/3d370d979416f6d96f3269e47c05f0ae9842b3ab720b92669eff202ffe56/llama_rs_python-0.0.2-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80d4469d7af8dd7301af9984df0311628b9cee90a523fd5afe7ac649e5f33d07",
                "md5": "b336208bd851430ca597e6720124fc2f",
                "sha256": "0bdefab4dbba2b00e174b568b671c1b208225c2384038cb7def6c017978b801d"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b336208bd851430ca597e6720124fc2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 417171,
            "upload_time": "2023-04-19T10:34:38",
            "upload_time_iso_8601": "2023-04-19T10:34:38.012576Z",
            "url": "https://files.pythonhosted.org/packages/80/d4/469d7af8dd7301af9984df0311628b9cee90a523fd5afe7ac649e5f33d07/llama_rs_python-0.0.2-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffc32447c6a760bde01d1b430d5854fe31ae86719c6687e49659626bc7c1de57",
                "md5": "b568095d1b5d67c3d28772f3cf08d84b",
                "sha256": "313e9ec96766e2bc8a9a479729544218533690ccbf8eab2b413cc67c562b8fb4"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b568095d1b5d67c3d28772f3cf08d84b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 393736,
            "upload_time": "2023-04-19T10:34:39",
            "upload_time_iso_8601": "2023-04-19T10:34:39.650132Z",
            "url": "https://files.pythonhosted.org/packages/ff/c3/2447c6a760bde01d1b430d5854fe31ae86719c6687e49659626bc7c1de57/llama_rs_python-0.0.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "199cac04eec3082c7c5201f43d020a247234f95a2cff814ce4109e709f8e7b39",
                "md5": "9116834c8138d9053e965185d81a9662",
                "sha256": "60a9cea2591f8babb96174243e3827505842bc9cfdcbc72d0abd9a79e0cb62de"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9116834c8138d9053e965185d81a9662",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1249268,
            "upload_time": "2023-04-19T10:34:41",
            "upload_time_iso_8601": "2023-04-19T10:34:41.333312Z",
            "url": "https://files.pythonhosted.org/packages/19/9c/ac04eec3082c7c5201f43d020a247234f95a2cff814ce4109e709f8e7b39/llama_rs_python-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "874f30898cb67c89bb1c286662e00f3571148b8d5db121667306d81acf61fae7",
                "md5": "171f46b2d1d275f8d79b72f5164ee73c",
                "sha256": "128322681699272c8ec0ff2c95d535d17a459b19aaaddbafc39b33eaf52e8ccf"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "171f46b2d1d275f8d79b72f5164ee73c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1266557,
            "upload_time": "2023-04-19T10:34:42",
            "upload_time_iso_8601": "2023-04-19T10:34:42.566979Z",
            "url": "https://files.pythonhosted.org/packages/87/4f/30898cb67c89bb1c286662e00f3571148b8d5db121667306d81acf61fae7/llama_rs_python-0.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae606bab1b32a68c748ae81ce3c4e2319de02e9e6ccd31b0e60642a9214a2db5",
                "md5": "03f5a78fa4d804f31f20f4949a17b86f",
                "sha256": "90c5803e705c02b579ad1e4e1737e8d4034ef908b362c17fe2cca0394abfdbf8"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "03f5a78fa4d804f31f20f4949a17b86f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 246213,
            "upload_time": "2023-04-19T10:34:43",
            "upload_time_iso_8601": "2023-04-19T10:34:43.659730Z",
            "url": "https://files.pythonhosted.org/packages/ae/60/6bab1b32a68c748ae81ce3c4e2319de02e9e6ccd31b0e60642a9214a2db5/llama_rs_python-0.0.2-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8feb6043a39dca6030ff430f19325e4930a7bb794cf1032c4227056f45d954ba",
                "md5": "1d8ec67e62c503a237502884f04a82f3",
                "sha256": "e92dbcef8b293a48b7895b0e44b62fe3cdd88fa709c1b8f812fc26d872debe52"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1d8ec67e62c503a237502884f04a82f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 265315,
            "upload_time": "2023-04-19T10:34:46",
            "upload_time_iso_8601": "2023-04-19T10:34:46.000207Z",
            "url": "https://files.pythonhosted.org/packages/8f/eb/6043a39dca6030ff430f19325e4930a7bb794cf1032c4227056f45d954ba/llama_rs_python-0.0.2-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da5bc62ddb14856519b4a93520f5e724405bd827a47b78f686ff8804e5e732bf",
                "md5": "f6830e250d12deb62bf5362afcf5fa8f",
                "sha256": "e7844ce51d73bd1eec58875bf306b5726c77cea3d66bc359fc618893db7b1ce1"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f6830e250d12deb62bf5362afcf5fa8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1249584,
            "upload_time": "2023-04-19T10:34:47",
            "upload_time_iso_8601": "2023-04-19T10:34:47.180462Z",
            "url": "https://files.pythonhosted.org/packages/da/5b/c62ddb14856519b4a93520f5e724405bd827a47b78f686ff8804e5e732bf/llama_rs_python-0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0db736299e0ba41b7f9a64d363c1ded3e1a86ee024473454b1c81084ca022f63",
                "md5": "a7cd71486c6a76e856eefa565c3df09a",
                "sha256": "46d62b4a224626d8cc499826bd87f3a8713ef9aa412c060770c68da0a8793c8d"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a7cd71486c6a76e856eefa565c3df09a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1267975,
            "upload_time": "2023-04-19T10:34:48",
            "upload_time_iso_8601": "2023-04-19T10:34:48.776641Z",
            "url": "https://files.pythonhosted.org/packages/0d/b7/36299e0ba41b7f9a64d363c1ded3e1a86ee024473454b1c81084ca022f63/llama_rs_python-0.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "515593372cfe8d5fdfcb18d4c02bc0ee907a0e8696c8d672bd5210c2b1ab8963",
                "md5": "a7233c1e57cde2fa248d8116813a4eb2",
                "sha256": "ad8de6dba4cdcaef5af3cbc9f4cfcd6558ec533617d43985b443818a1b67f48e"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a7233c1e57cde2fa248d8116813a4eb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 246133,
            "upload_time": "2023-04-19T10:34:51",
            "upload_time_iso_8601": "2023-04-19T10:34:51.170350Z",
            "url": "https://files.pythonhosted.org/packages/51/55/93372cfe8d5fdfcb18d4c02bc0ee907a0e8696c8d672bd5210c2b1ab8963/llama_rs_python-0.0.2-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ef7e0cb7d34fa890cc0ac39e138f3bd2b9b7a7b2c7a858769fd023c33339427",
                "md5": "00391e9359ab1297c8c444c785a761da",
                "sha256": "f76ba08a1f26ec80693f8587a3137256e6aa53f55e780d14cf7d9be0b3a7f392"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "00391e9359ab1297c8c444c785a761da",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 265439,
            "upload_time": "2023-04-19T10:34:52",
            "upload_time_iso_8601": "2023-04-19T10:34:52.618465Z",
            "url": "https://files.pythonhosted.org/packages/6e/f7/e0cb7d34fa890cc0ac39e138f3bd2b9b7a7b2c7a858769fd023c33339427/llama_rs_python-0.0.2-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ddbaf8b2a742a76c696ea22aaaea55719cecac69a7db2726b410b220fc69429a",
                "md5": "9f778307f3b8d2348ff140b07bbfb465",
                "sha256": "876629a4e3528954e4dc37ef3e0c4607c131c6f78aeabf351e46c8123f87c88e"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f778307f3b8d2348ff140b07bbfb465",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1249561,
            "upload_time": "2023-04-19T10:34:54",
            "upload_time_iso_8601": "2023-04-19T10:34:54.289727Z",
            "url": "https://files.pythonhosted.org/packages/dd/ba/f8b2a742a76c696ea22aaaea55719cecac69a7db2726b410b220fc69429a/llama_rs_python-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7f6bffb18218ae596d4b53576b1bb1b2432a15488e51da6ae24ca2935523988",
                "md5": "306415aba6c988917681b982a9966928",
                "sha256": "31433f0739882205e54be4f409e75d23292e91532f4cb681ef27cf38b7e9d2da"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "306415aba6c988917681b982a9966928",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1267669,
            "upload_time": "2023-04-19T10:34:55",
            "upload_time_iso_8601": "2023-04-19T10:34:55.533604Z",
            "url": "https://files.pythonhosted.org/packages/d7/f6/bffb18218ae596d4b53576b1bb1b2432a15488e51da6ae24ca2935523988/llama_rs_python-0.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ac370bbd7bb350c5138d6c5fdd73c26caecd17b68de007f2a19271534ab41ac",
                "md5": "872a3693c97ac8c0698b8f6f597a856c",
                "sha256": "73267b4429a4e1ec9c1645ac70cf781c023418cbb96cbd68c2350e485e3602ca"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "872a3693c97ac8c0698b8f6f597a856c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 246121,
            "upload_time": "2023-04-19T10:34:57",
            "upload_time_iso_8601": "2023-04-19T10:34:57.342529Z",
            "url": "https://files.pythonhosted.org/packages/1a/c3/70bbd7bb350c5138d6c5fdd73c26caecd17b68de007f2a19271534ab41ac/llama_rs_python-0.0.2-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "188521c3e3fc76d7a12a01b7d11c18da073373dbcfdf44d5ee09af4d275f3256",
                "md5": "ef5f19506b0bb8ac5bd6a424ab07d8b0",
                "sha256": "3ae164b1aa07ad94e1f433da3f9b650e34b5f33fa635e082773ed17bbf8fc0b2"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ef5f19506b0bb8ac5bd6a424ab07d8b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 265430,
            "upload_time": "2023-04-19T10:34:59",
            "upload_time_iso_8601": "2023-04-19T10:34:59.034375Z",
            "url": "https://files.pythonhosted.org/packages/18/85/21c3e3fc76d7a12a01b7d11c18da073373dbcfdf44d5ee09af4d275f3256/llama_rs_python-0.0.2-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae9315c48052f15b91b41f635fb85a7510ff31eca129589c7476070f8c22e18e",
                "md5": "c26d9da7c86bc29ae9e1afc559add0f6",
                "sha256": "7fb29e971139dc0ff140e6783629bc4897ca5edf00acd7ccc9f464fba799e090"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c26d9da7c86bc29ae9e1afc559add0f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1249403,
            "upload_time": "2023-04-19T10:35:00",
            "upload_time_iso_8601": "2023-04-19T10:35:00.819234Z",
            "url": "https://files.pythonhosted.org/packages/ae/93/15c48052f15b91b41f635fb85a7510ff31eca129589c7476070f8c22e18e/llama_rs_python-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41dd516af383f2d5314fb4ba273703093df08937590c0c4b7f6dd1b80dfe0aa8",
                "md5": "f82ac66e7a36ffb740f30d41726e0c67",
                "sha256": "660aba80e6a9f0edc4f43498438abc3a988c8458c3626f7df32a7a7ecc2d1700"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f82ac66e7a36ffb740f30d41726e0c67",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1267098,
            "upload_time": "2023-04-19T10:35:02",
            "upload_time_iso_8601": "2023-04-19T10:35:02.387761Z",
            "url": "https://files.pythonhosted.org/packages/41/dd/516af383f2d5314fb4ba273703093df08937590c0c4b7f6dd1b80dfe0aa8/llama_rs_python-0.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad89d399d900b4e80609e0271c4f592bfa5df86b5e436d1b4c6edda2a8831295",
                "md5": "c15e83a5bd99e865c1a98a406495a9f5",
                "sha256": "9e818911b90b343a966c0f316307878432601dcfd8c7abfe95e71ba0bba6bd97"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "c15e83a5bd99e865c1a98a406495a9f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 246583,
            "upload_time": "2023-04-19T10:35:04",
            "upload_time_iso_8601": "2023-04-19T10:35:04.199060Z",
            "url": "https://files.pythonhosted.org/packages/ad/89/d399d900b4e80609e0271c4f592bfa5df86b5e436d1b4c6edda2a8831295/llama_rs_python-0.0.2-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3686445a05d13ccaac4da5b2d217cd4c86b42201cdbd78878317b3942800e064",
                "md5": "5120e918b1930ad8cd4ec06be835099d",
                "sha256": "5056b61a8edf79af0443dc16451fcb10b93c27cc164168120feb14c6cd49f2ec"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5120e918b1930ad8cd4ec06be835099d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 265637,
            "upload_time": "2023-04-19T10:35:06",
            "upload_time_iso_8601": "2023-04-19T10:35:06.290414Z",
            "url": "https://files.pythonhosted.org/packages/36/86/445a05d13ccaac4da5b2d217cd4c86b42201cdbd78878317b3942800e064/llama_rs_python-0.0.2-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "682f02d64a5f9591d118c59ec8e435aad34e3477f1a7605f216e51d490427cde",
                "md5": "b8d47d297b5d0827cc682463d80970d4",
                "sha256": "c94dabc00b958429517788539dbf34839ff8f427650b3c79e39b1808153281ee"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8d47d297b5d0827cc682463d80970d4",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1253134,
            "upload_time": "2023-04-19T10:35:08",
            "upload_time_iso_8601": "2023-04-19T10:35:08.027860Z",
            "url": "https://files.pythonhosted.org/packages/68/2f/02d64a5f9591d118c59ec8e435aad34e3477f1a7605f216e51d490427cde/llama_rs_python-0.0.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d8fb81be56b5b2815bebc7859b05130d3da4c1bc9c257c0bac76a2660b8e9fa",
                "md5": "767028ea8fea4d8cc5ed8b7e0188f86f",
                "sha256": "f409e07c01bc0f825b533759ef0eb7c351e7f30de9c73c99d132f206a161f399"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "767028ea8fea4d8cc5ed8b7e0188f86f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1273697,
            "upload_time": "2023-04-19T10:35:09",
            "upload_time_iso_8601": "2023-04-19T10:35:09.316088Z",
            "url": "https://files.pythonhosted.org/packages/1d/8f/b81be56b5b2815bebc7859b05130d3da4c1bc9c257c0bac76a2660b8e9fa/llama_rs_python-0.0.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f635decc5a9e0264205688c284e761ff4531d0a308083aa012efe828cab0d23",
                "md5": "00966045f35f387b68ab2bf498ee0b39",
                "sha256": "e4121834e0b5ab8572dabf5fc1dcb07a200f2331fac497ca918de6abc177b15c"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00966045f35f387b68ab2bf498ee0b39",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1250285,
            "upload_time": "2023-04-19T10:35:10",
            "upload_time_iso_8601": "2023-04-19T10:35:10.980945Z",
            "url": "https://files.pythonhosted.org/packages/6f/63/5decc5a9e0264205688c284e761ff4531d0a308083aa012efe828cab0d23/llama_rs_python-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64c415c2639c8070b0f12d1f6757148760cdef80f092299ba3166dec9fb77b42",
                "md5": "10518b2542e3a9154deb7eb771382cb6",
                "sha256": "ba893892d106ccb068479b72756b3d2b0d34eb41f5cc7d596cae78efcbca2a71"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "10518b2542e3a9154deb7eb771382cb6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1269762,
            "upload_time": "2023-04-19T10:35:12",
            "upload_time_iso_8601": "2023-04-19T10:35:12.148277Z",
            "url": "https://files.pythonhosted.org/packages/64/c4/15c2639c8070b0f12d1f6757148760cdef80f092299ba3166dec9fb77b42/llama_rs_python-0.0.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86451c485fbc57e1a52a1412c4e1b5c00bb3a4cafc9449f90942e44890099d80",
                "md5": "be960cde9b61785f59f990281371e5ca",
                "sha256": "0b7f7867fd3972dad85e73de3e05e6ef19f216f50a76ab952ad63b97fe33f31d"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be960cde9b61785f59f990281371e5ca",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1250344,
            "upload_time": "2023-04-19T10:35:14",
            "upload_time_iso_8601": "2023-04-19T10:35:14.097237Z",
            "url": "https://files.pythonhosted.org/packages/86/45/1c485fbc57e1a52a1412c4e1b5c00bb3a4cafc9449f90942e44890099d80/llama_rs_python-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "707d831ef5d4ae085cea88e24b2f0c54745d75493b0b6f1fedc5af9e6c60d040",
                "md5": "9816952c8845268a8aed2e17b58c2eef",
                "sha256": "cf819b3124051081744eb4847fc92f9b48c35b47cc947493eb252cd0cf2df586"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9816952c8845268a8aed2e17b58c2eef",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1267892,
            "upload_time": "2023-04-19T10:35:15",
            "upload_time_iso_8601": "2023-04-19T10:35:15.903631Z",
            "url": "https://files.pythonhosted.org/packages/70/7d/831ef5d4ae085cea88e24b2f0c54745d75493b0b6f1fedc5af9e6c60d040/llama_rs_python-0.0.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1670e52781d2b528f6949a203666a3ae22eb96a831853980505d4f547f3e8ea1",
                "md5": "5ced8c0c5954c9b3f5f04edea07eeb6b",
                "sha256": "41ef608ac6b928e82518b0960debc93d568b599b4da0773bdb6faf5f56ad304f"
            },
            "downloads": -1,
            "filename": "llama_rs_python-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "5ced8c0c5954c9b3f5f04edea07eeb6b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 12752,
            "upload_time": "2023-04-19T10:35:16",
            "upload_time_iso_8601": "2023-04-19T10:35:16.946657Z",
            "url": "https://files.pythonhosted.org/packages/16/70/e52781d2b528f6949a203666a3ae22eb96a831853980505d4f547f3e8ea1/llama_rs_python-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-19 10:35:16",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "llama-rs-python"
}
        
Elapsed time: 0.05686s