forust


Nameforust JSON
Version 0.4.6 PyPI version JSON
download
home_pageNone
SummaryA lightweight gradient boosting implementation in Rust.
upload_time2024-03-24 17:41:42
maintainerNone
docs_urlNone
authorJames Inlow
requires_python>=3.8
licenseNone
keywords rust forust machine learning xgboost tree model decision tree
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <img  height="340" src="https://github.com/jinlow/forust/raw/main/resources/tree-image-crop.png">
</p>


<div align="center">

  <a href="https://pypi.org/project/forust/">![PyPI](https://img.shields.io/pypi/v/forust?color=gr&style=for-the-badge)</a>
  <a href="https://crates.io/crates/forust-ml">![Crates.io](https://img.shields.io/crates/v/forust-ml?color=gr&style=for-the-badge)</a>

</div>

# Forust
## _A lightweight gradient boosting package_
Forust, is a lightweight package for building gradient boosted decision tree ensembles. All of the algorithm code is written in [Rust](https://www.rust-lang.org/), with a python wrapper. The rust package can be used directly, however, most examples shown here will be for the python wrapper. For a self contained rust example, [see here](rs-example.md). It implements the same algorithm as the [XGBoost](https://xgboost.readthedocs.io/en/stable/) package, and in many cases will give nearly identical results.

I developed this package for a few reasons, mainly to better understand the XGBoost algorithm, additionally to have a fun project to work on in rust, and because I wanted to be able to experiment with adding new features to the algorithm in a smaller simpler codebase.

All of the rust code for the package can be found in the [src](src/) directory, while all of the python wrapper code is in the [py-forust](py-forust/) directory.

## Documentation
Documentation for the python API can be found [here](https://jinlow.github.io/forust/).

## Installation
The package can be installed directly from [pypi](https://pypi.org/project/forust/).
```shell
pip install forust
```

To use in a rust project add the following to your Cargo.toml file.
```toml
forust-ml = "0.4.6"
```

## Usage

For details on all of the methods and their respective parameters, see the [python api documentation](https://jinlow.github.io/forust/).

The [`GradientBooster`](https://jinlow.github.io/forust/#forust.GradientBooster) class is currently the only public facing class in the package, and can be used to train gradient boosted decision tree ensembles with multiple objective functions.

### Training and Predicting

Once, the booster has been initialized, it can be fit on a provided dataset, and performance field. After fitting, the model can be used to predict on a dataset.
In the case of this example, the predictions are the log odds of a given record being 1.

```python
# Small example dataset
from seaborn import load_dataset

df = load_dataset("titanic")
X = df.select_dtypes("number").drop(columns=["survived"])
y = df["survived"]

# Initialize a booster with defaults.
from forust import GradientBooster
model = GradientBooster(objective_type="LogLoss")
model.fit(X, y)

# Predict on data
model.predict(X.head())
# array([-1.94919663,  2.25863229,  0.32963671,  2.48732194, -3.00371813])

# predict contributions
model.predict_contributions(X.head())
# array([[-0.63014213,  0.33880048, -0.16520798, -0.07798772, -0.85083578,
#        -1.07720813],
#       [ 1.05406709,  0.08825999,  0.21662544, -0.12083538,  0.35209258,
#        -1.07720813],
```

When predicting with the data, the maximum iteration that will be used when predicting can be set using the [`set_prediction_iteration`](https://jinlow.github.io/forust/#forust.GradientBooster.set_prediction_iteration) method. If `early_stopping_rounds` has been set, this will default to the best iteration, otherwise all of the trees will be used.

If early stopping was used, the evaluation history can be retrieved with the [`get_evaluation_history`](https://jinlow.github.io/forust/#forust.GradientBooster.get_evaluation_history) method.

```python
model = GradientBooster(objective_type="LogLoss")
model.fit(X, y, evaluation_data=[(X, y)])

model.get_evaluation_history()[0:3]

# array([[588.9158873 ],
#        [532.01055803],
#        [496.76933646]])
```

### Inspecting the Model

Once the booster has been fit, each individual tree structure can be retrieved in text form, using the [`text_dump`](https://jinlow.github.io/forust/#forust.GradientBooster.text_dump) method. This method returns a list, the same length as the number of trees in the model.

```python
model.text_dump()[0]
# 0:[0 < 3] yes=1,no=2,missing=2,gain=91.50833,cover=209.388307
#       1:[4 < 13.7917] yes=3,no=4,missing=4,gain=28.185467,cover=94.00148
#             3:[1 < 18] yes=7,no=8,missing=8,gain=1.4576768,cover=22.090348
#                   7:[1 < 17] yes=15,no=16,missing=16,gain=0.691266,cover=0.705011
#                         15:leaf=-0.15120,cover=0.23500
#                         16:leaf=0.154097,cover=0.470007
```

The [`json_dump`](https://jinlow.github.io/forust/#forust.GradientBooster.json_dump) method performs the same action, but returns the model as a json representation rather than a text string.

To see an estimate for how a given feature is used in the model, the `partial_dependence` method is provided. This method calculates the partial dependence values of a feature. For each unique value of the feature, this gives the estimate of the predicted value for that feature, with the effects of all features averaged out. This information gives an estimate of how a given feature impacts the model.

This information can be plotted to visualize how a feature is used in the model, like so.

```python
from seaborn import lineplot
import matplotlib.pyplot as plt

pd_values = model.partial_dependence(X=X, feature="age", samples=None)

fig = lineplot(x=pd_values[:,0], y=pd_values[:,1],)
plt.title("Partial Dependence Plot")
plt.xlabel("Age")
plt.ylabel("Log Odds")
```
<img  height="340" src="https://github.com/jinlow/forust/raw/main/resources/pdp_plot_age.png">

We can see how this is impacted if a model is created, where a specific constraint is applied to the feature using the `monotone_constraint` parameter.

```python
model = GradientBooster(
    objective_type="LogLoss",
    monotone_constraints={"age": -1},
)
model.fit(X, y)

pd_values = model.partial_dependence(X=X, feature="age")
fig = lineplot(
    x=pd_values[:, 0],
    y=pd_values[:, 1],
)
plt.title("Partial Dependence Plot with Monotonicity")
plt.xlabel("Age")
plt.ylabel("Log Odds")
```
<img  height="340" src="https://github.com/jinlow/forust/raw/main/resources/pdp_plot_age_mono.png">

Feature importance values can be calculated with the [`calculate_feature_importance`](https://jinlow.github.io/forust/#forust.GradientBooster.calculate_feature_importance) method. This function will return a dictionary of the features and their importances. It should be noted that if a feature was never used for splitting it will not be returned in importance dictionary. This function takes the following arguments.

```python
model.calculate_feature_importance("Gain")
# {
#   'parch': 0.0713072270154953, 
#   'age': 0.11609109491109848,
#   'sibsp': 0.1486879289150238,
#   'fare': 0.14309120178222656,
#   'pclass': 0.5208225250244141
# }
```

### Saving the model
To save and subsequently load a trained booster, the `save_booster` and `load_booster` methods can be used. Each accepts a path, which is used to write the model to. The model is saved and loaded as a json object.

```python
trained_model.save_booster("model_path.json")

# To load a model from a json path.
loaded_model = GradientBooster.load_booster("model_path.json")
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "forust",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "rust, forust, machine learning, xgboost, tree model, decision tree",
    "author": "James Inlow",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/2c/08/ba8db41d7db342b011721ad5421aa39f57f20e07247bdd778985ac4f9b71/forust-0.4.6.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <img  height=\"340\" src=\"https://github.com/jinlow/forust/raw/main/resources/tree-image-crop.png\">\n</p>\n\n\n<div align=\"center\">\n\n  <a href=\"https://pypi.org/project/forust/\">![PyPI](https://img.shields.io/pypi/v/forust?color=gr&style=for-the-badge)</a>\n  <a href=\"https://crates.io/crates/forust-ml\">![Crates.io](https://img.shields.io/crates/v/forust-ml?color=gr&style=for-the-badge)</a>\n\n</div>\n\n# Forust\n## _A lightweight gradient boosting package_\nForust, is a lightweight package for building gradient boosted decision tree ensembles. All of the algorithm code is written in [Rust](https://www.rust-lang.org/), with a python wrapper. The rust package can be used directly, however, most examples shown here will be for the python wrapper. For a self contained rust example, [see here](rs-example.md). It implements the same algorithm as the [XGBoost](https://xgboost.readthedocs.io/en/stable/) package, and in many cases will give nearly identical results.\n\nI developed this package for a few reasons, mainly to better understand the XGBoost algorithm, additionally to have a fun project to work on in rust, and because I wanted to be able to experiment with adding new features to the algorithm in a smaller simpler codebase.\n\nAll of the rust code for the package can be found in the [src](src/) directory, while all of the python wrapper code is in the [py-forust](py-forust/) directory.\n\n## Documentation\nDocumentation for the python API can be found [here](https://jinlow.github.io/forust/).\n\n## Installation\nThe package can be installed directly from [pypi](https://pypi.org/project/forust/).\n```shell\npip install forust\n```\n\nTo use in a rust project add the following to your Cargo.toml file.\n```toml\nforust-ml = \"0.4.6\"\n```\n\n## Usage\n\nFor details on all of the methods and their respective parameters, see the [python api documentation](https://jinlow.github.io/forust/).\n\nThe [`GradientBooster`](https://jinlow.github.io/forust/#forust.GradientBooster) class is currently the only public facing class in the package, and can be used to train gradient boosted decision tree ensembles with multiple objective functions.\n\n### Training and Predicting\n\nOnce, the booster has been initialized, it can be fit on a provided dataset, and performance field. After fitting, the model can be used to predict on a dataset.\nIn the case of this example, the predictions are the log odds of a given record being 1.\n\n```python\n# Small example dataset\nfrom seaborn import load_dataset\n\ndf = load_dataset(\"titanic\")\nX = df.select_dtypes(\"number\").drop(columns=[\"survived\"])\ny = df[\"survived\"]\n\n# Initialize a booster with defaults.\nfrom forust import GradientBooster\nmodel = GradientBooster(objective_type=\"LogLoss\")\nmodel.fit(X, y)\n\n# Predict on data\nmodel.predict(X.head())\n# array([-1.94919663,  2.25863229,  0.32963671,  2.48732194, -3.00371813])\n\n# predict contributions\nmodel.predict_contributions(X.head())\n# array([[-0.63014213,  0.33880048, -0.16520798, -0.07798772, -0.85083578,\n#        -1.07720813],\n#       [ 1.05406709,  0.08825999,  0.21662544, -0.12083538,  0.35209258,\n#        -1.07720813],\n```\n\nWhen predicting with the data, the maximum iteration that will be used when predicting can be set using the [`set_prediction_iteration`](https://jinlow.github.io/forust/#forust.GradientBooster.set_prediction_iteration) method. If `early_stopping_rounds` has been set, this will default to the best iteration, otherwise all of the trees will be used.\n\nIf early stopping was used, the evaluation history can be retrieved with the [`get_evaluation_history`](https://jinlow.github.io/forust/#forust.GradientBooster.get_evaluation_history) method.\n\n```python\nmodel = GradientBooster(objective_type=\"LogLoss\")\nmodel.fit(X, y, evaluation_data=[(X, y)])\n\nmodel.get_evaluation_history()[0:3]\n\n# array([[588.9158873 ],\n#        [532.01055803],\n#        [496.76933646]])\n```\n\n### Inspecting the Model\n\nOnce the booster has been fit, each individual tree structure can be retrieved in text form, using the [`text_dump`](https://jinlow.github.io/forust/#forust.GradientBooster.text_dump) method. This method returns a list, the same length as the number of trees in the model.\n\n```python\nmodel.text_dump()[0]\n# 0:[0 < 3] yes=1,no=2,missing=2,gain=91.50833,cover=209.388307\n#       1:[4 < 13.7917] yes=3,no=4,missing=4,gain=28.185467,cover=94.00148\n#             3:[1 < 18] yes=7,no=8,missing=8,gain=1.4576768,cover=22.090348\n#                   7:[1 < 17] yes=15,no=16,missing=16,gain=0.691266,cover=0.705011\n#                         15:leaf=-0.15120,cover=0.23500\n#                         16:leaf=0.154097,cover=0.470007\n```\n\nThe [`json_dump`](https://jinlow.github.io/forust/#forust.GradientBooster.json_dump) method performs the same action, but returns the model as a json representation rather than a text string.\n\nTo see an estimate for how a given feature is used in the model, the `partial_dependence` method is provided. This method calculates the partial dependence values of a feature. For each unique value of the feature, this gives the estimate of the predicted value for that feature, with the effects of all features averaged out. This information gives an estimate of how a given feature impacts the model.\n\nThis information can be plotted to visualize how a feature is used in the model, like so.\n\n```python\nfrom seaborn import lineplot\nimport matplotlib.pyplot as plt\n\npd_values = model.partial_dependence(X=X, feature=\"age\", samples=None)\n\nfig = lineplot(x=pd_values[:,0], y=pd_values[:,1],)\nplt.title(\"Partial Dependence Plot\")\nplt.xlabel(\"Age\")\nplt.ylabel(\"Log Odds\")\n```\n<img  height=\"340\" src=\"https://github.com/jinlow/forust/raw/main/resources/pdp_plot_age.png\">\n\nWe can see how this is impacted if a model is created, where a specific constraint is applied to the feature using the `monotone_constraint` parameter.\n\n```python\nmodel = GradientBooster(\n    objective_type=\"LogLoss\",\n    monotone_constraints={\"age\": -1},\n)\nmodel.fit(X, y)\n\npd_values = model.partial_dependence(X=X, feature=\"age\")\nfig = lineplot(\n    x=pd_values[:, 0],\n    y=pd_values[:, 1],\n)\nplt.title(\"Partial Dependence Plot with Monotonicity\")\nplt.xlabel(\"Age\")\nplt.ylabel(\"Log Odds\")\n```\n<img  height=\"340\" src=\"https://github.com/jinlow/forust/raw/main/resources/pdp_plot_age_mono.png\">\n\nFeature importance values can be calculated with the [`calculate_feature_importance`](https://jinlow.github.io/forust/#forust.GradientBooster.calculate_feature_importance) method. This function will return a dictionary of the features and their importances. It should be noted that if a feature was never used for splitting it will not be returned in importance dictionary. This function takes the following arguments.\n\n```python\nmodel.calculate_feature_importance(\"Gain\")\n# {\n#   'parch': 0.0713072270154953, \n#   'age': 0.11609109491109848,\n#   'sibsp': 0.1486879289150238,\n#   'fare': 0.14309120178222656,\n#   'pclass': 0.5208225250244141\n# }\n```\n\n### Saving the model\nTo save and subsequently load a trained booster, the `save_booster` and `load_booster` methods can be used. Each accepts a path, which is used to write the model to. The model is saved and loaded as a json object.\n\n```python\ntrained_model.save_booster(\"model_path.json\")\n\n# To load a model from a json path.\nloaded_model = GradientBooster.load_booster(\"model_path.json\")\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A lightweight gradient boosting implementation in Rust.",
    "version": "0.4.6",
    "project_urls": null,
    "split_keywords": [
        "rust",
        " forust",
        " machine learning",
        " xgboost",
        " tree model",
        " decision tree"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1da009de115594f4e0db033f98d1e777d754d66e4cf0f5266ccab26af0d9eb5e",
                "md5": "153f98a9784d6ecdff7d1224254d7d44",
                "sha256": "e554256c22bb67f661200c253471074a96025cc3790878201572e03669a9d948"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "153f98a9784d6ecdff7d1224254d7d44",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 517861,
            "upload_time": "2024-03-24T17:43:49",
            "upload_time_iso_8601": "2024-03-24T17:43:49.320085Z",
            "url": "https://files.pythonhosted.org/packages/1d/a0/09de115594f4e0db033f98d1e777d754d66e4cf0f5266ccab26af0d9eb5e/forust-0.4.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d7700834b01c1fc34bef000ab489d51813d57a29a2bb4b50fd61bbafe1c01d1",
                "md5": "d052436f7e0ed6282d32f64673b646d1",
                "sha256": "2342a4d777c20d95aa1a5524d156e3f88af39e3b84fdb955d9f5dec01b04f70f"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d052436f7e0ed6282d32f64673b646d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 568852,
            "upload_time": "2024-03-24T17:42:01",
            "upload_time_iso_8601": "2024-03-24T17:42:01.586610Z",
            "url": "https://files.pythonhosted.org/packages/0d/77/00834b01c1fc34bef000ab489d51813d57a29a2bb4b50fd61bbafe1c01d1/forust-0.4.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04845d5c1ecfbe5ac86a766fd6c49e0c5728f5072bc05e6639c7891e066243c2",
                "md5": "cf359b95f8a4c5e0876e2bfa62de228a",
                "sha256": "ea7107f3c3bc1e5f6a8adf6a35c8978812a90784abab3c2941874da7c56d423f"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cf359b95f8a4c5e0876e2bfa62de228a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 467848,
            "upload_time": "2024-03-24T17:43:48",
            "upload_time_iso_8601": "2024-03-24T17:43:48.999476Z",
            "url": "https://files.pythonhosted.org/packages/04/84/5d5c1ecfbe5ac86a766fd6c49e0c5728f5072bc05e6639c7891e066243c2/forust-0.4.6-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4522d19c95c0edccbdd9370a7ee55f0e35eb4de424c754fdf8de29662026f669",
                "md5": "a1a1cdd24a93a6b67e4022e22d83f83b",
                "sha256": "d2690016574a3735260e9100ecf2dab086fec7fd56d55bc0c1c8cf46e3e3f6b9"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1a1cdd24a93a6b67e4022e22d83f83b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 517810,
            "upload_time": "2024-03-24T17:41:43",
            "upload_time_iso_8601": "2024-03-24T17:41:43.737970Z",
            "url": "https://files.pythonhosted.org/packages/45/22/d19c95c0edccbdd9370a7ee55f0e35eb4de424c754fdf8de29662026f669/forust-0.4.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e513602b23476e37199eb97b179b3ed29f69d8026765219cabe2ab8620d35b00",
                "md5": "6325a6284c1e606c7209dc92c661e164",
                "sha256": "8963fcefd90db283ce5e130d0c826983c8a30ed289b3d094af0036fb6475238f"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6325a6284c1e606c7209dc92c661e164",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 568915,
            "upload_time": "2024-03-24T17:41:53",
            "upload_time_iso_8601": "2024-03-24T17:41:53.602619Z",
            "url": "https://files.pythonhosted.org/packages/e5/13/602b23476e37199eb97b179b3ed29f69d8026765219cabe2ab8620d35b00/forust-0.4.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fb910caf5419d05451e578e8b53ed1de11e735bac25484462069f8e43347288",
                "md5": "8d89173224afaf360373e5809f069db9",
                "sha256": "c93e686944ef36f35530c6259229e33d801a6503de1a7b3ac160df6b3c73f0b6"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8d89173224afaf360373e5809f069db9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 467614,
            "upload_time": "2024-03-24T17:43:09",
            "upload_time_iso_8601": "2024-03-24T17:43:09.212096Z",
            "url": "https://files.pythonhosted.org/packages/9f/b9/10caf5419d05451e578e8b53ed1de11e735bac25484462069f8e43347288/forust-0.4.6-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0cce7542c1e96eede4431a8afeb5e26d87b94cdc07c9f22e77077101550f1b86",
                "md5": "af396a68ce95478f6528c0230f65439f",
                "sha256": "2fb48d025628c89ba65f8e7aecd038aecde60566652c1a55d1fc70f188b542d8"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af396a68ce95478f6528c0230f65439f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 513904,
            "upload_time": "2024-03-24T17:41:39",
            "upload_time_iso_8601": "2024-03-24T17:41:39.458683Z",
            "url": "https://files.pythonhosted.org/packages/0c/ce/7542c1e96eede4431a8afeb5e26d87b94cdc07c9f22e77077101550f1b86/forust-0.4.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24508f2c95366e241810468f83de1498c5eeaeae997e03557e21a2ce6f7dbcc2",
                "md5": "60c8941e1db32e416f6f919d43fe4666",
                "sha256": "95ac75efc0c67a7bb05d4e50f4bcbde8540a64729351d1c6fe56555bcaff675e"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "60c8941e1db32e416f6f919d43fe4666",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 565265,
            "upload_time": "2024-03-24T17:42:05",
            "upload_time_iso_8601": "2024-03-24T17:42:05.151630Z",
            "url": "https://files.pythonhosted.org/packages/24/50/8f2c95366e241810468f83de1498c5eeaeae997e03557e21a2ce6f7dbcc2/forust-0.4.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9f1dce1e7c6998626039115ec7b8edb23a04979633995a2f088d82964c60eae",
                "md5": "dc0c631f6f63d933d325ed0285b7bd22",
                "sha256": "ccfa7b3036c5670d6429a7c067f37d70a996d5731283c7889b6b8e7405d01005"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dc0c631f6f63d933d325ed0285b7bd22",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 465459,
            "upload_time": "2024-03-24T17:43:07",
            "upload_time_iso_8601": "2024-03-24T17:43:07.059883Z",
            "url": "https://files.pythonhosted.org/packages/a9/f1/dce1e7c6998626039115ec7b8edb23a04979633995a2f088d82964c60eae/forust-0.4.6-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8bf7c4e9918353ae61899a3dc91b86cef42f683e1278964b99dd2515f8a085f",
                "md5": "0e1dd11cc8b00e7da5f0316418369efb",
                "sha256": "b1c4120aacc3bfad3e763ba5d148c2708acf0a4750f866ccbaee8a6bcd452307"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e1dd11cc8b00e7da5f0316418369efb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 518339,
            "upload_time": "2024-03-24T17:43:26",
            "upload_time_iso_8601": "2024-03-24T17:43:26.771863Z",
            "url": "https://files.pythonhosted.org/packages/b8/bf/7c4e9918353ae61899a3dc91b86cef42f683e1278964b99dd2515f8a085f/forust-0.4.6-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cec48c2ea1f0a1940601127d95af9a70c28fb5c41d11f549bf01783aad6136cd",
                "md5": "d0c08211688ca08821acab3da1f6ced2",
                "sha256": "e19af5a6cea34da0ca0941866cba5d25fb081ad76cd939c603f48d173cac8ad1"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d0c08211688ca08821acab3da1f6ced2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 568828,
            "upload_time": "2024-03-24T17:42:08",
            "upload_time_iso_8601": "2024-03-24T17:42:08.799218Z",
            "url": "https://files.pythonhosted.org/packages/ce/c4/8c2ea1f0a1940601127d95af9a70c28fb5c41d11f549bf01783aad6136cd/forust-0.4.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89796001276a41ae7526064fb887ed3b77aa42ff039abb19253ee17eef76d8bb",
                "md5": "0b9b3a9d48e4ccf9f1e6cd42a2e357ca",
                "sha256": "c7facd5f7f7d1e341427d4e3cc8b3c767ec0cfbfa38169da40d684903cb1a448"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0b9b3a9d48e4ccf9f1e6cd42a2e357ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 467693,
            "upload_time": "2024-03-24T17:43:40",
            "upload_time_iso_8601": "2024-03-24T17:43:40.224476Z",
            "url": "https://files.pythonhosted.org/packages/89/79/6001276a41ae7526064fb887ed3b77aa42ff039abb19253ee17eef76d8bb/forust-0.4.6-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e793910dedf91c51b6c5537c7fe8adc4d7a3cd557a320209e159eda364b6623a",
                "md5": "535fcdd32d5e421a20da97d8cf31a85b",
                "sha256": "69691056f96c9a5c67721333077ed16e5f4a2fcaa9ff28c2d7f8065001f6e742"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "535fcdd32d5e421a20da97d8cf31a85b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 517873,
            "upload_time": "2024-03-24T17:41:48",
            "upload_time_iso_8601": "2024-03-24T17:41:48.223383Z",
            "url": "https://files.pythonhosted.org/packages/e7/93/910dedf91c51b6c5537c7fe8adc4d7a3cd557a320209e159eda364b6623a/forust-0.4.6-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a33d6dd497d0e7cb4db39a047ca322084bdd5014877d18b3cb7052d3131b7e2",
                "md5": "a822183f357e8379b6b98a465c77aa56",
                "sha256": "6cc8154ac6873a9280230f89f0990699a678e3c016b5f7f914f1062cce0a6356"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a822183f357e8379b6b98a465c77aa56",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 568952,
            "upload_time": "2024-03-24T17:42:06",
            "upload_time_iso_8601": "2024-03-24T17:42:06.331461Z",
            "url": "https://files.pythonhosted.org/packages/7a/33/d6dd497d0e7cb4db39a047ca322084bdd5014877d18b3cb7052d3131b7e2/forust-0.4.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93560ff5fcd2420c6ca1abfc1b44cea9326fbec1ce52745c06882575715dad71",
                "md5": "8e01f85dfa7a396589b6b847bbf3708e",
                "sha256": "6759dbfdbf5f058874f474a6b8f6d98a5b31802df48c3124cb5179a2c194d042"
            },
            "downloads": -1,
            "filename": "forust-0.4.6-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8e01f85dfa7a396589b6b847bbf3708e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 467324,
            "upload_time": "2024-03-24T17:43:47",
            "upload_time_iso_8601": "2024-03-24T17:43:47.511264Z",
            "url": "https://files.pythonhosted.org/packages/93/56/0ff5fcd2420c6ca1abfc1b44cea9326fbec1ce52745c06882575715dad71/forust-0.4.6-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c08ba8db41d7db342b011721ad5421aa39f57f20e07247bdd778985ac4f9b71",
                "md5": "9c18ef317acefb56090f7d42756bcd30",
                "sha256": "cd6c26ac5530ea666a7b951ea2e5250c7e84cee3beccbc72f2edae0770eea513"
            },
            "downloads": -1,
            "filename": "forust-0.4.6.tar.gz",
            "has_sig": false,
            "md5_digest": "9c18ef317acefb56090f7d42756bcd30",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1311654,
            "upload_time": "2024-03-24T17:41:42",
            "upload_time_iso_8601": "2024-03-24T17:41:42.053245Z",
            "url": "https://files.pythonhosted.org/packages/2c/08/ba8db41d7db342b011721ad5421aa39f57f20e07247bdd778985ac4f9b71/forust-0.4.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-24 17:41:42",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "forust"
}
        
Elapsed time: 0.21152s