pyAgrum-nightly


NamepyAgrum-nightly JSON
Version 1.13.1.dev202405031713370971 PyPI version JSON
download
home_pagehttps://agrum.gitlab.io/
SummaryBayesian networks and other Probabilistic Graphical Models.
upload_time2024-05-03 01:36:27
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,2023 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,2023 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.13.1.dev202405031713370971",
    "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": "7dcc244062789c9219706ecb6cc7439d0fd3eaa4c3e7e50cda27c55f858fe33b",
                "md5": "a225de29fdbe5e274fa28cb2fe056fd4",
                "sha256": "ecece86efff7bc710f2ed0b021950d9cbc48a63eca5a9369c54176e2e9666049"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a225de29fdbe5e274fa28cb2fe056fd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4722918,
            "upload_time": "2024-05-03T01:36:27",
            "upload_time_iso_8601": "2024-05-03T01:36:27.259001Z",
            "url": "https://files.pythonhosted.org/packages/7d/cc/244062789c9219706ecb6cc7439d0fd3eaa4c3e7e50cda27c55f858fe33b/pyAgrum_nightly-1.13.1.dev202405031713370971-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27210d610e16f97ee422d69f2855cde8ea66006366a1da22252502b689f6acbb",
                "md5": "c21ed2992997e5bd5963ee4bb051eeb7",
                "sha256": "2f565ec939ce805cf367cdf354d49446df0de7bfc827e9a4210b2a95f7ed50b1"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c21ed2992997e5bd5963ee4bb051eeb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4205517,
            "upload_time": "2024-05-03T01:36:33",
            "upload_time_iso_8601": "2024-05-03T01:36:33.236379Z",
            "url": "https://files.pythonhosted.org/packages/27/21/0d610e16f97ee422d69f2855cde8ea66006366a1da22252502b689f6acbb/pyAgrum_nightly-1.13.1.dev202405031713370971-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1d7e076dc34f632328e20f65c15030dbaf83b5f52ba794978829cb8c6d58be4",
                "md5": "682332a36415ab7eece4f6e57e90af43",
                "sha256": "8ad91f09cd46859c08e0b8cf65442b314bb23017de23bce9e7c0564c6e2b1bc0"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp310-cp310-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "682332a36415ab7eece4f6e57e90af43",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5421148,
            "upload_time": "2024-05-03T01:36:37",
            "upload_time_iso_8601": "2024-05-03T01:36:37.310702Z",
            "url": "https://files.pythonhosted.org/packages/c1/d7/e076dc34f632328e20f65c15030dbaf83b5f52ba794978829cb8c6d58be4/pyAgrum_nightly-1.13.1.dev202405031713370971-cp310-cp310-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3ded77206156095bf8a514313a8336d8295e8e83477c044c345927720e11bb4",
                "md5": "cc86695a909cc9177a1b2ddaae005b68",
                "sha256": "c4cb12b4075c793beedcf692da2b63676f78d06e78d973c778182210950d8c85"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp310-cp310-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc86695a909cc9177a1b2ddaae005b68",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5867065,
            "upload_time": "2024-05-03T01:36:41",
            "upload_time_iso_8601": "2024-05-03T01:36:41.913761Z",
            "url": "https://files.pythonhosted.org/packages/f3/de/d77206156095bf8a514313a8336d8295e8e83477c044c345927720e11bb4/pyAgrum_nightly-1.13.1.dev202405031713370971-cp310-cp310-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08dfbb9e750e71342d0067a5642ef90e0d664f09d6e0632f156b1973e749ef93",
                "md5": "fd3af8f45e1a97ec71590c580bb11590",
                "sha256": "cddd92d7c06502a04abf607ac786fee9153ea7d0502e629bbb9f115e15fe549c"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fd3af8f45e1a97ec71590c580bb11590",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2663274,
            "upload_time": "2024-05-03T01:36:48",
            "upload_time_iso_8601": "2024-05-03T01:36:48.113813Z",
            "url": "https://files.pythonhosted.org/packages/08/df/bb9e750e71342d0067a5642ef90e0d664f09d6e0632f156b1973e749ef93/pyAgrum_nightly-1.13.1.dev202405031713370971-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "666101ec5126d134238b04bd7b86ae0491cd6faf2041667e71b51abe650e29f9",
                "md5": "3c9d4eb82bc29602ef9741bd6541860f",
                "sha256": "983b9046cea999afc597d030c2edfab799eb77d9f86e370e322e05943798757f"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c9d4eb82bc29602ef9741bd6541860f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4722920,
            "upload_time": "2024-05-03T01:36:52",
            "upload_time_iso_8601": "2024-05-03T01:36:52.642560Z",
            "url": "https://files.pythonhosted.org/packages/66/61/01ec5126d134238b04bd7b86ae0491cd6faf2041667e71b51abe650e29f9/pyAgrum_nightly-1.13.1.dev202405031713370971-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f28fce60bc854095bf311cf6d78fcbf27e80a9a2c7f22900cba6249dbe81116",
                "md5": "9e60d910550019921524831982abbb4a",
                "sha256": "5cf5c6b8633c1d90c26e0c6eb34238a8bf45ae7976270165f41def34bca32ad9"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9e60d910550019921524831982abbb4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4205517,
            "upload_time": "2024-05-03T01:36:57",
            "upload_time_iso_8601": "2024-05-03T01:36:57.851809Z",
            "url": "https://files.pythonhosted.org/packages/2f/28/fce60bc854095bf311cf6d78fcbf27e80a9a2c7f22900cba6249dbe81116/pyAgrum_nightly-1.13.1.dev202405031713370971-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4de6a050a3165f07cfe797ec040cf56c43fbe6f363ec641e0e22ecfe74422978",
                "md5": "f787fa235bc2546c0ac88c9ffac88d14",
                "sha256": "c81a569f2216bd408d64a3efe69a24e6160f87d15efd719a57f483b50bf1a825"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp311-cp311-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f787fa235bc2546c0ac88c9ffac88d14",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5421119,
            "upload_time": "2024-05-03T01:37:02",
            "upload_time_iso_8601": "2024-05-03T01:37:02.235547Z",
            "url": "https://files.pythonhosted.org/packages/4d/e6/a050a3165f07cfe797ec040cf56c43fbe6f363ec641e0e22ecfe74422978/pyAgrum_nightly-1.13.1.dev202405031713370971-cp311-cp311-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "142e4e554992bbf6d1000d0c9767333d6fc5298960f11d46db071a42b81d151d",
                "md5": "258b69093dd7a3535e80551d4018fa4a",
                "sha256": "af56bb923e6ded0f3d4d1c125bf93c9611602a4c4f64c46bd8e1fff105270195"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp311-cp311-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "258b69093dd7a3535e80551d4018fa4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5866958,
            "upload_time": "2024-05-03T01:37:10",
            "upload_time_iso_8601": "2024-05-03T01:37:10.987259Z",
            "url": "https://files.pythonhosted.org/packages/14/2e/4e554992bbf6d1000d0c9767333d6fc5298960f11d46db071a42b81d151d/pyAgrum_nightly-1.13.1.dev202405031713370971-cp311-cp311-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92b0420600b32270b54733bfbb005fba9fbc6c3de4cae097f0d1bf7eb8266655",
                "md5": "08081d88c0ad289f916c2fe9b44c52cc",
                "sha256": "f0789bf7d8eb3bdf4e14e5336e5d340185f9e7277c627af2d7fac83587b5802c"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "08081d88c0ad289f916c2fe9b44c52cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2663692,
            "upload_time": "2024-05-03T01:37:17",
            "upload_time_iso_8601": "2024-05-03T01:37:17.665182Z",
            "url": "https://files.pythonhosted.org/packages/92/b0/420600b32270b54733bfbb005fba9fbc6c3de4cae097f0d1bf7eb8266655/pyAgrum_nightly-1.13.1.dev202405031713370971-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9437fb0ca9020a8a9e43842093a8063e570979f80201c018cec6ab88ba4ab0b7",
                "md5": "effeb698997e6441998d57f8be6d33c2",
                "sha256": "414eebbf1987465f234a3a3055ee592ebb4b3ef3c9f81d90770a6fb119c64b08"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "effeb698997e6441998d57f8be6d33c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4732196,
            "upload_time": "2024-05-03T01:37:23",
            "upload_time_iso_8601": "2024-05-03T01:37:23.985512Z",
            "url": "https://files.pythonhosted.org/packages/94/37/fb0ca9020a8a9e43842093a8063e570979f80201c018cec6ab88ba4ab0b7/pyAgrum_nightly-1.13.1.dev202405031713370971-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0832a13e8fe7fcc28e83279a6df69a0b49444a76dbfc23d3ead0f827f9741379",
                "md5": "4e34262a310920050f8f12a6fcb613d4",
                "sha256": "64437b17e8262d75f2e92fd4698736cba4f5ed2b0c9eb50761dcd27d56885dfc"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4e34262a310920050f8f12a6fcb613d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4208349,
            "upload_time": "2024-05-03T01:37:29",
            "upload_time_iso_8601": "2024-05-03T01:37:29.055524Z",
            "url": "https://files.pythonhosted.org/packages/08/32/a13e8fe7fcc28e83279a6df69a0b49444a76dbfc23d3ead0f827f9741379/pyAgrum_nightly-1.13.1.dev202405031713370971-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "146ba309bdd3e3beaf54fae8461b167a52152397003ded7f3bd629cab1778054",
                "md5": "001dd38a1d522a89c3b8ee24436423cc",
                "sha256": "d2bb01d11bbacb15441d1ba2471878a4144c8ce9f5f4934b1ec375481508bfaa"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp312-cp312-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "001dd38a1d522a89c3b8ee24436423cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5420606,
            "upload_time": "2024-05-03T01:37:35",
            "upload_time_iso_8601": "2024-05-03T01:37:35.311635Z",
            "url": "https://files.pythonhosted.org/packages/14/6b/a309bdd3e3beaf54fae8461b167a52152397003ded7f3bd629cab1778054/pyAgrum_nightly-1.13.1.dev202405031713370971-cp312-cp312-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "714c3135cb4d060a56b3e842d36e0ecb48258fe2dcadd4de17dfb804899ef76a",
                "md5": "aa4174f21f6cbeb181b2ffc89cd90a76",
                "sha256": "05a301b6427c17fb9744956266bf0886eacc5d03788405798a008de0156b7652"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp312-cp312-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa4174f21f6cbeb181b2ffc89cd90a76",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5867788,
            "upload_time": "2024-05-03T01:37:42",
            "upload_time_iso_8601": "2024-05-03T01:37:42.916462Z",
            "url": "https://files.pythonhosted.org/packages/71/4c/3135cb4d060a56b3e842d36e0ecb48258fe2dcadd4de17dfb804899ef76a/pyAgrum_nightly-1.13.1.dev202405031713370971-cp312-cp312-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "089a39147f771a33575e7dd428fb24dbe1b4509aa493ce3555c8c19bc4e20612",
                "md5": "731dd39a5eb417cb2a07971192ffe8dc",
                "sha256": "ae231126da87e972c5cd71a66c0998407dc067ecde44340fef32a44bdd89041c"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "731dd39a5eb417cb2a07971192ffe8dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2663516,
            "upload_time": "2024-05-03T01:37:50",
            "upload_time_iso_8601": "2024-05-03T01:37:50.858116Z",
            "url": "https://files.pythonhosted.org/packages/08/9a/39147f771a33575e7dd428fb24dbe1b4509aa493ce3555c8c19bc4e20612/pyAgrum_nightly-1.13.1.dev202405031713370971-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c0ea736e08fca233bb21907c91a2b321095fd0125f5fcc986ebe82fb759456b",
                "md5": "f56aac35587eae41c43eaaaae1df5060",
                "sha256": "3bf1e6c2d535790e4bcf4717e4a1e844f1eac2b09a5f188611681dc57e29f16a"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f56aac35587eae41c43eaaaae1df5060",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4721698,
            "upload_time": "2024-05-03T01:37:57",
            "upload_time_iso_8601": "2024-05-03T01:37:57.053110Z",
            "url": "https://files.pythonhosted.org/packages/3c/0e/a736e08fca233bb21907c91a2b321095fd0125f5fcc986ebe82fb759456b/pyAgrum_nightly-1.13.1.dev202405031713370971-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb03a12c86f05517f17eb1c456ff51697de9a9c6e0cd9dd520b698a4efff1656",
                "md5": "ffff6365427d14349ea0d3dc049ee668",
                "sha256": "32d804d98af3409327df099656f78e2dd0781f3ba33dcfc53ce4afadea7b23d3"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ffff6365427d14349ea0d3dc049ee668",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4204899,
            "upload_time": "2024-05-03T01:38:03",
            "upload_time_iso_8601": "2024-05-03T01:38:03.007231Z",
            "url": "https://files.pythonhosted.org/packages/bb/03/a12c86f05517f17eb1c456ff51697de9a9c6e0cd9dd520b698a4efff1656/pyAgrum_nightly-1.13.1.dev202405031713370971-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46fc488f0191f84bebab2ff9aa6be4bea955ee2751f292b805b8df56438b602d",
                "md5": "ba27a04c404f4ad70ee933aa2e2b964b",
                "sha256": "eef9db6bc9d25b86b76c27733d8fee71966b7d62d9218e3587f37de8eafe06ad"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp38-cp38-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ba27a04c404f4ad70ee933aa2e2b964b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5420830,
            "upload_time": "2024-05-03T01:38:08",
            "upload_time_iso_8601": "2024-05-03T01:38:08.843833Z",
            "url": "https://files.pythonhosted.org/packages/46/fc/488f0191f84bebab2ff9aa6be4bea955ee2751f292b805b8df56438b602d/pyAgrum_nightly-1.13.1.dev202405031713370971-cp38-cp38-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25adf1b2da22128a35c008878b3a1f280e3eb0d59e55eafd5ddb786a328b4f3e",
                "md5": "3b088a14c7d0d85536c14d2f1ff084e3",
                "sha256": "739f5d5012f0bc6f592843a2d640c993745aa7dc99c533a55c3cae4b984a27d1"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp38-cp38-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b088a14c7d0d85536c14d2f1ff084e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5866303,
            "upload_time": "2024-05-03T01:38:13",
            "upload_time_iso_8601": "2024-05-03T01:38:13.841507Z",
            "url": "https://files.pythonhosted.org/packages/25/ad/f1b2da22128a35c008878b3a1f280e3eb0d59e55eafd5ddb786a328b4f3e/pyAgrum_nightly-1.13.1.dev202405031713370971-cp38-cp38-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d245d43cdbff1e85ced9db3db91f1ddb732696318348df610291b5baea8a4224",
                "md5": "0007f4ff218312b0209d9175f73ffb32",
                "sha256": "bad07474230cdc5cb103bee43f84cd85a8cccec99b794774bbb269db12bc0d61"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0007f4ff218312b0209d9175f73ffb32",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2662503,
            "upload_time": "2024-05-03T01:38:18",
            "upload_time_iso_8601": "2024-05-03T01:38:18.754191Z",
            "url": "https://files.pythonhosted.org/packages/d2/45/d43cdbff1e85ced9db3db91f1ddb732696318348df610291b5baea8a4224/pyAgrum_nightly-1.13.1.dev202405031713370971-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5618f377dcb7dd27641e13913b97cd3a4fe13cdc03344da623a135ea1a36e6a9",
                "md5": "485918f13cd604f72e888b7e8f65a482",
                "sha256": "77b677374b3a76a078e1ca3c1cf427b39c2e08aafefe3088b587016f64be5126"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "485918f13cd604f72e888b7e8f65a482",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4722919,
            "upload_time": "2024-05-03T01:38:22",
            "upload_time_iso_8601": "2024-05-03T01:38:22.816592Z",
            "url": "https://files.pythonhosted.org/packages/56/18/f377dcb7dd27641e13913b97cd3a4fe13cdc03344da623a135ea1a36e6a9/pyAgrum_nightly-1.13.1.dev202405031713370971-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b97487c528efda930e6511745a5cb3b1392d3cb9dc4c2379fed49207deb8b3a",
                "md5": "15b1d4ac8c7d70754575233222f08993",
                "sha256": "6ae444ce68ed40dc30e6f44143ec70350f6a658173350feea1e4395191ca7b8b"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "15b1d4ac8c7d70754575233222f08993",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4205516,
            "upload_time": "2024-05-03T01:38:28",
            "upload_time_iso_8601": "2024-05-03T01:38:28.673139Z",
            "url": "https://files.pythonhosted.org/packages/8b/97/487c528efda930e6511745a5cb3b1392d3cb9dc4c2379fed49207deb8b3a/pyAgrum_nightly-1.13.1.dev202405031713370971-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7bc55f713a57db99142644466633cd27c8f889e4f53af732b5384a27b643bce",
                "md5": "47b25964ae212aa66ea37bc69d35edce",
                "sha256": "dd73093c3831c31ed8fed2f1568368c4a266844d909d45ce615b066b56c1b496"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp39-cp39-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "47b25964ae212aa66ea37bc69d35edce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5421226,
            "upload_time": "2024-05-03T01:38:33",
            "upload_time_iso_8601": "2024-05-03T01:38:33.243981Z",
            "url": "https://files.pythonhosted.org/packages/a7/bc/55f713a57db99142644466633cd27c8f889e4f53af732b5384a27b643bce/pyAgrum_nightly-1.13.1.dev202405031713370971-cp39-cp39-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7f34d60a5c9fbe41f6b25e4b66ea688aa7c7f11a4a663189f994738d57cc5ac",
                "md5": "0541687a6a4622674e62ac611d68cf18",
                "sha256": "724d1bf2d63e2882065eac07cf695f1a09c0f82bb7de86230cdf8b6a98bc4788"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp39-cp39-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0541687a6a4622674e62ac611d68cf18",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5866828,
            "upload_time": "2024-05-03T01:38:38",
            "upload_time_iso_8601": "2024-05-03T01:38:38.783396Z",
            "url": "https://files.pythonhosted.org/packages/c7/f3/4d60a5c9fbe41f6b25e4b66ea688aa7c7f11a4a663189f994738d57cc5ac/pyAgrum_nightly-1.13.1.dev202405031713370971-cp39-cp39-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "149ead41def4c8a1118d8d5e8f73484c9f234e7f6ce2d3d40db595ed374e2e92",
                "md5": "596e67cd4debce783deedb7754da5303",
                "sha256": "3f9d15cd0fc96436a990643fbdca1adae1774d3297d0d7335ceae713b6a9ba27"
            },
            "downloads": -1,
            "filename": "pyAgrum_nightly-1.13.1.dev202405031713370971-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "596e67cd4debce783deedb7754da5303",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2663084,
            "upload_time": "2024-05-03T01:38:44",
            "upload_time_iso_8601": "2024-05-03T01:38:44.793788Z",
            "url": "https://files.pythonhosted.org/packages/14/9e/ad41def4c8a1118d8d5e8f73484c9f234e7f6ce2d3d40db595ed374e2e92/pyAgrum_nightly-1.13.1.dev202405031713370971-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-03 01:36:27",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "agrumery",
    "gitlab_project": "aGrUM",
    "lcname": "pyagrum-nightly"
}
        
Elapsed time: 0.26796s