pyAgrum-nightly


NamepyAgrum-nightly JSON
Version 1.17.2.dev202412211731932516 PyPI version JSON
download
home_pagehttps://agrum.gitlab.io/
SummaryBayesian networks and other Probabilistic Graphical Models.
upload_time2024-12-21 02:45:48
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.dev202412211731932516",
    "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": "d6d516a78b687129a77a6a446f99cf4e0383a9ad7e1259f7d1e317ce70aaaec4",
                "md5": "080d1584412db3a16fba57bface3ca16",
                "sha256": "498be837a887b9fb3df260dd6fc35e1f26b836c8e4460b6dc85ece381a3b6e88"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "080d1584412db3a16fba57bface3ca16",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4836469,
            "upload_time": "2024-12-21T02:45:48",
            "upload_time_iso_8601": "2024-12-21T02:45:48.763026Z",
            "url": "https://files.pythonhosted.org/packages/d6/d5/16a78b687129a77a6a446f99cf4e0383a9ad7e1259f7d1e317ce70aaaec4/pyAgrum_nightly-1.17.2.dev202412211731932516-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0a4f0e8390b48bc851e026e17e235c8d21399f001f09d2b36f2e61d508cad87",
                "md5": "65ae21bf350d5c74849d66151f076255",
                "sha256": "1180221c2dd5f93424e2a90a4842cd6ae921fdc44f091ebc877604ee5a9b4217"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "65ae21bf350d5c74849d66151f076255",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4319951,
            "upload_time": "2024-12-21T02:45:55",
            "upload_time_iso_8601": "2024-12-21T02:45:55.856861Z",
            "url": "https://files.pythonhosted.org/packages/b0/a4/f0e8390b48bc851e026e17e235c8d21399f001f09d2b36f2e61d508cad87/pyAgrum_nightly-1.17.2.dev202412211731932516-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1e94d5277e26a2807db6639b883ec439a719b4d1c3191117ca292f584967a10",
                "md5": "b4bda8595f40bb3336e2c264a7b273b0",
                "sha256": "de584237c0a8644809ba1078baf964f9af006e8109bc54c72b528ce4d76c1f98"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp310-cp310-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b4bda8595f40bb3336e2c264a7b273b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5533439,
            "upload_time": "2024-12-21T02:45:59",
            "upload_time_iso_8601": "2024-12-21T02:45:59.662146Z",
            "url": "https://files.pythonhosted.org/packages/d1/e9/4d5277e26a2807db6639b883ec439a719b4d1c3191117ca292f584967a10/pyAgrum_nightly-1.17.2.dev202412211731932516-cp310-cp310-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b2df9fa2baf2e0be560589131b67c42e0208867538aa65c69aa6217d19807ca",
                "md5": "a1ff1f3c6669e1b4a14f1cd5fbab0c10",
                "sha256": "16c24e5bd010860a4fef8c2e776ffed577cfd9d0afa622af6b450c737a9af842"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp310-cp310-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1ff1f3c6669e1b4a14f1cd5fbab0c10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5986077,
            "upload_time": "2024-12-21T02:46:03",
            "upload_time_iso_8601": "2024-12-21T02:46:03.690313Z",
            "url": "https://files.pythonhosted.org/packages/9b/2d/f9fa2baf2e0be560589131b67c42e0208867538aa65c69aa6217d19807ca/pyAgrum_nightly-1.17.2.dev202412211731932516-cp310-cp310-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc62f480499ec2a6b06fef14236651247dde43622697e30c053e8931233c2f48",
                "md5": "60ef162e7c3565912940e697084c9942",
                "sha256": "b35f2f757f2a55f164fedfd5fb4b036ad9a0bf199d9db3b10f73194df8f5d22f"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "60ef162e7c3565912940e697084c9942",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2767650,
            "upload_time": "2024-12-21T02:46:06",
            "upload_time_iso_8601": "2024-12-21T02:46:06.432873Z",
            "url": "https://files.pythonhosted.org/packages/bc/62/f480499ec2a6b06fef14236651247dde43622697e30c053e8931233c2f48/pyAgrum_nightly-1.17.2.dev202412211731932516-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85cadc15c60a26266cf38eb503c81aa2bd467cb4c5abab991ad5a661fc20a657",
                "md5": "caafcbd20827ba747e15df4ccc3b93af",
                "sha256": "6c3a210254d149a3f97c25e2c6e3d4e6d7197a0b4bafcca1a72d196a5244572e"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "caafcbd20827ba747e15df4ccc3b93af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4836470,
            "upload_time": "2024-12-21T02:46:10",
            "upload_time_iso_8601": "2024-12-21T02:46:10.061691Z",
            "url": "https://files.pythonhosted.org/packages/85/ca/dc15c60a26266cf38eb503c81aa2bd467cb4c5abab991ad5a661fc20a657/pyAgrum_nightly-1.17.2.dev202412211731932516-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2ae20acb6a5b16f319f2a917febe369934f77bb04767ead755395e02b9b7cb1",
                "md5": "d96ddab0ae5cbbac44a561c506cecfa9",
                "sha256": "47293bab24eaac07f84db449692cac0c459ded6fed4d7f496e45a1c62e2ce913"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d96ddab0ae5cbbac44a561c506cecfa9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4319949,
            "upload_time": "2024-12-21T02:46:14",
            "upload_time_iso_8601": "2024-12-21T02:46:14.639788Z",
            "url": "https://files.pythonhosted.org/packages/a2/ae/20acb6a5b16f319f2a917febe369934f77bb04767ead755395e02b9b7cb1/pyAgrum_nightly-1.17.2.dev202412211731932516-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11a61d4e33123e346e22e038710ec42e6930e9ffadd4352702903f8909a8f203",
                "md5": "df1e96c9829b597e36e4ab6a11358e89",
                "sha256": "2d72ba2e18f5677206473bcb42ddeb0481bebea8fe513e1786f781eacb92a701"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp311-cp311-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "df1e96c9829b597e36e4ab6a11358e89",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5533406,
            "upload_time": "2024-12-21T02:46:16",
            "upload_time_iso_8601": "2024-12-21T02:46:16.846439Z",
            "url": "https://files.pythonhosted.org/packages/11/a6/1d4e33123e346e22e038710ec42e6930e9ffadd4352702903f8909a8f203/pyAgrum_nightly-1.17.2.dev202412211731932516-cp311-cp311-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "073e2fb79c2252f03a7ecf62154a06a5a12854ce4496e4059a14a1ba7d3df263",
                "md5": "30f77dc0aa4b2ac7326e0da9d251ffa8",
                "sha256": "e8cfd2af8e92fc0543a7b9f717ad1a9f579c62df4c77a52b39f9f1ae430b31d4"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp311-cp311-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30f77dc0aa4b2ac7326e0da9d251ffa8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5986089,
            "upload_time": "2024-12-21T02:46:20",
            "upload_time_iso_8601": "2024-12-21T02:46:20.867215Z",
            "url": "https://files.pythonhosted.org/packages/07/3e/2fb79c2252f03a7ecf62154a06a5a12854ce4496e4059a14a1ba7d3df263/pyAgrum_nightly-1.17.2.dev202412211731932516-cp311-cp311-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80488f2d3a4f021dec99d6b9b965f272ed3d1ea51a70aae88101b45b5cd2c685",
                "md5": "766f7cfc799c12c04c792cbfc4adfec8",
                "sha256": "0c8a0ec69afddbc7177187e16e0d979120ce08d48bfb2ba3276a59175559d4ff"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "766f7cfc799c12c04c792cbfc4adfec8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2767704,
            "upload_time": "2024-12-21T02:46:24",
            "upload_time_iso_8601": "2024-12-21T02:46:24.435686Z",
            "url": "https://files.pythonhosted.org/packages/80/48/8f2d3a4f021dec99d6b9b965f272ed3d1ea51a70aae88101b45b5cd2c685/pyAgrum_nightly-1.17.2.dev202412211731932516-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "655c701a81578847c2e6ade137651d2704e15bfc04a417e3094c49c18acc88a4",
                "md5": "039dd0fcb500f07f7dbe46add0d0ae80",
                "sha256": "7454f02b487f82ff0575693e4b339508ad11c96c1380f2a1b9ee050dc8aaa590"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "039dd0fcb500f07f7dbe46add0d0ae80",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4843258,
            "upload_time": "2024-12-21T02:46:28",
            "upload_time_iso_8601": "2024-12-21T02:46:28.141289Z",
            "url": "https://files.pythonhosted.org/packages/65/5c/701a81578847c2e6ade137651d2704e15bfc04a417e3094c49c18acc88a4/pyAgrum_nightly-1.17.2.dev202412211731932516-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e86e42be3e22acd8cd566e5e01b55883dfe478b1708db5acd2aeb876932fe7b8",
                "md5": "5bf78587ad13629a74864bf6ecd7c626",
                "sha256": "c3331c9c11cb1df162e145e2768f53f8af6ce9fa126a500c0756ad5c6121116f"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5bf78587ad13629a74864bf6ecd7c626",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4322536,
            "upload_time": "2024-12-21T02:46:31",
            "upload_time_iso_8601": "2024-12-21T02:46:31.894703Z",
            "url": "https://files.pythonhosted.org/packages/e8/6e/42be3e22acd8cd566e5e01b55883dfe478b1708db5acd2aeb876932fe7b8/pyAgrum_nightly-1.17.2.dev202412211731932516-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a90f1b01f27c0046dabf8fdd953ffeb91ada22b724c28c637b4747194d670525",
                "md5": "1af2b7867d5a7431c315f7a1315e7e27",
                "sha256": "8c7486ce96fb8bd817abea7eeac7c9e40c53ebb42f5b088b4942e2890cc86e0c"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp312-cp312-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1af2b7867d5a7431c315f7a1315e7e27",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5531387,
            "upload_time": "2024-12-21T02:46:35",
            "upload_time_iso_8601": "2024-12-21T02:46:35.561397Z",
            "url": "https://files.pythonhosted.org/packages/a9/0f/1b01f27c0046dabf8fdd953ffeb91ada22b724c28c637b4747194d670525/pyAgrum_nightly-1.17.2.dev202412211731932516-cp312-cp312-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfb71e6446ff4b5bdd244a2c19224dc07ef870af2d9a779cf7171cc5a13f47cc",
                "md5": "47d21b957f6c69a5d3e80ceeb95f2a5b",
                "sha256": "b84cc4771568f79922f0692ae37dcd9304c8319cd62a47dcd8f89132c4b140fa"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp312-cp312-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47d21b957f6c69a5d3e80ceeb95f2a5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5985351,
            "upload_time": "2024-12-21T02:46:41",
            "upload_time_iso_8601": "2024-12-21T02:46:41.751542Z",
            "url": "https://files.pythonhosted.org/packages/df/b7/1e6446ff4b5bdd244a2c19224dc07ef870af2d9a779cf7171cc5a13f47cc/pyAgrum_nightly-1.17.2.dev202412211731932516-cp312-cp312-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5678a7a189ccb70d9a5adda31e3ad4ed87dfa9b6d51e9457245809e1e54a6f54",
                "md5": "6adee41cfbfceaa96da31bfe83355325",
                "sha256": "9c77dd51d4be27a085ab87443ae1df697ee9b98d14a086b0f3b58c488eea874d"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6adee41cfbfceaa96da31bfe83355325",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2768859,
            "upload_time": "2024-12-21T02:46:45",
            "upload_time_iso_8601": "2024-12-21T02:46:45.634557Z",
            "url": "https://files.pythonhosted.org/packages/56/78/a7a189ccb70d9a5adda31e3ad4ed87dfa9b6d51e9457245809e1e54a6f54/pyAgrum_nightly-1.17.2.dev202412211731932516-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cdb55f1d61953c9673c9a0274ce3bd83bc5a71efb51135b6bdef8b12f72f896",
                "md5": "7852f62a7657a3b8c14916be473cad2e",
                "sha256": "0fb3748ee2dbc583ed3eab84ea6180cd1031d47ca881407e84ce34a700985880"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7852f62a7657a3b8c14916be473cad2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 4843725,
            "upload_time": "2024-12-21T02:46:48",
            "upload_time_iso_8601": "2024-12-21T02:46:48.439026Z",
            "url": "https://files.pythonhosted.org/packages/3c/db/55f1d61953c9673c9a0274ce3bd83bc5a71efb51135b6bdef8b12f72f896/pyAgrum_nightly-1.17.2.dev202412211731932516-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9bf8933eee6048cde47d05ee45f16329904bd06120547d2b0687c78817a95b70",
                "md5": "af49dd1716d63e8c73c946b16d59749e",
                "sha256": "fbfb34130a2b6a38ad38ade3e40862cffa9ac56c692cc3371101f1bcf797b1d2"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "af49dd1716d63e8c73c946b16d59749e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 4322542,
            "upload_time": "2024-12-21T02:46:52",
            "upload_time_iso_8601": "2024-12-21T02:46:52.346085Z",
            "url": "https://files.pythonhosted.org/packages/9b/f8/933eee6048cde47d05ee45f16329904bd06120547d2b0687c78817a95b70/pyAgrum_nightly-1.17.2.dev202412211731932516-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9be4ccd77c55abf51bb941b246e8af4bd66b1e04bccf7c7c86cde2605f26d650",
                "md5": "dddd72ca71cd52c97d4e3ef55205cf88",
                "sha256": "6998b09a936ac85c5433a06c1729f2efa66b782c8f3de3a16003ac8f76f6bf4d"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp313-cp313-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dddd72ca71cd52c97d4e3ef55205cf88",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5531275,
            "upload_time": "2024-12-21T02:46:58",
            "upload_time_iso_8601": "2024-12-21T02:46:58.157333Z",
            "url": "https://files.pythonhosted.org/packages/9b/e4/ccd77c55abf51bb941b246e8af4bd66b1e04bccf7c7c86cde2605f26d650/pyAgrum_nightly-1.17.2.dev202412211731932516-cp313-cp313-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8bf00497bd5a60866c2b80203bcddc74dc5fe1b0f18abc76302288f8d8abc71",
                "md5": "4ff89696c62e2116b90e89e6e531f637",
                "sha256": "ae320c897f1f031b8d1456979454cd224ba8056bfd3a1a9e52379e300653b081"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp313-cp313-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ff89696c62e2116b90e89e6e531f637",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5985353,
            "upload_time": "2024-12-21T02:47:01",
            "upload_time_iso_8601": "2024-12-21T02:47:01.125633Z",
            "url": "https://files.pythonhosted.org/packages/e8/bf/00497bd5a60866c2b80203bcddc74dc5fe1b0f18abc76302288f8d8abc71/pyAgrum_nightly-1.17.2.dev202412211731932516-cp313-cp313-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b10d4dfbfe09c45e8b3336638e8295a819db8f447e10b8e527bf1e7e03a024af",
                "md5": "1f0bc2a008d4a264ef8938017683ca24",
                "sha256": "5419b7987d5b566d55bf4db23124338a948657b50a88c1796ced322d78b62282"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.17.2.dev202412211731932516-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1f0bc2a008d4a264ef8938017683ca24",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 2770548,
            "upload_time": "2024-12-21T02:47:03",
            "upload_time_iso_8601": "2024-12-21T02:47:03.749830Z",
            "url": "https://files.pythonhosted.org/packages/b1/0d/4dfbfe09c45e8b3336638e8295a819db8f447e10b8e527bf1e7e03a024af/pyAgrum_nightly-1.17.2.dev202412211731932516-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-21 02:45:48",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "agrumery",
    "gitlab_project": "aGrUM",
    "lcname": "pyagrum-nightly"
}
        
Elapsed time: 0.38956s