pyAgrum-nightly


NamepyAgrum-nightly JSON
Version 1.17.2.9.dev202502251739452835 PyPI version JSON
download
home_pagehttps://agrum.gitlab.io/
SummaryBayesian networks and other Probabilistic Graphical Models.
upload_time2025-02-25 02:41:25
maintainerNone
docs_urlNone
authorPierre-Henri Wuillemin and Christophe Gonzales
requires_pythonNone
licenseLGPLv3
keywords probabilities probabilistic-graphical-models inference diagnosis
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
pyAgrum
=======

``pyAgrum`` is a scientific C++ and Python library dedicated to Bayesian Networks and other Probabilistic Graphical Models. It provides a high-level interface to the part of aGrUM allowing to create, model, learn, use, calculate with and embed Bayesian Networks and other graphical models. Some specific (python and C++) codes are added in order to simplify and extend the ``aGrUM`` API.

Example
=======

.. code:: python

    import pyAgrum as gum

    # Creating BayesNet with 4 variables
    bn=gum.BayesNet('WaterSprinkler')
    print(bn)

    # Adding nodes the long way
    c=bn.add(gum.LabelizedVariable('c','cloudy ?',["Yes","No"]))
    print(c)

    # Adding nodes the short way
    s, r, w = [ bn.add(name, 2) for name in "srw" ]
    print (s,r,w)
    print (bn)

    # Addings arcs c -> s, c -> r, s -> w, r -> w
    bn.addArc(c,s)
    for link in [(c,r),(s,w),(r,w)]:
    bn.addArc(*link)
    print(bn)

    # or, equivalenlty, creating the BN with 4 variables, and the arcs in one line
    bn=gum.fastBN("w<-r<-c{Yes|No}->s->w")

    # Filling CPTs
    bn.cpt("c").fillWith([0.5,0.5])
    bn.cpt("s")[0,:]=0.5 # equivalent to [0.5,0.5]
    bn.cpt("s")[{"c":1}]=[0.9,0.1]
    bn.cpt("w")[0,0,:] = [1, 0] # r=0,s=0
    bn.cpt("w")[0,1,:] = [0.1, 0.9] # r=0,s=1
    bn.cpt("w")[{"r":1,"s":0}] = [0.1, 0.9] # r=1,s=0
    bn.cpt("w")[1,1,:] = [0.01, 0.99] # r=1,s=1
    bn.cpt("r")[{"c":0}]=[0.8,0.2]
    bn.cpt("r")[{"c":1}]=[0.2,0.8]

    # Saving BN as a BIF file
    gum.saveBN(bn,"WaterSprinkler.bif")

    # Loading BN from a BIF file
    bn2=gum.loadBN("WaterSprinkler.bif")

    # Inference
    ie=gum.LazyPropagation(bn)
    ie.makeInference()
    print (ie.posterior("w"))

    # Adding hard evidence
    ie.setEvidence({"s": 1, "c": 0})
    ie.makeInference()
    print(ie.posterior("w"))

    # Adding soft and hard evidence
    ie.setEvidence({"s": [0.5, 1], "c": 0})
    ie.makeInference()
    print(ie.posterior("w"))

LICENSE
=======

Copyright (C) 2005-2024 by Pierre-Henri WUILLEMIN et Christophe GONZALES
{prenom.nom}_at_lip6.fr

The aGrUM/pyAgrum library and all its derivatives are distributed under the LGPL3 license, see https://www.gnu.org/licenses/lgpl-3.0.en.html.

Authors
=======

-  Pierre-Henri Wuillemin
-  Christophe Gonzales

Maintainers
===========

- Lionel Torti
- Gaspard Ducamp

            

Raw data

            {
    "_id": null,
    "home_page": "https://agrum.gitlab.io/",
    "name": "pyAgrum-nightly",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "probabilities probabilistic-graphical-models inference diagnosis",
    "author": "Pierre-Henri Wuillemin and Christophe Gonzales",
    "author_email": "info@agrum.org",
    "download_url": null,
    "platform": "any",
    "description": "\npyAgrum\n=======\n\n``pyAgrum`` is a scientific C++ and Python library dedicated to Bayesian Networks and other Probabilistic Graphical Models. It provides a high-level interface to the part of aGrUM allowing to create, model, learn, use, calculate with and embed Bayesian Networks and other graphical models. Some specific (python and C++) codes are added in order to simplify and extend the ``aGrUM`` API.\n\nExample\n=======\n\n.. code:: python\n\n    import pyAgrum as gum\n\n    # Creating BayesNet with 4 variables\n    bn=gum.BayesNet('WaterSprinkler')\n    print(bn)\n\n    # Adding nodes the long way\n    c=bn.add(gum.LabelizedVariable('c','cloudy ?',[\"Yes\",\"No\"]))\n    print(c)\n\n    # Adding nodes the short way\n    s, r, w = [ bn.add(name, 2) for name in \"srw\" ]\n    print (s,r,w)\n    print (bn)\n\n    # Addings arcs c -> s, c -> r, s -> w, r -> w\n    bn.addArc(c,s)\n    for link in [(c,r),(s,w),(r,w)]:\n    bn.addArc(*link)\n    print(bn)\n\n    # or, equivalenlty, creating the BN with 4 variables, and the arcs in one line\n    bn=gum.fastBN(\"w<-r<-c{Yes|No}->s->w\")\n\n    # Filling CPTs\n    bn.cpt(\"c\").fillWith([0.5,0.5])\n    bn.cpt(\"s\")[0,:]=0.5 # equivalent to [0.5,0.5]\n    bn.cpt(\"s\")[{\"c\":1}]=[0.9,0.1]\n    bn.cpt(\"w\")[0,0,:] = [1, 0] # r=0,s=0\n    bn.cpt(\"w\")[0,1,:] = [0.1, 0.9] # r=0,s=1\n    bn.cpt(\"w\")[{\"r\":1,\"s\":0}] = [0.1, 0.9] # r=1,s=0\n    bn.cpt(\"w\")[1,1,:] = [0.01, 0.99] # r=1,s=1\n    bn.cpt(\"r\")[{\"c\":0}]=[0.8,0.2]\n    bn.cpt(\"r\")[{\"c\":1}]=[0.2,0.8]\n\n    # Saving BN as a BIF file\n    gum.saveBN(bn,\"WaterSprinkler.bif\")\n\n    # Loading BN from a BIF file\n    bn2=gum.loadBN(\"WaterSprinkler.bif\")\n\n    # Inference\n    ie=gum.LazyPropagation(bn)\n    ie.makeInference()\n    print (ie.posterior(\"w\"))\n\n    # Adding hard evidence\n    ie.setEvidence({\"s\": 1, \"c\": 0})\n    ie.makeInference()\n    print(ie.posterior(\"w\"))\n\n    # Adding soft and hard evidence\n    ie.setEvidence({\"s\": [0.5, 1], \"c\": 0})\n    ie.makeInference()\n    print(ie.posterior(\"w\"))\n\nLICENSE\n=======\n\nCopyright (C) 2005-2024 by Pierre-Henri WUILLEMIN et Christophe GONZALES\n{prenom.nom}_at_lip6.fr\n\nThe aGrUM/pyAgrum library and all its derivatives are distributed under the LGPL3 license, see https://www.gnu.org/licenses/lgpl-3.0.en.html.\n\nAuthors\n=======\n\n-  Pierre-Henri Wuillemin\n-  Christophe Gonzales\n\nMaintainers\n===========\n\n- Lionel Torti\n- Gaspard Ducamp\n",
    "bugtrack_url": null,
    "license": "LGPLv3",
    "summary": "Bayesian networks and other Probabilistic Graphical Models.",
    "version": "1.17.2.9.dev202502251739452835",
    "project_urls": {
        "Bug Tracker": "https://gitlab.com/agrumery/aGrUM/-/issues",
        "Documentation": "https://pyagrum.readthedocs.io/",
        "Homepage": "https://agrum.gitlab.io/",
        "Source Code": "https://gitlab.com/agrumery/aGrUM"
    },
    "split_keywords": [
        "probabilities",
        "probabilistic-graphical-models",
        "inference",
        "diagnosis"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ae9bb84925a1da169f5d7728137a3a42d51449b0036d94be4c76adc707dade4",
                "md5": "86d23a8e1e06170968cd887cceea547c",
                "sha256": "e56cd5f3c8bd3c87db2fda0f98c43a470d2c4b586cb2c8536f08682cbfe60aaa"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp310-cp310-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86d23a8e1e06170968cd887cceea547c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4674698,
            "upload_time": "2025-02-25T02:41:25",
            "upload_time_iso_8601": "2025-02-25T02:41:25.118878Z",
            "url": "https://files.pythonhosted.org/packages/9a/e9/bb84925a1da169f5d7728137a3a42d51449b0036d94be4c76adc707dade4/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp310-cp310-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29467b7eb6ba8d84dfb3015dad9f61e9794d1422a765c78939ff54dbc2b39e40",
                "md5": "1ebde8054393df77745d41054b254da7",
                "sha256": "290bef1e29ee046b840d4c9b2f56597364e0b2ffc24e0225400d2b450477ff0e"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1ebde8054393df77745d41054b254da7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4087895,
            "upload_time": "2025-02-25T02:41:31",
            "upload_time_iso_8601": "2025-02-25T02:41:31.693570Z",
            "url": "https://files.pythonhosted.org/packages/29/46/7b7eb6ba8d84dfb3015dad9f61e9794d1422a765c78939ff54dbc2b39e40/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2759cc40f7c8fd9b2635f4b4b7754aca8d48b38ed55807e2dcb1cc1fc747af8",
                "md5": "ef776bd30d93148f05eb8060929b150d",
                "sha256": "035088ef5ab6750c3c992f55cb1bd7358c9659de9e6c9108d0fce772d6dca863"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp310-cp310-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef776bd30d93148f05eb8060929b150d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5533456,
            "upload_time": "2025-02-25T02:41:34",
            "upload_time_iso_8601": "2025-02-25T02:41:34.684895Z",
            "url": "https://files.pythonhosted.org/packages/b2/75/9cc40f7c8fd9b2635f4b4b7754aca8d48b38ed55807e2dcb1cc1fc747af8/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp310-cp310-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c74918f37bccf8fd6d7a8c113dd4c721afd363bb0d0d1e18ca429669c2bd40e0",
                "md5": "1260f92df7d1108d1d5e3c9f95f39c8e",
                "sha256": "2dc97dd5fce9edf54c0b704da02929991bda0cbec1c9e5e6534a4e06e97dccf6"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp310-cp310-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1260f92df7d1108d1d5e3c9f95f39c8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5985992,
            "upload_time": "2025-02-25T02:41:36",
            "upload_time_iso_8601": "2025-02-25T02:41:36.939371Z",
            "url": "https://files.pythonhosted.org/packages/c7/49/18f37bccf8fd6d7a8c113dd4c721afd363bb0d0d1e18ca429669c2bd40e0/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp310-cp310-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ff28d432e82814bf3960cc6921dd2b8a49bcc66c35e34a1c35abd30c3234865",
                "md5": "9480a905c382627276ee7d5314b28710",
                "sha256": "9283a8d8b5175d26804c1c98a4d0bc72261ea05e383053dd2a7fb898669e9652"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9480a905c382627276ee7d5314b28710",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2769344,
            "upload_time": "2025-02-25T02:41:39",
            "upload_time_iso_8601": "2025-02-25T02:41:39.561682Z",
            "url": "https://files.pythonhosted.org/packages/1f/f2/8d432e82814bf3960cc6921dd2b8a49bcc66c35e34a1c35abd30c3234865/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e73afa07dd17552fef9695185517b577d063a9ded0a44fba6c35647360a50d6b",
                "md5": "d545d046da865f1ba41f4503e3094efb",
                "sha256": "923fe7172d4bdfda1dcf3f1ab408d01e9777421afeb229d932b1e5d1e7fff1a8"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d545d046da865f1ba41f4503e3094efb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4674699,
            "upload_time": "2025-02-25T02:41:42",
            "upload_time_iso_8601": "2025-02-25T02:41:42.470946Z",
            "url": "https://files.pythonhosted.org/packages/e7/3a/fa07dd17552fef9695185517b577d063a9ded0a44fba6c35647360a50d6b/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a571b70c22f8803e341e530c476c1c14f8acacb9a6c9727c755d8708fe595adf",
                "md5": "557a662c14d87edbee267a6b8d8de3b1",
                "sha256": "42a2aed5f765c6197e801f9fd86b0e3711358284ffd783029b4c1524425acd68"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "557a662c14d87edbee267a6b8d8de3b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4087892,
            "upload_time": "2025-02-25T02:41:44",
            "upload_time_iso_8601": "2025-02-25T02:41:44.181053Z",
            "url": "https://files.pythonhosted.org/packages/a5/71/b70c22f8803e341e530c476c1c14f8acacb9a6c9727c755d8708fe595adf/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ee25113adbbdd89a6351d7a1686650f2c8cb9bb712c5fc3b335b10d2bd0243e",
                "md5": "31573bb82da7c99f368b08d52da625ae",
                "sha256": "7457da6d8d58c118c23ebe54dadbbccc7e3f6337317c9624b86e1083b3b49dfe"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp311-cp311-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "31573bb82da7c99f368b08d52da625ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5533445,
            "upload_time": "2025-02-25T02:41:47",
            "upload_time_iso_8601": "2025-02-25T02:41:47.282239Z",
            "url": "https://files.pythonhosted.org/packages/5e/e2/5113adbbdd89a6351d7a1686650f2c8cb9bb712c5fc3b335b10d2bd0243e/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp311-cp311-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "753f1daece9c3ab65396598b184585827a8a0e2c9db300794f1a847df46cc4a5",
                "md5": "326a84687a08eb2e44a0d1a1dec22fe9",
                "sha256": "d3f7292d2600827f11296ca1f278057a6045d101605299b45f94aab3dc337ba6"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp311-cp311-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "326a84687a08eb2e44a0d1a1dec22fe9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5986060,
            "upload_time": "2025-02-25T02:41:49",
            "upload_time_iso_8601": "2025-02-25T02:41:49.287988Z",
            "url": "https://files.pythonhosted.org/packages/75/3f/1daece9c3ab65396598b184585827a8a0e2c9db300794f1a847df46cc4a5/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp311-cp311-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fe702bc30b5d1f592f0b8b519a0f42210fb7f6ff3da81e0e6a9a235e1b74301",
                "md5": "89871da78975a0cec8f8444f65c6148b",
                "sha256": "ef02620e7e9471acb8cc27c2053a2323325a6ba325e3475981d5d8ef60c7207a"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "89871da78975a0cec8f8444f65c6148b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2768402,
            "upload_time": "2025-02-25T02:41:51",
            "upload_time_iso_8601": "2025-02-25T02:41:51.161095Z",
            "url": "https://files.pythonhosted.org/packages/8f/e7/02bc30b5d1f592f0b8b519a0f42210fb7f6ff3da81e0e6a9a235e1b74301/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a64bed8b2661bd0b3f962c34840b0bc1ed3443ffc984e1eb707c3b3a258e0ba5",
                "md5": "0b9f0b09ef693183d40e3249488d3487",
                "sha256": "bcd6be91b1afd9d22ca5fe035298beb44bc09143451836ff6379acc35670d3dc"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b9f0b09ef693183d40e3249488d3487",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4682729,
            "upload_time": "2025-02-25T02:41:53",
            "upload_time_iso_8601": "2025-02-25T02:41:53.621777Z",
            "url": "https://files.pythonhosted.org/packages/a6/4b/ed8b2661bd0b3f962c34840b0bc1ed3443ffc984e1eb707c3b3a258e0ba5/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4ba923f0237e634d4b146a57eece777f52019bb6ad88ea805c92329c60f1b0e",
                "md5": "c45d5cdd5c40eb23ddee0e95908665f4",
                "sha256": "931a9e3b42283e96bd18f7c20b296a76dad248d25c658e38a85f16d1d0c66aa0"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c45d5cdd5c40eb23ddee0e95908665f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4091725,
            "upload_time": "2025-02-25T02:41:56",
            "upload_time_iso_8601": "2025-02-25T02:41:56.630002Z",
            "url": "https://files.pythonhosted.org/packages/f4/ba/923f0237e634d4b146a57eece777f52019bb6ad88ea805c92329c60f1b0e/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1988d162513048a73bd01dbe0bc860d36797e014c79d1a2b13b33924610d6e30",
                "md5": "98ae99af04d8de041bc5463c9abe7bc0",
                "sha256": "642a592cf4b60ab563f78d70b404ff7668f258ddede8cba5e9b488b7a90d2b95"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp312-cp312-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "98ae99af04d8de041bc5463c9abe7bc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5531465,
            "upload_time": "2025-02-25T02:41:58",
            "upload_time_iso_8601": "2025-02-25T02:41:58.721246Z",
            "url": "https://files.pythonhosted.org/packages/19/88/d162513048a73bd01dbe0bc860d36797e014c79d1a2b13b33924610d6e30/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp312-cp312-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fad9e9d05b434138f60376620202e5c225832c660f32b6701ffb191db8c531c7",
                "md5": "043e2b0cbc843d99f3fe65df7dad5870",
                "sha256": "32edbdcc9cbb74bffca74b7f0a8380b88095acfbd6c461a5b751dacd0294cda9"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp312-cp312-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "043e2b0cbc843d99f3fe65df7dad5870",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5985384,
            "upload_time": "2025-02-25T02:42:02",
            "upload_time_iso_8601": "2025-02-25T02:42:02.191202Z",
            "url": "https://files.pythonhosted.org/packages/fa/d9/e9d05b434138f60376620202e5c225832c660f32b6701ffb191db8c531c7/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp312-cp312-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70fddfa2edbeb344ca60b93cb19d55365cd562389ebee630d05a603cf9eb6fd3",
                "md5": "9c81cf81049f80d525370e7702c6a9b5",
                "sha256": "08ed83daea19dd2789daf8a0167dcdd14bb27d4834c103c21a50067aaee1f604"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9c81cf81049f80d525370e7702c6a9b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2771870,
            "upload_time": "2025-02-25T02:42:05",
            "upload_time_iso_8601": "2025-02-25T02:42:05.262474Z",
            "url": "https://files.pythonhosted.org/packages/70/fd/dfa2edbeb344ca60b93cb19d55365cd562389ebee630d05a603cf9eb6fd3/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7cb0e3394c330578adc9383401225e9cdd134a8dd026e61fc28f556e6cf197a",
                "md5": "e960e29a179645cf7b09ba3a707a6830",
                "sha256": "75fa4d6ebb88fc91971510dbae5f67278ce134a06124a3615a265d41b2e10969"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e960e29a179645cf7b09ba3a707a6830",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 4682404,
            "upload_time": "2025-02-25T02:42:08",
            "upload_time_iso_8601": "2025-02-25T02:42:08.516841Z",
            "url": "https://files.pythonhosted.org/packages/d7/cb/0e3394c330578adc9383401225e9cdd134a8dd026e61fc28f556e6cf197a/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd38a0fda7529d4a2b9dc67ac97dca55ac484571908ea7dae1fcd7125bf9e443",
                "md5": "709e0831486c8abbb9e4a613a3a06ffb",
                "sha256": "4aa62851dc70fde2c7328569e16e4388ea22aeb743683ff0c7d898d38fa8791d"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "709e0831486c8abbb9e4a613a3a06ffb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 4091302,
            "upload_time": "2025-02-25T02:42:10",
            "upload_time_iso_8601": "2025-02-25T02:42:10.964731Z",
            "url": "https://files.pythonhosted.org/packages/dd/38/a0fda7529d4a2b9dc67ac97dca55ac484571908ea7dae1fcd7125bf9e443/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9cd5cb6294d7dd6e751e9e027392c75bd48c8a80dc53e45ed590e2b5c4fc473",
                "md5": "91b1f4e756caefde239cc1022ca2d464",
                "sha256": "81e46a482aa382e0779b0278ec0e2844d5c9b01c5338faf99831c6e51112506d"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp313-cp313-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91b1f4e756caefde239cc1022ca2d464",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5531233,
            "upload_time": "2025-02-25T02:42:14",
            "upload_time_iso_8601": "2025-02-25T02:42:14.373183Z",
            "url": "https://files.pythonhosted.org/packages/a9/cd/5cb6294d7dd6e751e9e027392c75bd48c8a80dc53e45ed590e2b5c4fc473/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp313-cp313-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a487c47714fb71450e8d2e3f29f61bd81da67b76096816871c99f3d1caf227fb",
                "md5": "cd3832be3d3f8619a7010b07a3eb0cc7",
                "sha256": "0c0c5491b94b64f14b979e52e406fa17befdbdccc34656aae078abff2cb04caf"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp313-cp313-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd3832be3d3f8619a7010b07a3eb0cc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5985379,
            "upload_time": "2025-02-25T02:42:17",
            "upload_time_iso_8601": "2025-02-25T02:42:17.577170Z",
            "url": "https://files.pythonhosted.org/packages/a4/87/c47714fb71450e8d2e3f29f61bd81da67b76096816871c99f3d1caf227fb/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp313-cp313-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4c5a3e5c78a51b525ab0194d3e15631e0c6b0bf7fa03b527e77ab527c2fc143",
                "md5": "0ab05804adf7d0cc331fa99be3110b65",
                "sha256": "eb22888a696a4991b76a531d5e9552acb9158fbbc1a30951935475b6ce0da0b5"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0ab05804adf7d0cc331fa99be3110b65",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 2770713,
            "upload_time": "2025-02-25T02:42:19",
            "upload_time_iso_8601": "2025-02-25T02:42:19.610418Z",
            "url": "https://files.pythonhosted.org/packages/e4/c5/a3e5c78a51b525ab0194d3e15631e0c6b0bf7fa03b527e77ab527c2fc143/pyAgrum_nightly-1.17.2.9.dev202502251739452835-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-25 02:41:25",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "agrumery",
    "gitlab_project": "aGrUM",
    "lcname": "pyagrum-nightly"
}
        
Elapsed time: 0.44503s