pyxai


Namepyxai JSON
Version 1.0.14 PyPI version JSON
download
home_pageNone
SummaryExplaining Machine Learning Classifiers in Python
upload_time2025-02-13 15:08:28
maintainerGilles Audemard, Nicolas Szczepanski
docs_urlNone
authorGilles Audemard, Steve Bellart, Louenas Bounia, Jean-Marie Lagniez, Pierre Marquis, Nicolas Szczepanski:
requires_python>=3.6
licenseMIT
keywords xai ai ml explainable learning
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
<p align="center">
  <div style="text-align:center">
    <img src="http://www.cril.univ-artois.fr/pyxai/assets/figures/logo.png" alt="pyxai" width="200"/>
  </div>
</p>

# PyXAI - Python eXplainable AI

- Documentation: [http://www.cril.univ-artois.fr/pyxai/](http://www.cril.univ-artois.fr/pyxai/)
- Git: [https://github.com/crillab/pyxai](https://github.com/crillab/pyxai)
- Pypi: [hhttps://pypi.org/project/pyxai/](https://pypi.org/project/pyxai/)
- Installation: [http://www.cril.univ-artois.fr/pyxai/documentation/installation/](http://www.cril.univ-artois.fr/pyxai/documentation/installation/)

<h3>What is PyXAI ?</h3>
<p align="justify">
<b>PyXAI (Python eXplainable AI)</b> is a <a href="https://www.python.org/">Python</a> library (version 3.6 or later) allowing to bring formal explanations suited to <b>(regression or classification) tree-based ML models</b> (Decision Trees, Random Forests, Boosted Trees, ...). PyXAI generates explanations that are <b>post-hoc and local</b>. In contrast to many popular approaches to XAI (SHAP, LIME, ...), PyXAI generates explanations that are also <b>correct</b>. Being correct (aka sound or faithful) indicates that the explanations that are provided actually <b>reflect the exact behaviour of the model by guaranteeing certain properties</b> about the explanations generated. They can be of several types:  
</p>

<ul>
  <li><b>Abductive explanations</b> for an instance $X$ are intended to explain why $X$ has been classified in the way it has been classified by the ML model (thus, addressing the “Why?” question). In the regression case, abductive explanations for $X$ are intended to explain why the regression value of $X$ belongs to a given interval.</li>
  <li><b>Contrastive explanations</b> for $X$ are intended to explain why $X$ has not been classified by the ML model as the user expected it (thus, addressing the “Why not?” question).</li>
</ul>

<p align="justify">
PyXAI also includes algorithms for <b>correcting tree-based models</b> when their predictions conflict with pieces of user knowledge. This more tricky facet of XAI is seldom offered by existing XAI systems. When some domain knowledge is available and a prediction (or an explanation) contradicts it, the model must be corrected. <b>Rectification</b> is a principled approach for such a correction operation.
</p>

> <b> New features in version 1.1:</b>
> <ul>
>   <li>Rectification for DT (Decision Tree) and RF (Random Forest) models dedicated to binary classification.</li>
>   <li>Visualization displayed in a notebook or on screen, and now also for time series problems.</li> 
>   <li>Enhanced compatibility with Mac OS and Windows</li>
> </ul> 

> <b> New features in version 1.0:</b>
> <ul>
>   <li>Regression for Boosted Trees with XGBoost or LightGBM</li>
>   <li>Adding Theories (knowledge about the dataset)</li>
>   <li>Easier model import (automatic detection of model types)</li>
>   <li>PyXAI's Graphical User Interface (GUI): displaying, loading and saving explanations. </li>
>   <li>Supports multiple image formats for imaging datasets</li>
>   <li>Supports data pre-processing (tool for preparing and cleansing a dataset)</li>
>   <li>Unit Tests with the unittest module</li>
> </ul> 

<figure>
  <img src="http://www.cril.univ-artois.fr/pyxai/assets/figures/base.png" alt="pyxai" width="600"/>
  <figcaption>User interaction with PyXAI.</figcaption>
</figure>

<figure>
  <img src="http://www.cril.univ-artois.fr/pyxai/assets/figures/GUI.png" alt="pyxai" width="580"/>
  <figcaption>PyXAI's Graphical User Interface (GUI) for visualizing explanations.</figcaption>
</figure>

<figure>
  <img src="http://www.cril.univ-artois.fr/pyxai/assets/figures/timeserie.png" alt="pyxai" />
  <figcaption>Visualization in a notebook of an explanation for an instance from a time series problem.</figcaption>
</figure>

<h3>What is the difference between PyXAI and other methods ?</h3>
<p align="justify">

The most popular approaches (SHAP, LIME, ...) to XAI <b>are model-agnostic, but they do not offer any guarantees</b> of rigor. 
A number of works by <a href="https://arxiv.org/pdf/2307.07514.pdf">Marques-Silva and Huang</a>, <a href="https://www.ijcai.org/proceedings/2020/726">Ignatiev</a> have highlighted several misconceptions about such approaches to XAI. Correctness is paramount when dealing with high-risk or sensitive applications, which is the type of applications that are targeted by PyXAI. When the correctness property is not satisfied, one can find ”counterexamples” for the explanations that are generated, i.e., pairs of instances sharing an explanation but leading to distinct predictions. Contrastingly, <b>PyXAI algorithms rely on logic-based, model-precise</b> approaches for computing explanations. Although formal explainability has a number of drawbacks, particularly in terms of the computational complexity of logical reasoning needed to derive explanations, <b>steady progress has been made since its inception</b>. 
</p>

<h3>Which models can be explained with PyXAI ?</h3>
<p align="justify">
Models are the resulting objects of an experimental ML protocol through a chosen <b>cross-validation method</b> (for example, the result of a training phase on a classifier). Importantly, in PyXAI, there is a complete separation between the learning phase and the explaining phase: <b>you produce/load/save models, and you find explanations for some instances given such models</b>. Currently, with PyXAI, you can use methods to find explanations suited to different <b>ML models for classification or regression tasks</b>:
</p>
<ul>
  <li><a href="https://en.wikipedia.org/wiki/Decision_tree_learning">Decision Tree</a> (DT)</li> 
  <li><a href="https://en.wikipedia.org/wiki/Random_forest">Random Forest</a> (RF)</li>
  <li><a href="https://en.wikipedia.org/wiki/Gradient_boosting">Boosted Tree (Gradient boosting)</a> (BT)</li>
</ul> 
<p align="justify">
In addition to finding explanations, PyXAI also provides methods that perform operations (production, saving, loading) on models and instances. Currently, these methods are available for three <b>ML libraries</b>:
</p>
<ul>
  <li><a href="https://scikit-learn.org/stable/">Scikit-learn</a>: a software machine learning library</li> 
  <li><a href="https://xgboost.readthedocs.io/en/stable/">XGBoost</a>: an optimized distributed gradient boosting library</li>
  <li><a href="https://lightgbm.readthedocs.io/en/stable/">LightGBM</a>: a gradient boosting framework that uses tree based learning algorithms</li>
</ul> 
<p align="justify">
It is possible to also leverage PyXAI to find explanations suited to models learned using other libraries.
</p>

<h3>What does this website offer ?</h3>
<p align="justify">
In this website, you can find all what you need to know about PyXAI, with more than 10 <a href="https://jupyter.org/">Jupyter</a> Notebooks, including:
</p>
<ul>
 <li>The <a href="https://www.cril.univ-artois.fr/pyxai/documentation/installation/">installation guide</a> and the <a href="https://www.cril.univ-artois.fr/pyxai/documentation/quickstart/">quick start</a></li>
 
  <li>About models:</li>
  <ul>
  <li>How to <b>prepare and clean a dataset</b> using the PyXAI <a href="https://www.cril.univ-artois.fr/pyxai/documentation/preprocessor/">preprocessor</a> object?</li>
  <li>How to <b>import a model</b>, whatever its format? <a href="https://www.cril.univ-artois.fr/pyxai/documentation/importing/"> Importing Models</a> </li>
  <li>How to <b>generate a model using a ML cross-validation method</b>? <a href="https://www.cril.univ-artois.fr/pyxai/documentation/learning/generating/">Generating Models</a> </li>
  
  <li>How to <b>build a model from trees directly built by the user</b>? <a href="https://www.cril.univ-artois.fr/pyxai/documentation/learning/builder/">Building Models</a></li>
  <li>How to <b>save and load models</b> with the PyXAI learning module? <a href="https://www.cril.univ-artois.fr/pyxai/documentation/saving/">Saving/Loading Models</a></li>
  </ul>

<li>About explanations:</li>
  <ul>
  <li>The <b>concepts of the PyXAI explainer module</b>: <a href="https://www.cril.univ-artois.fr/pyxai/documentation/explainer/concepts/">Concepts</a> </li>
  <li>How to use a <b>time limit</b>? <a href="https://www.cril.univ-artois.fr/pyxai/documentation/explainer/time_limit/">Time Limit</a> </li>
  
  <li>The PyXAI library offers the possibility to process user preferences (<b>prefer some explanations to others or exclude some features</b>): <a href="https://www.cril.univ-artois.fr/pyxai/documentation/explainer/preferences/">Preferences</a> </li>

  <li><b>Theories are knowledge about the dataset.</b> PyXAI offers the possibility of encoding a theory when calculating explanations in order to avoid calculating impossible explanations: <a href="https://www.cril.univ-artois.fr/pyxai/documentation/explainer/theories/">Theories</a> </li>

  <li>How to <b>compute explanations for classification tasks</b>? <a href="https://www.cril.univ-artois.fr/pyxai/documentation/classification/">Explaining Classification</a> </li>
  
  <li>How to <b>compute explanations for regression tasks</b>? <a href="https://www.cril.univ-artois.fr/pyxai/documentation/regression/">Explaining Regression</a> </li>
  
  </ul>
  <li>About rectification:</li>
  <ul>
    <li>How to <b>rectify a DT model</b>? <a href="https://www.cril.univ-artois.fr/pyxai//documentation/rectification/decision_tree/">Rectification for Decision Tree</a> </li>
    <li>How to <b>rectify a RF model</b>? <a href="https://www.cril.univ-artois.fr/pyxai//documentation/rectification/random_forest/">Rectification for Random Forest</a> </li>
  </ul>
 <li>About visualization:</li>
  <ul>
    <li>How to generate images to represent explanations (<b>in a notebook or save them in png format</b>)? <a href="https://www.cril.univ-artois.fr/pyxai/documentation/visualization/visualization/">Visualization of Explanations (Without GUI)</a>?</li>
    <li>How to use the <b>PyXAI's Graphical User Interface (GUI)</b> for <a href="https://www.cril.univ-artois.fr/pyxai/documentation/visualization/visualizationGUI/">visualizing explanations</a>?</li>
  </ul>
 
 
</ul>

<h3>How to use PyXAI ?</h3>
<p align="justify">
Here is an example (it comes from the <a href="https://www.cril.univ-artois.fr/pyxai/documentation/quickstart">Quick Start page</a>):
</p>
<h4 class="example">PyXAI in action</h4>

```python
from pyxai import Learning, Explainer

learner = Learning.Scikitlearn("tests/iris.csv", learner_type=Learning.CLASSIFICATION)
model = learner.evaluate(method=Learning.HOLD_OUT, output=Learning.DT)
instance, prediction = learner.get_instances(model, n=1, correct=True, predictions=[0])

explainer = Explainer.initialize(model, instance)
print("instance:", instance)
print("binary representation:", explainer.binary_representation)

sufficient_reason = explainer.sufficient_reason(n=1)
print("sufficient_reason:", sufficient_reason)
print("to_features:", explainer.to_features(sufficient_reason))

instance, prediction = learner.get_instances(model, n=1, correct=False)
explainer.set_instance(instance)
contrastive_reason = explainer.contrastive_reason()
print("contrastive reason", contrastive_reason)
print("to_features:", explainer.to_features(contrastive_reason, contrastive=True))

explainer.visualisation.screen(instance, contrastive_reason, contrastive=True)
```

<img src="https://www.cril.univ-artois.fr/pyxai/assets/figures/pyxaiGUI.png" alt="pyxai" />

<p>As illustrated by this example, with a few lines of code, PyXAI allows you to train a model, extract instances, and get explanations about the classifications made.</p>

<br /><br />
<p align="center">
    <a href="http://www.cril.univ-artois.fr"><img width="140px" src="https://www.cril.univ-artois.fr/pyxai/assets/figures/cril.png" /></a>
    <a href="https://www.cnrs.fr/"><img width="80px" style="width: 80px;" src="https://www.cril.univ-artois.fr/pyxai/assets/figures/cnrs.png" /></a>
    <a href="https://www.confiance.ai/"><img width="140px" style="width: 120px;" src="https://www.cril.univ-artois.fr/pyxai/assets/figures/confianceai.jpg" /></a>
    <a href="https://www.hautsdefrance.fr/"><img width="120px" style="width: 80px;" src="https://www.cril.univ-artois.fr/pyxai/assets/figures/logo_HDF.svg" /></a>
    <a href="http://univ-artois.fr"><img width="120px" src="https://www.cril.univ-artois.fr/pyxai/assets/figures/artois.png" /></a>
</p>


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyxai",
    "maintainer": "Gilles Audemard, Nicolas Szczepanski",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "audemard@cril.fr, szczepanski@cril.fr",
    "keywords": "XAI AI ML explainable learning",
    "author": "Gilles Audemard, Steve Bellart, Louenas Bounia, Jean-Marie Lagniez, Pierre Marquis, Nicolas Szczepanski:",
    "author_email": "audemard@cril.fr, bellart@cril.fr, bounia@cril.fr, lagniez@cril.fr, marquis@cril.fr, szczepanski@cril.fr",
    "download_url": null,
    "platform": "LINUX",
    "description": "\n<p align=\"center\">\n  <div style=\"text-align:center\">\n    <img src=\"http://www.cril.univ-artois.fr/pyxai/assets/figures/logo.png\" alt=\"pyxai\" width=\"200\"/>\n  </div>\n</p>\n\n# PyXAI - Python eXplainable AI\n\n- Documentation: [http://www.cril.univ-artois.fr/pyxai/](http://www.cril.univ-artois.fr/pyxai/)\n- Git: [https://github.com/crillab/pyxai](https://github.com/crillab/pyxai)\n- Pypi: [hhttps://pypi.org/project/pyxai/](https://pypi.org/project/pyxai/)\n- Installation: [http://www.cril.univ-artois.fr/pyxai/documentation/installation/](http://www.cril.univ-artois.fr/pyxai/documentation/installation/)\n\n<h3>What is PyXAI ?</h3>\n<p align=\"justify\">\n<b>PyXAI (Python eXplainable AI)</b> is a <a href=\"https://www.python.org/\">Python</a> library (version 3.6 or later) allowing to bring formal explanations suited to <b>(regression or classification) tree-based ML models</b> (Decision Trees, Random Forests, Boosted Trees, ...). PyXAI generates explanations that are <b>post-hoc and local</b>. In contrast to many popular approaches to XAI (SHAP, LIME, ...), PyXAI generates explanations that are also <b>correct</b>. Being correct (aka sound or faithful) indicates that the explanations that are provided actually <b>reflect the exact behaviour of the model by guaranteeing certain properties</b> about the explanations generated. They can be of several types:  \n</p>\n\n<ul>\n  <li><b>Abductive explanations</b> for an instance $X$ are intended to explain why $X$ has been classified in the way it has been classified by the ML model (thus, addressing the \u201cWhy?\u201d question). In the regression case, abductive explanations for $X$ are intended to explain why the regression value of $X$ belongs to a given interval.</li>\n  <li><b>Contrastive explanations</b> for $X$ are intended to explain why $X$ has not been classified by the ML model as the user expected it (thus, addressing the \u201cWhy not?\u201d question).</li>\n</ul>\n\n<p align=\"justify\">\nPyXAI also includes algorithms for <b>correcting tree-based models</b> when their predictions conflict with pieces of user knowledge. This more tricky facet of XAI is seldom offered by existing XAI systems. When some domain knowledge is available and a prediction (or an explanation) contradicts it, the model must be corrected. <b>Rectification</b> is a principled approach for such a correction operation.\n</p>\n\n> <b> New features in version 1.1:</b>\n> <ul>\n>   <li>Rectification for DT (Decision Tree) and RF (Random Forest) models dedicated to binary classification.</li>\n>   <li>Visualization displayed in a notebook or on screen, and now also for time series problems.</li> \n>   <li>Enhanced compatibility with Mac OS and Windows</li>\n> </ul> \n\n> <b> New features in version 1.0:</b>\n> <ul>\n>   <li>Regression for Boosted Trees with XGBoost or LightGBM</li>\n>   <li>Adding Theories (knowledge about the dataset)</li>\n>   <li>Easier model import (automatic detection of model types)</li>\n>   <li>PyXAI's Graphical User Interface (GUI): displaying, loading and saving explanations. </li>\n>   <li>Supports multiple image formats for imaging datasets</li>\n>   <li>Supports data pre-processing (tool for preparing and cleansing a dataset)</li>\n>   <li>Unit Tests with the unittest module</li>\n> </ul> \n\n<figure>\n  <img src=\"http://www.cril.univ-artois.fr/pyxai/assets/figures/base.png\" alt=\"pyxai\" width=\"600\"/>\n  <figcaption>User interaction with PyXAI.</figcaption>\n</figure>\n\n<figure>\n  <img src=\"http://www.cril.univ-artois.fr/pyxai/assets/figures/GUI.png\" alt=\"pyxai\" width=\"580\"/>\n  <figcaption>PyXAI's Graphical User Interface (GUI) for visualizing explanations.</figcaption>\n</figure>\n\n<figure>\n  <img src=\"http://www.cril.univ-artois.fr/pyxai/assets/figures/timeserie.png\" alt=\"pyxai\" />\n  <figcaption>Visualization in a notebook of an explanation for an instance from a time series problem.</figcaption>\n</figure>\n\n<h3>What is the difference between PyXAI and other methods ?</h3>\n<p align=\"justify\">\n\nThe most popular approaches (SHAP, LIME, ...) to XAI <b>are model-agnostic, but they do not offer any guarantees</b> of rigor. \nA number of works by <a href=\"https://arxiv.org/pdf/2307.07514.pdf\">Marques-Silva and Huang</a>, <a href=\"https://www.ijcai.org/proceedings/2020/726\">Ignatiev</a> have highlighted several misconceptions about such approaches to XAI. Correctness is paramount when dealing with high-risk or sensitive applications, which is the type of applications that are targeted by PyXAI. When the correctness property is not satisfied, one can find \u201dcounterexamples\u201d for the explanations that are generated, i.e., pairs of instances sharing an explanation but leading to distinct predictions. Contrastingly, <b>PyXAI algorithms rely on logic-based, model-precise</b> approaches for computing explanations. Although formal explainability has a number of drawbacks, particularly in terms of the computational complexity of logical reasoning needed to derive explanations, <b>steady progress has been made since its inception</b>. \n</p>\n\n<h3>Which models can be explained with PyXAI ?</h3>\n<p align=\"justify\">\nModels are the resulting objects of an experimental ML protocol through a chosen <b>cross-validation method</b> (for example, the result of a training phase on a classifier). Importantly, in PyXAI, there is a complete separation between the learning phase and the explaining phase: <b>you produce/load/save models, and you find explanations for some instances given such models</b>. Currently, with PyXAI, you can use methods to find explanations suited to different <b>ML models for classification or regression tasks</b>:\n</p>\n<ul>\n  <li><a href=\"https://en.wikipedia.org/wiki/Decision_tree_learning\">Decision Tree</a> (DT)</li> \n  <li><a href=\"https://en.wikipedia.org/wiki/Random_forest\">Random Forest</a> (RF)</li>\n  <li><a href=\"https://en.wikipedia.org/wiki/Gradient_boosting\">Boosted Tree (Gradient boosting)</a> (BT)</li>\n</ul> \n<p align=\"justify\">\nIn addition to finding explanations, PyXAI also provides methods that perform operations (production, saving, loading) on models and instances. Currently, these methods are available for three <b>ML libraries</b>:\n</p>\n<ul>\n  <li><a href=\"https://scikit-learn.org/stable/\">Scikit-learn</a>: a software machine learning library</li> \n  <li><a href=\"https://xgboost.readthedocs.io/en/stable/\">XGBoost</a>: an optimized distributed gradient boosting library</li>\n  <li><a href=\"https://lightgbm.readthedocs.io/en/stable/\">LightGBM</a>: a gradient boosting framework that uses tree based learning algorithms</li>\n</ul> \n<p align=\"justify\">\nIt is possible to also leverage PyXAI to find explanations suited to models learned using other libraries.\n</p>\n\n<h3>What does this website offer ?</h3>\n<p align=\"justify\">\nIn this website, you can find all what you need to know about PyXAI, with more than 10 <a href=\"https://jupyter.org/\">Jupyter</a> Notebooks, including:\n</p>\n<ul>\n <li>The <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/installation/\">installation guide</a> and the <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/quickstart/\">quick start</a></li>\n \n  <li>About models:</li>\n  <ul>\n  <li>How to <b>prepare and clean a dataset</b> using the PyXAI <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/preprocessor/\">preprocessor</a> object?</li>\n  <li>How to <b>import a model</b>, whatever its format? <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/importing/\"> Importing Models</a> </li>\n  <li>How to <b>generate a model using a ML cross-validation method</b>? <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/learning/generating/\">Generating Models</a> </li>\n  \n  <li>How to <b>build a model from trees directly built by the user</b>? <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/learning/builder/\">Building Models</a></li>\n  <li>How to <b>save and load models</b> with the PyXAI learning module? <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/saving/\">Saving/Loading Models</a></li>\n  </ul>\n\n<li>About explanations:</li>\n  <ul>\n  <li>The <b>concepts of the PyXAI explainer module</b>: <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/explainer/concepts/\">Concepts</a> </li>\n  <li>How to use a <b>time limit</b>? <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/explainer/time_limit/\">Time Limit</a> </li>\n  \n  <li>The PyXAI library offers the possibility to process user preferences (<b>prefer some explanations to others or exclude some features</b>): <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/explainer/preferences/\">Preferences</a> </li>\n\n  <li><b>Theories are knowledge about the dataset.</b> PyXAI offers the possibility of encoding a theory when calculating explanations in order to avoid calculating impossible explanations: <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/explainer/theories/\">Theories</a> </li>\n\n  <li>How to <b>compute explanations for classification tasks</b>? <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/classification/\">Explaining Classification</a> </li>\n  \n  <li>How to <b>compute explanations for regression tasks</b>? <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/regression/\">Explaining Regression</a> </li>\n  \n  </ul>\n  <li>About rectification:</li>\n  <ul>\n    <li>How to <b>rectify a DT model</b>? <a href=\"https://www.cril.univ-artois.fr/pyxai//documentation/rectification/decision_tree/\">Rectification for Decision Tree</a> </li>\n    <li>How to <b>rectify a RF model</b>? <a href=\"https://www.cril.univ-artois.fr/pyxai//documentation/rectification/random_forest/\">Rectification for Random Forest</a> </li>\n  </ul>\n <li>About visualization:</li>\n  <ul>\n    <li>How to generate images to represent explanations (<b>in a notebook or save them in png format</b>)? <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/visualization/visualization/\">Visualization of Explanations (Without GUI)</a>?</li>\n    <li>How to use the <b>PyXAI's Graphical User Interface (GUI)</b> for <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/visualization/visualizationGUI/\">visualizing explanations</a>?</li>\n  </ul>\n \n \n</ul>\n\n<h3>How to use PyXAI ?</h3>\n<p align=\"justify\">\nHere is an example (it comes from the <a href=\"https://www.cril.univ-artois.fr/pyxai/documentation/quickstart\">Quick Start page</a>):\n</p>\n<h4 class=\"example\">PyXAI in action</h4>\n\n```python\nfrom pyxai import Learning, Explainer\n\nlearner = Learning.Scikitlearn(\"tests/iris.csv\", learner_type=Learning.CLASSIFICATION)\nmodel = learner.evaluate(method=Learning.HOLD_OUT, output=Learning.DT)\ninstance, prediction = learner.get_instances(model, n=1, correct=True, predictions=[0])\n\nexplainer = Explainer.initialize(model, instance)\nprint(\"instance:\", instance)\nprint(\"binary representation:\", explainer.binary_representation)\n\nsufficient_reason = explainer.sufficient_reason(n=1)\nprint(\"sufficient_reason:\", sufficient_reason)\nprint(\"to_features:\", explainer.to_features(sufficient_reason))\n\ninstance, prediction = learner.get_instances(model, n=1, correct=False)\nexplainer.set_instance(instance)\ncontrastive_reason = explainer.contrastive_reason()\nprint(\"contrastive reason\", contrastive_reason)\nprint(\"to_features:\", explainer.to_features(contrastive_reason, contrastive=True))\n\nexplainer.visualisation.screen(instance, contrastive_reason, contrastive=True)\n```\n\n<img src=\"https://www.cril.univ-artois.fr/pyxai/assets/figures/pyxaiGUI.png\" alt=\"pyxai\" />\n\n<p>As illustrated by this example, with a few lines of code, PyXAI allows you to train a model, extract instances, and get explanations about the classifications made.</p>\n\n<br /><br />\n<p align=\"center\">\n    <a href=\"http://www.cril.univ-artois.fr\"><img width=\"140px\" src=\"https://www.cril.univ-artois.fr/pyxai/assets/figures/cril.png\" /></a>\n    <a href=\"https://www.cnrs.fr/\"><img width=\"80px\" style=\"width: 80px;\" src=\"https://www.cril.univ-artois.fr/pyxai/assets/figures/cnrs.png\" /></a>\n    <a href=\"https://www.confiance.ai/\"><img width=\"140px\" style=\"width: 120px;\" src=\"https://www.cril.univ-artois.fr/pyxai/assets/figures/confianceai.jpg\" /></a>\n    <a href=\"https://www.hautsdefrance.fr/\"><img width=\"120px\" style=\"width: 80px;\" src=\"https://www.cril.univ-artois.fr/pyxai/assets/figures/logo_HDF.svg\" /></a>\n    <a href=\"http://univ-artois.fr\"><img width=\"120px\" src=\"https://www.cril.univ-artois.fr/pyxai/assets/figures/artois.png\" /></a>\n</p>\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Explaining Machine Learning Classifiers in Python",
    "version": "1.0.14",
    "project_urls": {
        "Documentation": "http://www.cril.univ-artois.fr/pyxai/",
        "Git": "https://github.com/crillab/pyxai",
        "Installation": "http://www.cril.univ-artois.fr/pyxai/documentation/installation/"
    },
    "split_keywords": [
        "xai",
        "ai",
        "ml",
        "explainable",
        "learning"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50fd21d5bb51beac245329b982a73076499653327bfc58bbd6fd59b567be16d3",
                "md5": "541deea33417261a50560b12ce59aaa6",
                "sha256": "005d83b78ceef35a50d5c324fbb167213a62c7c6b8911c975062bdc38a7b1aaa"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "541deea33417261a50560b12ce59aaa6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 11155636,
            "upload_time": "2025-02-13T15:08:28",
            "upload_time_iso_8601": "2025-02-13T15:08:28.203691Z",
            "url": "https://files.pythonhosted.org/packages/50/fd/21d5bb51beac245329b982a73076499653327bfc58bbd6fd59b567be16d3/pyxai-1.0.14-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57802e4a68d8805717090ce555efb5d6cb1aea1eedaa477408b724d04e8f6715",
                "md5": "07298e52de8334ab12331f92b8a1fbea",
                "sha256": "3f37c32e732a242dc82e9003992b9192e8707f3d370d43f53f83b75475e02b5c"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "07298e52de8334ab12331f92b8a1fbea",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 12060545,
            "upload_time": "2025-02-13T15:09:04",
            "upload_time_iso_8601": "2025-02-13T15:09:04.844932Z",
            "url": "https://files.pythonhosted.org/packages/57/80/2e4a68d8805717090ce555efb5d6cb1aea1eedaa477408b724d04e8f6715/pyxai-1.0.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08509cc770874aa6c7753944fa89144e694de1ddd22010b0db59e9a94f713324",
                "md5": "3fec018598b1a45111172254df435cba",
                "sha256": "f44264771347d150309e140740615a7ae4042d0072925c571abe214b97b30b9d"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3fec018598b1a45111172254df435cba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 12060756,
            "upload_time": "2025-02-13T15:10:14",
            "upload_time_iso_8601": "2025-02-13T15:10:14.502863Z",
            "url": "https://files.pythonhosted.org/packages/08/50/9cc770874aa6c7753944fa89144e694de1ddd22010b0db59e9a94f713324/pyxai-1.0.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e11bd4087295ab0cc363f4e0dfe6536676f02c25b222e20496d543a2b5e8e28",
                "md5": "03a82ecaff0b0b7b312cdf4f96967289",
                "sha256": "6cba9f8665f1a46e19706b0ecc02bdb9283778591ee4567359c46c3f93e66f7d"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03a82ecaff0b0b7b312cdf4f96967289",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 12079137,
            "upload_time": "2025-02-13T15:10:17",
            "upload_time_iso_8601": "2025-02-13T15:10:17.873102Z",
            "url": "https://files.pythonhosted.org/packages/7e/11/bd4087295ab0cc363f4e0dfe6536676f02c25b222e20496d543a2b5e8e28/pyxai-1.0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f1285592bcb144c6d4e3f8584fe5367816e5054959d0dc47587e1f680af6321",
                "md5": "dc4c2e2d6dee33f0c597fd359df5336d",
                "sha256": "709ff69e4ef1fbbf7badba97521c2c32ac1fa035c886efb769f4e85b4010c900"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dc4c2e2d6dee33f0c597fd359df5336d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 12625978,
            "upload_time": "2025-02-13T15:09:09",
            "upload_time_iso_8601": "2025-02-13T15:09:09.217381Z",
            "url": "https://files.pythonhosted.org/packages/5f/12/85592bcb144c6d4e3f8584fe5367816e5054959d0dc47587e1f680af6321/pyxai-1.0.14-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "366e6310208017418751689cf7ace023669c331a0abb3e171926cbdde8502ef1",
                "md5": "79b24fbaa29000d21206c8003fb5f9bd",
                "sha256": "da3046350eb91dedfbe577402695e2dbfcdab332b1b00c42635a7d81299e601d"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "79b24fbaa29000d21206c8003fb5f9bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 12683194,
            "upload_time": "2025-02-13T15:10:23",
            "upload_time_iso_8601": "2025-02-13T15:10:23.131291Z",
            "url": "https://files.pythonhosted.org/packages/36/6e/6310208017418751689cf7ace023669c331a0abb3e171926cbdde8502ef1/pyxai-1.0.14-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "399f2e57ffa77057e09b6dbc45f5604cddfd1c7fa61d85f161395b01b9b4af9b",
                "md5": "284f926dd1b3862c2d884e6f0ab732f3",
                "sha256": "ce399f7911dea88e938a41d8f099dff2906b37cecb9416f9fcbfb5b1a8c7b0ff"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "284f926dd1b3862c2d884e6f0ab732f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 12665783,
            "upload_time": "2025-02-13T15:10:27",
            "upload_time_iso_8601": "2025-02-13T15:10:27.081076Z",
            "url": "https://files.pythonhosted.org/packages/39/9f/2e57ffa77057e09b6dbc45f5604cddfd1c7fa61d85f161395b01b9b4af9b/pyxai-1.0.14-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30ee93d86b73f7429a58c4f8e21bef26910dff117395c5beb39357e82d674f4d",
                "md5": "a93bcfc1db0bda3e31b08d0183eba1d9",
                "sha256": "93bc9053c65fd27ae9d54b573504e9d956286dd6bfcb55324531d77b62a694bf"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a93bcfc1db0bda3e31b08d0183eba1d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 11155633,
            "upload_time": "2025-02-13T15:08:31",
            "upload_time_iso_8601": "2025-02-13T15:08:31.448398Z",
            "url": "https://files.pythonhosted.org/packages/30/ee/93d86b73f7429a58c4f8e21bef26910dff117395c5beb39357e82d674f4d/pyxai-1.0.14-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "baa32fce3e938a833688ff31d2328f24453be27cf33627352198da8c6899922b",
                "md5": "f28136b4bb0c1b17a1d62e24d95da9e3",
                "sha256": "ca9c6bf71ba97b45e21e02470efd906f9549e8033d741e066fab955043a2c40f"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f28136b4bb0c1b17a1d62e24d95da9e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 12064009,
            "upload_time": "2025-02-13T15:09:12",
            "upload_time_iso_8601": "2025-02-13T15:09:12.974848Z",
            "url": "https://files.pythonhosted.org/packages/ba/a3/2fce3e938a833688ff31d2328f24453be27cf33627352198da8c6899922b/pyxai-1.0.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d507576d9917c0f46dd6d7d96cf7d956c6f9850346dd9c0f1a811cac733f35e",
                "md5": "0916328b3f99fe0a33a5825856313be9",
                "sha256": "1c955e9f34bfd5ca2928d80e76765eb4e9b8c56d6802d9fbbd71039d6c07b37a"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0916328b3f99fe0a33a5825856313be9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 12064553,
            "upload_time": "2025-02-13T15:10:30",
            "upload_time_iso_8601": "2025-02-13T15:10:30.673248Z",
            "url": "https://files.pythonhosted.org/packages/7d/50/7576d9917c0f46dd6d7d96cf7d956c6f9850346dd9c0f1a811cac733f35e/pyxai-1.0.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ecc279c01b1ceac2674a955f28ab80d366da31928311182d673e65c4e26781c",
                "md5": "0f35c953baf089a39470f7782603a0f1",
                "sha256": "386843b9a08d37bdf4efcb216802a7a76055278dd1cc59014540c0ca45e088de"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f35c953baf089a39470f7782603a0f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 12083463,
            "upload_time": "2025-02-13T15:10:35",
            "upload_time_iso_8601": "2025-02-13T15:10:35.082195Z",
            "url": "https://files.pythonhosted.org/packages/3e/cc/279c01b1ceac2674a955f28ab80d366da31928311182d673e65c4e26781c/pyxai-1.0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e76ab417ae70fe7161a40a451d0af97165cf1eb2fec7a78dbc5243621e80ad17",
                "md5": "a009d911d3d2e166ea947473511b21b6",
                "sha256": "f69b6db74eaceb835373ebf2c96504412a4d5c9a319fab26cdfc536de33c6247"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a009d911d3d2e166ea947473511b21b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 12649757,
            "upload_time": "2025-02-13T15:09:17",
            "upload_time_iso_8601": "2025-02-13T15:09:17.100142Z",
            "url": "https://files.pythonhosted.org/packages/e7/6a/b417ae70fe7161a40a451d0af97165cf1eb2fec7a78dbc5243621e80ad17/pyxai-1.0.14-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f4547a4adfed2b3c82891aea68838b475f9258aad927086f2d3a417005fe8c2",
                "md5": "b45f011ab99dc00c49c11673588cae72",
                "sha256": "3710b3164a885825722ef89791bd3a97e071db50f794f0c0a372c9115dd041ab"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "b45f011ab99dc00c49c11673588cae72",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 12710471,
            "upload_time": "2025-02-13T15:10:38",
            "upload_time_iso_8601": "2025-02-13T15:10:38.602429Z",
            "url": "https://files.pythonhosted.org/packages/6f/45/47a4adfed2b3c82891aea68838b475f9258aad927086f2d3a417005fe8c2/pyxai-1.0.14-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75f04ce78ec703e2135e8279a4d27766e22add2b3682f09e36f03b5ad5e4cc32",
                "md5": "3b40ff643150925394d40556f570962a",
                "sha256": "b83bbe6b8e53b85f9ace2582f5df65ae9816cf434190c68156e2f8ac6d8ebaff"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b40ff643150925394d40556f570962a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 12688646,
            "upload_time": "2025-02-13T15:10:41",
            "upload_time_iso_8601": "2025-02-13T15:10:41.881755Z",
            "url": "https://files.pythonhosted.org/packages/75/f0/4ce78ec703e2135e8279a4d27766e22add2b3682f09e36f03b5ad5e4cc32/pyxai-1.0.14-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f31b9c98592bfa174ecd01250bcc0fa52dca43ebcb28f46da2ec92b1a0e8b00",
                "md5": "93bc950bc257c16630511353369df991",
                "sha256": "eb675024bc13393cd042841f11bd1b4396981ba8414afcb9de12744c94b02f43"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "93bc950bc257c16630511353369df991",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 11155643,
            "upload_time": "2025-02-13T15:08:34",
            "upload_time_iso_8601": "2025-02-13T15:08:34.530129Z",
            "url": "https://files.pythonhosted.org/packages/2f/31/b9c98592bfa174ecd01250bcc0fa52dca43ebcb28f46da2ec92b1a0e8b00/pyxai-1.0.14-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c228e124c738f20e4bd85c64ad202c562da8fcdf548232fdf53e20269a441efd",
                "md5": "6e8d0aed812c095919bcf11820aa375f",
                "sha256": "540e8061d7412abe8a60844564cc3d0cf4bdb3967b7612de999600ac150a7ec8"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6e8d0aed812c095919bcf11820aa375f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 12064544,
            "upload_time": "2025-02-13T15:09:20",
            "upload_time_iso_8601": "2025-02-13T15:09:20.300325Z",
            "url": "https://files.pythonhosted.org/packages/c2/28/e124c738f20e4bd85c64ad202c562da8fcdf548232fdf53e20269a441efd/pyxai-1.0.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db30d733bfc9133a260f1580da57ce479aa9ce0a588cfbabb14d64eed4646d5c",
                "md5": "0678ea03ca976befd2f367e487a93467",
                "sha256": "f198101e3ec1a00e871e0d59306da3d9d3c7cb08f0bd0ef2e0319c1266e2a1ec"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0678ea03ca976befd2f367e487a93467",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 12065193,
            "upload_time": "2025-02-13T15:10:45",
            "upload_time_iso_8601": "2025-02-13T15:10:45.398277Z",
            "url": "https://files.pythonhosted.org/packages/db/30/d733bfc9133a260f1580da57ce479aa9ce0a588cfbabb14d64eed4646d5c/pyxai-1.0.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c1c37faba59882fb44dc6711dc9d8cd768550de1e34ba5b94bbfe9342f8f2c2",
                "md5": "a972f784137ad0b6df588186415751d8",
                "sha256": "d3f64034469ed46ce77c7e60c106b23623b30f96172cc7966ef9b49010b145c0"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a972f784137ad0b6df588186415751d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 12084247,
            "upload_time": "2025-02-13T15:10:50",
            "upload_time_iso_8601": "2025-02-13T15:10:50.633098Z",
            "url": "https://files.pythonhosted.org/packages/0c/1c/37faba59882fb44dc6711dc9d8cd768550de1e34ba5b94bbfe9342f8f2c2/pyxai-1.0.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fedc3618f596cb1614f50f61eb1ebb64b5fe64c16426485569f713e9f73746b",
                "md5": "18731bf8b9a3423e05892010ff203e0c",
                "sha256": "320f2c6309a54d1dbe01b42643b8e27f2f7b476a2d65b44bc615062df45392ab"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "18731bf8b9a3423e05892010ff203e0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 12648794,
            "upload_time": "2025-02-13T15:09:24",
            "upload_time_iso_8601": "2025-02-13T15:09:24.102924Z",
            "url": "https://files.pythonhosted.org/packages/8f/ed/c3618f596cb1614f50f61eb1ebb64b5fe64c16426485569f713e9f73746b/pyxai-1.0.14-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "99e0097a2b88d0b1b62942e081720395079ed1911ae74ae0c8f91b6e69036214",
                "md5": "833f3a4596ec15f3b1963d3ae1b83b24",
                "sha256": "9f6021bbbbba1dc8494199d43252a8c624a99dcf5e37ab4d99850a22b32e6b93"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "833f3a4596ec15f3b1963d3ae1b83b24",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 12709240,
            "upload_time": "2025-02-13T15:10:55",
            "upload_time_iso_8601": "2025-02-13T15:10:55.540077Z",
            "url": "https://files.pythonhosted.org/packages/99/e0/097a2b88d0b1b62942e081720395079ed1911ae74ae0c8f91b6e69036214/pyxai-1.0.14-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cee4488765b149b0a712185fbd1a8b14fe48c3361b3cb784a129bbd0795f73d",
                "md5": "d2f2159187f900a199ea341aadf2657f",
                "sha256": "dc9516416d200e3b777ffa1a988e996ed6f214ce0e42eda2946dd14b0427261b"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2f2159187f900a199ea341aadf2657f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 12688249,
            "upload_time": "2025-02-13T15:10:59",
            "upload_time_iso_8601": "2025-02-13T15:10:59.499485Z",
            "url": "https://files.pythonhosted.org/packages/5c/ee/4488765b149b0a712185fbd1a8b14fe48c3361b3cb784a129bbd0795f73d/pyxai-1.0.14-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff4ab048d0f6d1af149545c98fd1fb255dbe939af081062e088f170ce59d8e20",
                "md5": "483220439a13de3ac1485c4111ecb490",
                "sha256": "2c79191706baf8268602d1b6620f9155664be66e7898cb854bcbe10074ae3f9e"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "483220439a13de3ac1485c4111ecb490",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 12058340,
            "upload_time": "2025-02-13T15:09:27",
            "upload_time_iso_8601": "2025-02-13T15:09:27.262162Z",
            "url": "https://files.pythonhosted.org/packages/ff/4a/b048d0f6d1af149545c98fd1fb255dbe939af081062e088f170ce59d8e20/pyxai-1.0.14-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d6f7f5e4ed4617a95082f62adc0fc1ea8a2409fcb5a14c62f367c1e05b2fcaa",
                "md5": "8f508f93e895f5d975df15bfb29db716",
                "sha256": "b6c9553eba67c4fdff7701e527d4fd9b3450a68e2c8242a294442fa88d67547c"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8f508f93e895f5d975df15bfb29db716",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 12059958,
            "upload_time": "2025-02-13T15:11:03",
            "upload_time_iso_8601": "2025-02-13T15:11:03.049267Z",
            "url": "https://files.pythonhosted.org/packages/5d/6f/7f5e4ed4617a95082f62adc0fc1ea8a2409fcb5a14c62f367c1e05b2fcaa/pyxai-1.0.14-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c8ef768d290a1c34a6df5e738d88bb8cd4afecddabab04a303a4a04f80d8838",
                "md5": "31965d93083d6359cbd3b4cdf0911649",
                "sha256": "bfbe4237c6964ac56daab575f36d58ceb5d2cc2417cd4f99281c04cfd14b9b34"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31965d93083d6359cbd3b4cdf0911649",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 12078723,
            "upload_time": "2025-02-13T15:11:07",
            "upload_time_iso_8601": "2025-02-13T15:11:07.154913Z",
            "url": "https://files.pythonhosted.org/packages/8c/8e/f768d290a1c34a6df5e738d88bb8cd4afecddabab04a303a4a04f80d8838/pyxai-1.0.14-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "daf4b056cb97fd15c4aaf91e1cdf2ffdd0033a390fd074f3ceeb0df97f61cf02",
                "md5": "19f0c719db41e203f4f1b5c22f7ac452",
                "sha256": "593fa6248cc27641f6bdc7a5fd290a9418671037a3ff42ad7fe720aadd1ef3d4"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "19f0c719db41e203f4f1b5c22f7ac452",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 12624201,
            "upload_time": "2025-02-13T15:09:31",
            "upload_time_iso_8601": "2025-02-13T15:09:31.208643Z",
            "url": "https://files.pythonhosted.org/packages/da/f4/b056cb97fd15c4aaf91e1cdf2ffdd0033a390fd074f3ceeb0df97f61cf02/pyxai-1.0.14-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1de4d15a799c677b94d31fcca0d908b1b7e572dd420abfd17016a207ec1028e4",
                "md5": "d236fd2ee2e0b43ac686acfab47237ce",
                "sha256": "41a0a053effdd81f3194cb36ca54a6fb705f0d88b19c2ba997a1aa4d88d41c0e"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d236fd2ee2e0b43ac686acfab47237ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 12682917,
            "upload_time": "2025-02-13T15:11:10",
            "upload_time_iso_8601": "2025-02-13T15:11:10.505295Z",
            "url": "https://files.pythonhosted.org/packages/1d/e4/d15a799c677b94d31fcca0d908b1b7e572dd420abfd17016a207ec1028e4/pyxai-1.0.14-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d8d603296ee5d515b7b1ff734732f49a422f2cfd9069f2c59d8caca8fdcef9d",
                "md5": "837cd782dd9423b05c99f2d197a7026c",
                "sha256": "6d2483095404757a673685a452b4be8f1180fd41eebf71b7d8beef211ca8b5c4"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "837cd782dd9423b05c99f2d197a7026c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 12664867,
            "upload_time": "2025-02-13T15:11:15",
            "upload_time_iso_8601": "2025-02-13T15:11:15.252777Z",
            "url": "https://files.pythonhosted.org/packages/7d/8d/603296ee5d515b7b1ff734732f49a422f2cfd9069f2c59d8caca8fdcef9d/pyxai-1.0.14-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e624a2dbc172115bf7e652310f61d09ca71ebe5dcd9794524e00b29ed48837a",
                "md5": "79b1a05a364aca943ae0a314b961a515",
                "sha256": "c9ea05b0467770b0b8b6ff0aa6dd54f80008a08f1923dfb01ebb5a919e5ff703"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "79b1a05a364aca943ae0a314b961a515",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 12058606,
            "upload_time": "2025-02-13T15:09:34",
            "upload_time_iso_8601": "2025-02-13T15:09:34.377056Z",
            "url": "https://files.pythonhosted.org/packages/5e/62/4a2dbc172115bf7e652310f61d09ca71ebe5dcd9794524e00b29ed48837a/pyxai-1.0.14-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7056c81f672767db4072cdf12ef2254cc2d117bd8b056e53bdc4ad572472aa0",
                "md5": "a2b25b567d725dac69a4735a836f9fed",
                "sha256": "3ecee972f104401a28ea4749e4603b7de041eba9a68e5dd1ecafc395eeb22555"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a2b25b567d725dac69a4735a836f9fed",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 12058851,
            "upload_time": "2025-02-13T15:11:19",
            "upload_time_iso_8601": "2025-02-13T15:11:19.737350Z",
            "url": "https://files.pythonhosted.org/packages/e7/05/6c81f672767db4072cdf12ef2254cc2d117bd8b056e53bdc4ad572472aa0/pyxai-1.0.14-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65d1a81a663242a57e21df68d316668d16d7aab203435af11ddb8378ffdc2e55",
                "md5": "f80907dd215c4bd7b697f6c7a9cbb90f",
                "sha256": "9ecffebb9a70af26409930b47767d77c7d11fd1e34ae81ee2d69de9c986d924d"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f80907dd215c4bd7b697f6c7a9cbb90f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 12076833,
            "upload_time": "2025-02-13T15:11:24",
            "upload_time_iso_8601": "2025-02-13T15:11:24.083259Z",
            "url": "https://files.pythonhosted.org/packages/65/d1/a81a663242a57e21df68d316668d16d7aab203435af11ddb8378ffdc2e55/pyxai-1.0.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dce442e64a0719f600accb6fd79d62e31aa9c6861b6a1d666051dbbe80783e11",
                "md5": "0dc10aa2b1c08d8dc937a51505142428",
                "sha256": "210fac8770ae63ac04862fb98d4f309e7e1263d0f945452db74b555edd507866"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0dc10aa2b1c08d8dc937a51505142428",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 12628179,
            "upload_time": "2025-02-13T15:09:37",
            "upload_time_iso_8601": "2025-02-13T15:09:37.982911Z",
            "url": "https://files.pythonhosted.org/packages/dc/e4/42e64a0719f600accb6fd79d62e31aa9c6861b6a1d666051dbbe80783e11/pyxai-1.0.14-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32d0f072d3136aee207136a005c7ca1890b1df249e862b3ad51896fb8085245a",
                "md5": "3ed04bc39d22b61b8cbe5dfa71afa69f",
                "sha256": "c176526024b4c83f6e5c9b7f5a4c15fbac02474a5f3f5f8adbe9f59f4e6342b5"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3ed04bc39d22b61b8cbe5dfa71afa69f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 12686103,
            "upload_time": "2025-02-13T15:11:28",
            "upload_time_iso_8601": "2025-02-13T15:11:28.556871Z",
            "url": "https://files.pythonhosted.org/packages/32/d0/f072d3136aee207136a005c7ca1890b1df249e862b3ad51896fb8085245a/pyxai-1.0.14-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd6408fa45e765b262c0f02a3a3ac41295bb5fc97de92eb5e7ad49bcc98ff62b",
                "md5": "0e08dfd20023d802abf269497d274cc9",
                "sha256": "9cf7b79c2496d81a32b5f1a0c5b9601dc387c4a5e5bbbab9aa03e9fbabf9af94"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e08dfd20023d802abf269497d274cc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 12668773,
            "upload_time": "2025-02-13T15:11:31",
            "upload_time_iso_8601": "2025-02-13T15:11:31.900788Z",
            "url": "https://files.pythonhosted.org/packages/fd/64/08fa45e765b262c0f02a3a3ac41295bb5fc97de92eb5e7ad49bcc98ff62b/pyxai-1.0.14-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "986cc0fe93d631803635cc75653843769041080dd9e9428890d5562ccfd0398b",
                "md5": "65d914b7273a087de34770a1e91f12dd",
                "sha256": "eb1d8c91f52a11ac26c68f3ce173242085aa59990e4bf8a21a6adefb902acfba"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "65d914b7273a087de34770a1e91f12dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 11155648,
            "upload_time": "2025-02-13T15:08:38",
            "upload_time_iso_8601": "2025-02-13T15:08:38.404842Z",
            "url": "https://files.pythonhosted.org/packages/98/6c/c0fe93d631803635cc75653843769041080dd9e9428890d5562ccfd0398b/pyxai-1.0.14-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5180cead4c5016dd560d3a63babe39911154ed5fcc183c0704df097de7023a4e",
                "md5": "9315b091732450266daa065958a6ea4f",
                "sha256": "d1a6797baf6cb634ae2a0b4cbb57d422e16647a349cdb92392444eec71c8e1e4"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9315b091732450266daa065958a6ea4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 12058430,
            "upload_time": "2025-02-13T15:09:42",
            "upload_time_iso_8601": "2025-02-13T15:09:42.421205Z",
            "url": "https://files.pythonhosted.org/packages/51/80/cead4c5016dd560d3a63babe39911154ed5fcc183c0704df097de7023a4e/pyxai-1.0.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5beacbae66f55b85b78424a1380b38672ac07d35eb38085b9250a0cf7a597a7e",
                "md5": "8b7af56c0e906577080f3e0f9588e7f0",
                "sha256": "b4f73a478997410bc7972d085afa462d06c29ce637e570bc365ff6fc8094fca8"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8b7af56c0e906577080f3e0f9588e7f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 12058693,
            "upload_time": "2025-02-13T15:11:35",
            "upload_time_iso_8601": "2025-02-13T15:11:35.303389Z",
            "url": "https://files.pythonhosted.org/packages/5b/ea/cbae66f55b85b78424a1380b38672ac07d35eb38085b9250a0cf7a597a7e/pyxai-1.0.14-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58295a7bd02a357cee547643f8bbc0c6501a8e15a821c4ee172f03995c534cef",
                "md5": "1ce2ce53185e95c751dcc52d9a60edd1",
                "sha256": "bae4ff24137648cf4875e41e034edac2d720fcb06dbe1955c9001229182e254c"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ce2ce53185e95c751dcc52d9a60edd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 12077091,
            "upload_time": "2025-02-13T15:11:38",
            "upload_time_iso_8601": "2025-02-13T15:11:38.548172Z",
            "url": "https://files.pythonhosted.org/packages/58/29/5a7bd02a357cee547643f8bbc0c6501a8e15a821c4ee172f03995c534cef/pyxai-1.0.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8a4f0e6bfb0f6cc4e0066716202e055d8b80f3e121b72ce64f27c158fcdf2fb",
                "md5": "a8a7a0a7d993d3fc2967464bf2474adc",
                "sha256": "be8acd89081e08e3b9cc3c52591c92e458466fae2d6716d4b3eaa3aa1faa2aa1"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a8a7a0a7d993d3fc2967464bf2474adc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 12624034,
            "upload_time": "2025-02-13T15:09:46",
            "upload_time_iso_8601": "2025-02-13T15:09:46.510208Z",
            "url": "https://files.pythonhosted.org/packages/f8/a4/f0e6bfb0f6cc4e0066716202e055d8b80f3e121b72ce64f27c158fcdf2fb/pyxai-1.0.14-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a808feda6a562cf547bba02022686e0f8fbf42c821218c74eed1fa07172f68d7",
                "md5": "a191f2670d665b8f148e2d493cc7e522",
                "sha256": "cc8f704f084aa04f3958d350d113ac3331354a292ab6ee81f63427080c417c6c"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a191f2670d665b8f148e2d493cc7e522",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 12682221,
            "upload_time": "2025-02-13T15:11:42",
            "upload_time_iso_8601": "2025-02-13T15:11:42.579026Z",
            "url": "https://files.pythonhosted.org/packages/a8/08/feda6a562cf547bba02022686e0f8fbf42c821218c74eed1fa07172f68d7/pyxai-1.0.14-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "062958c2e3c804eab2c0067fd71dc5d2c2953874464032981666c3d28327b3b3",
                "md5": "4cb8edeaa967cf315b74d1915763cf4f",
                "sha256": "9f5051427b156a870b2c6cddbabe06875503f805d5c9da75bb3076202387ec09"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4cb8edeaa967cf315b74d1915763cf4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 12664204,
            "upload_time": "2025-02-13T15:11:46",
            "upload_time_iso_8601": "2025-02-13T15:11:46.477428Z",
            "url": "https://files.pythonhosted.org/packages/06/29/58c2e3c804eab2c0067fd71dc5d2c2953874464032981666c3d28327b3b3/pyxai-1.0.14-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e65f41b893259393e75b18fc8c910e24045fb85a5f2d0b391dafafd0124ed70",
                "md5": "f179dba63d921196d1d1aa8f1647dd5c",
                "sha256": "438d72a84447a870e73b13bb2ab86ff474726e24279948e6347fee24e76fc83c"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f179dba63d921196d1d1aa8f1647dd5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 11155638,
            "upload_time": "2025-02-13T15:08:42",
            "upload_time_iso_8601": "2025-02-13T15:08:42.201849Z",
            "url": "https://files.pythonhosted.org/packages/2e/65/f41b893259393e75b18fc8c910e24045fb85a5f2d0b391dafafd0124ed70/pyxai-1.0.14-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e750709f53c7349a43f9560c23aee2e1ba459d51eab565f3988348942d56b30e",
                "md5": "a98360db9e24f704b39c0492556f1880",
                "sha256": "aa32e7a8cc80bcb87e79d9bb2bc1937b16842ad675356fb4d65d907be0ace4dc"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a98360db9e24f704b39c0492556f1880",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 12059806,
            "upload_time": "2025-02-13T15:09:49",
            "upload_time_iso_8601": "2025-02-13T15:09:49.999456Z",
            "url": "https://files.pythonhosted.org/packages/e7/50/709f53c7349a43f9560c23aee2e1ba459d51eab565f3988348942d56b30e/pyxai-1.0.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef1806df21a20d948e1f69214cfae8fd330817df51cee84d3e250d8d9be0c007",
                "md5": "4ef8c95a428f9fba2a7fc73a91959ac8",
                "sha256": "de524ce5e09350a0543ca63e7f78ef08643a26b702e578567518318c81cc7a4c"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4ef8c95a428f9fba2a7fc73a91959ac8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 12060024,
            "upload_time": "2025-02-13T15:11:50",
            "upload_time_iso_8601": "2025-02-13T15:11:50.142301Z",
            "url": "https://files.pythonhosted.org/packages/ef/18/06df21a20d948e1f69214cfae8fd330817df51cee84d3e250d8d9be0c007/pyxai-1.0.14-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4d508f9c6fec70cb3149e4d3d9298dc85b0ed5a9b127fcf1d5a54690fd11910",
                "md5": "a52088b76e94ba443d187eeb5d69603f",
                "sha256": "b4007d458bbae38b403a8486f517aa0a8ca3a74bb97dc4c48152113b6306f033"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a52088b76e94ba443d187eeb5d69603f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 12078463,
            "upload_time": "2025-02-13T15:11:54",
            "upload_time_iso_8601": "2025-02-13T15:11:54.831015Z",
            "url": "https://files.pythonhosted.org/packages/e4/d5/08f9c6fec70cb3149e4d3d9298dc85b0ed5a9b127fcf1d5a54690fd11910/pyxai-1.0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32e8c1d71e57310f0841b96e622c5f53f5afd698b9ac83263554d605899825ad",
                "md5": "d06af27069c92dcf2610d5c07195e2be",
                "sha256": "3d9f00db19e6d2c8a3a238c8c0f1da353dcc4197a4e24151207c19dadaf6e237"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d06af27069c92dcf2610d5c07195e2be",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 12625117,
            "upload_time": "2025-02-13T15:09:54",
            "upload_time_iso_8601": "2025-02-13T15:09:54.605616Z",
            "url": "https://files.pythonhosted.org/packages/32/e8/c1d71e57310f0841b96e622c5f53f5afd698b9ac83263554d605899825ad/pyxai-1.0.14-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1cdbcf9a7737e23e034f8ffa0b221922896e79a76f67eb117a839ef3161c1b11",
                "md5": "aa2f3578becc4e7a605b6955a5ad51eb",
                "sha256": "2c2759abc8d3560b6f4a0bf7f399d7ad0ae3d4e4f62299341aaa2e3f262f2368"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "aa2f3578becc4e7a605b6955a5ad51eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 12682869,
            "upload_time": "2025-02-13T15:11:58",
            "upload_time_iso_8601": "2025-02-13T15:11:58.635107Z",
            "url": "https://files.pythonhosted.org/packages/1c/db/cf9a7737e23e034f8ffa0b221922896e79a76f67eb117a839ef3161c1b11/pyxai-1.0.14-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff8023076afbf7181095778ecc64db24af3708f613a030e6fc02540b159313f9",
                "md5": "21330cc366b2d8b2aae4c501b08a860d",
                "sha256": "e4e80224041178e4a94ab8457cedd9795164a7609d859795cd9f0a47b02f0556"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21330cc366b2d8b2aae4c501b08a860d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 12664960,
            "upload_time": "2025-02-13T15:12:02",
            "upload_time_iso_8601": "2025-02-13T15:12:02.201122Z",
            "url": "https://files.pythonhosted.org/packages/ff/80/23076afbf7181095778ecc64db24af3708f613a030e6fc02540b159313f9/pyxai-1.0.14-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ae8c95bae509c541af8c0b95ce1dd04ecd2835c2d27610760e0fd2c373ba213",
                "md5": "1e6af7bad298cb04ada03dbfaf5242b5",
                "sha256": "46d94806473b3c7ff3175daf6e435698a01b651a0db41e9f6aa585c6fa95459c"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1e6af7bad298cb04ada03dbfaf5242b5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 11153564,
            "upload_time": "2025-02-13T15:08:46",
            "upload_time_iso_8601": "2025-02-13T15:08:46.397112Z",
            "url": "https://files.pythonhosted.org/packages/5a/e8/c95bae509c541af8c0b95ce1dd04ecd2835c2d27610760e0fd2c373ba213/pyxai-1.0.14-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7eb1976db87f55887ed6721c2c066bb568e45e1934ba1303dac7ccf0f34227aa",
                "md5": "4914f01974de475f5925c9dcbfbd2524",
                "sha256": "95816c54dff942090ac3662950a653a46662493cb7aca690c8221408b2510465"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4914f01974de475f5925c9dcbfbd2524",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 11192722,
            "upload_time": "2025-02-13T15:09:57",
            "upload_time_iso_8601": "2025-02-13T15:09:57.874238Z",
            "url": "https://files.pythonhosted.org/packages/7e/b1/976db87f55887ed6721c2c066bb568e45e1934ba1303dac7ccf0f34227aa/pyxai-1.0.14-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "115f0a1b8a36234b06b94e0487385f38eb0f77c0ee522491d25865517a4b95c7",
                "md5": "8d99470501359852b14b37b320ff09e3",
                "sha256": "39366b649709ffb9d15524061dd37a8d0d4bdfee33a0698a3c796366f4b74710"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8d99470501359852b14b37b320ff09e3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 11202523,
            "upload_time": "2025-02-13T15:12:06",
            "upload_time_iso_8601": "2025-02-13T15:12:06.552017Z",
            "url": "https://files.pythonhosted.org/packages/11/5f/0a1b8a36234b06b94e0487385f38eb0f77c0ee522491d25865517a4b95c7/pyxai-1.0.14-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d0a030294e66d48febc6a8f65e06f67d5db3a6d20f0eb72d3910cb28688e1eb",
                "md5": "0d86f87a98f5bfc9f36a337ee437168f",
                "sha256": "db8ad4aa0a945311df8a431c254370e297fa1c6776d74ef352d39697a53767b6"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d86f87a98f5bfc9f36a337ee437168f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 11195254,
            "upload_time": "2025-02-13T15:12:12",
            "upload_time_iso_8601": "2025-02-13T15:12:12.973708Z",
            "url": "https://files.pythonhosted.org/packages/6d/0a/030294e66d48febc6a8f65e06f67d5db3a6d20f0eb72d3910cb28688e1eb/pyxai-1.0.14-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "580f9ab17a76eec5db999fbbb109ba61675f09d1b39426cf096b2d37436e9dd1",
                "md5": "d1ba1899e0bbfb2a76058137c769a88c",
                "sha256": "73c4ad855fe978755e39c62a7b9cd1fd22449a7df8452d014292b209b52e423c"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d1ba1899e0bbfb2a76058137c769a88c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 11194032,
            "upload_time": "2025-02-13T15:10:01",
            "upload_time_iso_8601": "2025-02-13T15:10:01.600214Z",
            "url": "https://files.pythonhosted.org/packages/58/0f/9ab17a76eec5db999fbbb109ba61675f09d1b39426cf096b2d37436e9dd1/pyxai-1.0.14-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6fa0576807e2c1211d0d780dbfc1b73138a98c91b575e9b88f02d3c6d76d26a",
                "md5": "da17bb08f0d9f7b6a0acc33730321816",
                "sha256": "401801c8974bfecbecd3ff1fca4cda8a06a02268a3f76819545d12961ed9b36d"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "da17bb08f0d9f7b6a0acc33730321816",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 11204236,
            "upload_time": "2025-02-13T15:12:16",
            "upload_time_iso_8601": "2025-02-13T15:12:16.945507Z",
            "url": "https://files.pythonhosted.org/packages/e6/fa/0576807e2c1211d0d780dbfc1b73138a98c91b575e9b88f02d3c6d76d26a/pyxai-1.0.14-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36d831ce92cd05ee7b104f0a974fd049e8fda0576a188c22e815c9f75a968d0d",
                "md5": "d5645032c15df374ebb4d99d95c78abb",
                "sha256": "689d7c18940cffc0a326f8ef8e8bb4cadf7b10edcff88af2e2f5633bcc7964fd"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d5645032c15df374ebb4d99d95c78abb",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 11197100,
            "upload_time": "2025-02-13T15:12:20",
            "upload_time_iso_8601": "2025-02-13T15:12:20.719690Z",
            "url": "https://files.pythonhosted.org/packages/36/d8/31ce92cd05ee7b104f0a974fd049e8fda0576a188c22e815c9f75a968d0d/pyxai-1.0.14-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0700712cb45f1a25401a2f28c68cb11fd3817755940a329d1f2540ad5422932b",
                "md5": "638eff9e863c3235b3923b9483385af5",
                "sha256": "d70882ab791de76e441ce39f245965e6cff546de4f5cc99f60e20d5622af493a"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "638eff9e863c3235b3923b9483385af5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 11153598,
            "upload_time": "2025-02-13T15:08:49",
            "upload_time_iso_8601": "2025-02-13T15:08:49.400733Z",
            "url": "https://files.pythonhosted.org/packages/07/00/712cb45f1a25401a2f28c68cb11fd3817755940a329d1f2540ad5422932b/pyxai-1.0.14-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bc858b90e7dd43ce117875247bc2c89ee148b5030dec674ee168b56e41a8784",
                "md5": "20d239c20c362b78e1a0b9d9a826f209",
                "sha256": "da72df7abc5613d592fb473d5e1b1868f63958d3078726f1d7251b17bde2a340"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "20d239c20c362b78e1a0b9d9a826f209",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 11192847,
            "upload_time": "2025-02-13T15:10:07",
            "upload_time_iso_8601": "2025-02-13T15:10:07.644023Z",
            "url": "https://files.pythonhosted.org/packages/5b/c8/58b90e7dd43ce117875247bc2c89ee148b5030dec674ee168b56e41a8784/pyxai-1.0.14-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5199214d39c41b7f5a12c264f0e7b89edd078775eff0678a60ece88162f87eee",
                "md5": "cc2925ca6593fa1f9864973669c4dcf4",
                "sha256": "9889a2ede189385011158edbaa3b848ae5160eb0229477922398cd157879597d"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cc2925ca6593fa1f9864973669c4dcf4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 11202567,
            "upload_time": "2025-02-13T15:12:24",
            "upload_time_iso_8601": "2025-02-13T15:12:24.808330Z",
            "url": "https://files.pythonhosted.org/packages/51/99/214d39c41b7f5a12c264f0e7b89edd078775eff0678a60ece88162f87eee/pyxai-1.0.14-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "919065893ff0fa959c12bf1ebdb2e53aab53842c6487009c58ecf1fc97185643",
                "md5": "b552347fb6b5b282d319a31a48c377c1",
                "sha256": "f89c2296565d329d1625c6a80443663a99117a57af075b1d6158df5fb0600288"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b552347fb6b5b282d319a31a48c377c1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 11195291,
            "upload_time": "2025-02-13T15:12:28",
            "upload_time_iso_8601": "2025-02-13T15:12:28.427393Z",
            "url": "https://files.pythonhosted.org/packages/91/90/65893ff0fa959c12bf1ebdb2e53aab53842c6487009c58ecf1fc97185643/pyxai-1.0.14-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3f89c05d6d87d74d87141c2ba78ca9e990169a59fa1ee4c4827141375739544",
                "md5": "4a827313a8c6c76cc435b7343307bed0",
                "sha256": "9e8d9d7d89e513920bf16b22e92f5e0e75e54a641b35c6ee32ca8997460667f0"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a827313a8c6c76cc435b7343307bed0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 11153640,
            "upload_time": "2025-02-13T15:08:52",
            "upload_time_iso_8601": "2025-02-13T15:08:52.354956Z",
            "url": "https://files.pythonhosted.org/packages/d3/f8/9c05d6d87d74d87141c2ba78ca9e990169a59fa1ee4c4827141375739544/pyxai-1.0.14-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0785e6c22b9a843d09d699fd1b6da8eeb2dcb24b23ec3600502494128bbb8d2d",
                "md5": "8a8938834acec776cf1516952f1b5cfb",
                "sha256": "e85e33af51467c432024c29c32ece0c2e9896a1d8aed2f3b76eb1a52196f3268"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a8938834acec776cf1516952f1b5cfb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 11192699,
            "upload_time": "2025-02-13T15:10:11",
            "upload_time_iso_8601": "2025-02-13T15:10:11.394773Z",
            "url": "https://files.pythonhosted.org/packages/07/85/e6c22b9a843d09d699fd1b6da8eeb2dcb24b23ec3600502494128bbb8d2d/pyxai-1.0.14-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8acbec5b0de74f8d027b05eed3e0e92e630391d3aac897372cae3335f8bdb37",
                "md5": "455429a3034d47d9fc5a52b7b1246093",
                "sha256": "b528dd5ead69dbf47aa3efa953c0f127b3471b13d1a8eeccb976091ad3d2e0ea"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "455429a3034d47d9fc5a52b7b1246093",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 11202438,
            "upload_time": "2025-02-13T15:12:32",
            "upload_time_iso_8601": "2025-02-13T15:12:32.151246Z",
            "url": "https://files.pythonhosted.org/packages/c8/ac/bec5b0de74f8d027b05eed3e0e92e630391d3aac897372cae3335f8bdb37/pyxai-1.0.14-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1de45e2d69f529fbb92811609e3327e6dc2318364fd332e740498d00dcaa94bf",
                "md5": "cd9f25129253c0423fb3f2cb3f81ac8c",
                "sha256": "54c06420399dce953f573af5652139e0018c89d19d5ebfa074b51c24afeb979d"
            },
            "downloads": -1,
            "filename": "pyxai-1.0.14-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd9f25129253c0423fb3f2cb3f81ac8c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 11195189,
            "upload_time": "2025-02-13T15:12:35",
            "upload_time_iso_8601": "2025-02-13T15:12:35.751915Z",
            "url": "https://files.pythonhosted.org/packages/1d/e4/5e2d69f529fbb92811609e3327e6dc2318364fd332e740498d00dcaa94bf/pyxai-1.0.14-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-13 15:08:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "crillab",
    "github_project": "pyxai",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyxai"
}
        
Elapsed time: 0.47918s