pymoo


Namepymoo JSON
Version 0.6.1.3 PyPI version JSON
download
home_pagehttps://pymoo.org
SummaryMulti-Objective Optimization in Python
upload_time2024-07-29 05:59:28
maintainerNone
docs_urlNone
authorJulian Blank
requires_python>=3.9
licenseApache License 2.0
keywords optimization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            

.. |python| image:: https://img.shields.io/badge/python-3.10-blue.svg
   :alt: python 3.10

.. |license| image:: https://img.shields.io/badge/license-apache-orange.svg
   :alt: license apache
   :target: https://www.apache.org/licenses/LICENSE-2.0


.. |logo| image:: https://github.com/anyoptimization/pymoo-data/blob/main/logo.png?raw=true
  :target: https://pymoo.org
  :alt: pymoo


.. |animation| image:: https://github.com/anyoptimization/pymoo-data/blob/main/animation.gif?raw=true
  :target: https://pymoo.org
  :alt: pymoo


.. _Github: https://github.com/anyoptimization/pymoo
.. _Documentation: https://www.pymoo.org/
.. _Paper: https://ieeexplore.ieee.org/document/9078759




|python| |license|


|logo|



Documentation_ / Paper_ / Installation_ / Usage_ / Citation_ / Contact_



pymoo: Multi-objective Optimization in Python
====================================================================

Our open-source framework pymoo offers state of the art single- and multi-objective algorithms and many more features
related to multi-objective optimization such as visualization and decision making.


.. _Installation:

Installation
********************************************************************************

First, make sure you have a Python 3 environment installed. We recommend miniconda3 or anaconda3.

The official release is always available at PyPi:

.. code:: bash

    pip install -U pymoo


For the current developer version:

.. code:: bash

    git clone https://github.com/anyoptimization/pymoo
    cd pymoo
    pip install .


Since for speedup, some of the modules are also available compiled, you can double-check
if the compilation worked. When executing the command, be sure not already being in the local pymoo
directory because otherwise not the in site-packages installed version will be used.

.. code:: bash

    python -c "from pymoo.util.function_loader import is_compiled;print('Compiled Extensions: ', is_compiled())"


.. _Usage:

Usage
********************************************************************************

We refer here to our documentation for all the details.
However, for instance, executing NSGA2:

.. code:: python


    from pymoo.algorithms.moo.nsga2 import NSGA2
    from pymoo.problems import get_problem
    from pymoo.optimize import minimize
    from pymoo.visualization.scatter import Scatter

    problem = get_problem("zdt1")

    algorithm = NSGA2(pop_size=100)

    res = minimize(problem,
                   algorithm,
                   ('n_gen', 200),
                   seed=1,
                   verbose=True)

    plot = Scatter()
    plot.add(problem.pareto_front(), plot_type="line", color="black", alpha=0.7)
    plot.add(res.F, color="red")
    plot.show()



A representative run of NSGA2 looks as follows:

|animation|



.. _Citation:

Citation
********************************************************************************

If you have used our framework for research purposes, you can cite our publication by:

| `J. Blank and K. Deb, pymoo: Multi-Objective Optimization in Python, in IEEE Access, vol. 8, pp. 89497-89509, 2020, doi: 10.1109/ACCESS.2020.2990567 <https://ieeexplore.ieee.org/document/9078759>`_
|
| BibTex:

::

    @ARTICLE{pymoo,
        author={J. {Blank} and K. {Deb}},
        journal={IEEE Access},
        title={pymoo: Multi-Objective Optimization in Python},
        year={2020},
        volume={8},
        number={},
        pages={89497-89509},
    }

.. _Contact:

Contact
********************************************************************************

Feel free to contact me if you have any questions:

| `Julian Blank <http://julianblank.com>`_  (blankjul [at] msu.edu)
| Michigan State University
| Computational Optimization and Innovation Laboratory (COIN)
| East Lansing, MI 48824, USA




            

Raw data

            {
    "_id": null,
    "home_page": "https://pymoo.org",
    "name": "pymoo",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "optimization",
    "author": "Julian Blank",
    "author_email": "blankjul@msu.edu",
    "download_url": "https://files.pythonhosted.org/packages/6a/24/330304a9be3e75d45698f9d7c0ad34a5e6006979e5b125601c338d1cb4cf/pymoo-0.6.1.3.tar.gz",
    "platform": "any",
    "description": "\n\n.. |python| image:: https://img.shields.io/badge/python-3.10-blue.svg\n   :alt: python 3.10\n\n.. |license| image:: https://img.shields.io/badge/license-apache-orange.svg\n   :alt: license apache\n   :target: https://www.apache.org/licenses/LICENSE-2.0\n\n\n.. |logo| image:: https://github.com/anyoptimization/pymoo-data/blob/main/logo.png?raw=true\n  :target: https://pymoo.org\n  :alt: pymoo\n\n\n.. |animation| image:: https://github.com/anyoptimization/pymoo-data/blob/main/animation.gif?raw=true\n  :target: https://pymoo.org\n  :alt: pymoo\n\n\n.. _Github: https://github.com/anyoptimization/pymoo\n.. _Documentation: https://www.pymoo.org/\n.. _Paper: https://ieeexplore.ieee.org/document/9078759\n\n\n\n\n|python| |license|\n\n\n|logo|\n\n\n\nDocumentation_ / Paper_ / Installation_ / Usage_ / Citation_ / Contact_\n\n\n\npymoo: Multi-objective Optimization in Python\n====================================================================\n\nOur open-source framework pymoo offers state of the art single- and multi-objective algorithms and many more features\nrelated to multi-objective optimization such as visualization and decision making.\n\n\n.. _Installation:\n\nInstallation\n********************************************************************************\n\nFirst, make sure you have a Python 3 environment installed. We recommend miniconda3 or anaconda3.\n\nThe official release is always available at PyPi:\n\n.. code:: bash\n\n    pip install -U pymoo\n\n\nFor the current developer version:\n\n.. code:: bash\n\n    git clone https://github.com/anyoptimization/pymoo\n    cd pymoo\n    pip install .\n\n\nSince for speedup, some of the modules are also available compiled, you can double-check\nif the compilation worked. When executing the command, be sure not already being in the local pymoo\ndirectory because otherwise not the in site-packages installed version will be used.\n\n.. code:: bash\n\n    python -c \"from pymoo.util.function_loader import is_compiled;print('Compiled Extensions: ', is_compiled())\"\n\n\n.. _Usage:\n\nUsage\n********************************************************************************\n\nWe refer here to our documentation for all the details.\nHowever, for instance, executing NSGA2:\n\n.. code:: python\n\n\n    from pymoo.algorithms.moo.nsga2 import NSGA2\n    from pymoo.problems import get_problem\n    from pymoo.optimize import minimize\n    from pymoo.visualization.scatter import Scatter\n\n    problem = get_problem(\"zdt1\")\n\n    algorithm = NSGA2(pop_size=100)\n\n    res = minimize(problem,\n                   algorithm,\n                   ('n_gen', 200),\n                   seed=1,\n                   verbose=True)\n\n    plot = Scatter()\n    plot.add(problem.pareto_front(), plot_type=\"line\", color=\"black\", alpha=0.7)\n    plot.add(res.F, color=\"red\")\n    plot.show()\n\n\n\nA representative run of NSGA2 looks as follows:\n\n|animation|\n\n\n\n.. _Citation:\n\nCitation\n********************************************************************************\n\nIf you have used our framework for research purposes, you can cite our publication by:\n\n| `J. Blank and K. Deb, pymoo: Multi-Objective Optimization in Python, in IEEE Access, vol. 8, pp. 89497-89509, 2020, doi: 10.1109/ACCESS.2020.2990567 <https://ieeexplore.ieee.org/document/9078759>`_\n|\n| BibTex:\n\n::\n\n    @ARTICLE{pymoo,\n        author={J. {Blank} and K. {Deb}},\n        journal={IEEE Access},\n        title={pymoo: Multi-Objective Optimization in Python},\n        year={2020},\n        volume={8},\n        number={},\n        pages={89497-89509},\n    }\n\n.. _Contact:\n\nContact\n********************************************************************************\n\nFeel free to contact me if you have any questions:\n\n| `Julian Blank <http://julianblank.com>`_  (blankjul [at] msu.edu)\n| Michigan State University\n| Computational Optimization and Innovation Laboratory (COIN)\n| East Lansing, MI 48824, USA\n\n\n\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Multi-Objective Optimization in Python",
    "version": "0.6.1.3",
    "project_urls": {
        "Homepage": "https://pymoo.org"
    },
    "split_keywords": [
        "optimization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75d22d3a644ca09f3c74c7e5bbf8119b7752166267f2c36cff7cd48abfe21eae",
                "md5": "dfd8ccc713e416882a69227e2d50e8b8",
                "sha256": "b50fc36aba4b863d80b275558f303e0bc7ea0e16aa207cd558f65246f527b742"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "dfd8ccc713e416882a69227e2d50e8b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1578127,
            "upload_time": "2024-07-29T05:58:54",
            "upload_time_iso_8601": "2024-07-29T05:58:54.572771Z",
            "url": "https://files.pythonhosted.org/packages/75/d2/2d3a644ca09f3c74c7e5bbf8119b7752166267f2c36cff7cd48abfe21eae/pymoo-0.6.1.3-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa7a40e569764f48e0a474180c1bc92350666a89c1010bcd07837970330dfffd",
                "md5": "61d3ef1ea56c34cb63cb3caaa05e35b9",
                "sha256": "18086aeb45e478adb601c8d6c9d7e0166007256e53617d966e63e9bb7fce7c88"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61d3ef1ea56c34cb63cb3caaa05e35b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 4176056,
            "upload_time": "2024-07-29T05:58:58",
            "upload_time_iso_8601": "2024-07-29T05:58:58.481914Z",
            "url": "https://files.pythonhosted.org/packages/aa/7a/40e569764f48e0a474180c1bc92350666a89c1010bcd07837970330dfffd/pymoo-0.6.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a4a167e7842a5e92512b29ec9fd961806bd41c98a591e8c3532a4b7dd799df3",
                "md5": "b401006f12a18534fd1c868d727740e9",
                "sha256": "f132285feb7f76ac44659685ffe130a9d8e9a9bd61edecbb7fd1c2d47a3ffa25"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b401006f12a18534fd1c868d727740e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 909997,
            "upload_time": "2024-07-29T05:59:01",
            "upload_time_iso_8601": "2024-07-29T05:59:01.021772Z",
            "url": "https://files.pythonhosted.org/packages/9a/4a/167e7842a5e92512b29ec9fd961806bd41c98a591e8c3532a4b7dd799df3/pymoo-0.6.1.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24d551808c9b220f5449379780e236813df7710fb9be53bf4089f8de0fc0c3f9",
                "md5": "489c7c1e7115b131fe016aecc17b4506",
                "sha256": "8426a8960a5be090e10fc0bbce0564041d9f2c8d016da6a8d8fdcdf1b6a369c3"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "489c7c1e7115b131fe016aecc17b4506",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1577090,
            "upload_time": "2024-07-29T05:59:03",
            "upload_time_iso_8601": "2024-07-29T05:59:03.460433Z",
            "url": "https://files.pythonhosted.org/packages/24/d5/51808c9b220f5449379780e236813df7710fb9be53bf4089f8de0fc0c3f9/pymoo-0.6.1.3-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43b8b709e68f663ef1aaf0187cfcb688de1c31e182a4f55ce90064acec451726",
                "md5": "9f3aad65b530bcfad7e8cc7a5b3d576f",
                "sha256": "959b478890416a0a9a452147110534195e28396ce43b5563c580118b267f4314"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f3aad65b530bcfad7e8cc7a5b3d576f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 4428017,
            "upload_time": "2024-07-29T05:59:07",
            "upload_time_iso_8601": "2024-07-29T05:59:07.134260Z",
            "url": "https://files.pythonhosted.org/packages/43/b8/b709e68f663ef1aaf0187cfcb688de1c31e182a4f55ce90064acec451726/pymoo-0.6.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b628b64db4ff471455e5342a24e0f009e19d75ca9d9994137466338433e11705",
                "md5": "e52f20714cef605ef86663fd6f4fb128",
                "sha256": "8385cd634c1db433a3845c8f6e99241a09470e3a1f38f9e5a4194e35b35b90e2"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e52f20714cef605ef86663fd6f4fb128",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 910367,
            "upload_time": "2024-07-29T05:59:09",
            "upload_time_iso_8601": "2024-07-29T05:59:09.525015Z",
            "url": "https://files.pythonhosted.org/packages/b6/28/b64db4ff471455e5342a24e0f009e19d75ca9d9994137466338433e11705/pymoo-0.6.1.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9a979932ce1606a7b2611a32eb75764538eec08e01e2f0785f4606700ace69c",
                "md5": "2d19830136d9e0117d2bb340987b2650",
                "sha256": "efee5682327dd7a12de2ed78e918f1e1fe1fd9cc1da86f806c432a499508b972"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2d19830136d9e0117d2bb340987b2650",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1598241,
            "upload_time": "2024-07-29T05:59:11",
            "upload_time_iso_8601": "2024-07-29T05:59:11.452883Z",
            "url": "https://files.pythonhosted.org/packages/a9/a9/79932ce1606a7b2611a32eb75764538eec08e01e2f0785f4606700ace69c/pymoo-0.6.1.3-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7595e63bf0fbddc5a3b1480a3cc97dee7b1281507e4d7831d9246dadd50adf44",
                "md5": "d36a1540f4f266c7304c9bb4b0557a7d",
                "sha256": "c3f87a65c3ca0935ee38236042bcc287aa37a2acea18831e7f6c00bcd64bb5e7"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d36a1540f4f266c7304c9bb4b0557a7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 898163,
            "upload_time": "2024-07-29T05:59:13",
            "upload_time_iso_8601": "2024-07-29T05:59:13.641904Z",
            "url": "https://files.pythonhosted.org/packages/75/95/e63bf0fbddc5a3b1480a3cc97dee7b1281507e4d7831d9246dadd50adf44/pymoo-0.6.1.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96a7e49901261ff73e1775858e3c2ef6ac96ddd4f1de8fac003365d2f8953d2d",
                "md5": "2397a77c32911cc6109d2b6c2c31af7e",
                "sha256": "3500b1edeaa3394187a602259de66f51ae6c73372e2c83629a5ff705d76024f0"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2397a77c32911cc6109d2b6c2c31af7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 914524,
            "upload_time": "2024-07-29T05:59:15",
            "upload_time_iso_8601": "2024-07-29T05:59:15.921205Z",
            "url": "https://files.pythonhosted.org/packages/96/a7/e49901261ff73e1775858e3c2ef6ac96ddd4f1de8fac003365d2f8953d2d/pymoo-0.6.1.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3561f0a257ea2704fc9edc279a5454f5d9ec063511ffec89cd20e7ac8bc9b1c6",
                "md5": "0d7ab0a95fd5c66dd6738dc99fe0a214",
                "sha256": "708d15d8faf4e413e50f0506c659affdd6d2977f18b867f5ac29e68d1caca2c3"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "0d7ab0a95fd5c66dd6738dc99fe0a214",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1586376,
            "upload_time": "2024-07-29T05:59:18",
            "upload_time_iso_8601": "2024-07-29T05:59:18.493746Z",
            "url": "https://files.pythonhosted.org/packages/35/61/f0a257ea2704fc9edc279a5454f5d9ec063511ffec89cd20e7ac8bc9b1c6/pymoo-0.6.1.3-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a35a1c71ee76522fe0c303b61dbddcd524e8a7561a5fd0fe90c4448686116f38",
                "md5": "587dba95d082f8603f9ab52e7c325d61",
                "sha256": "9a604346850d080574ae5c1944f796cb3edd67691ea06169ec9b95f57fb9fe85"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "587dba95d082f8603f9ab52e7c325d61",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 896408,
            "upload_time": "2024-07-29T05:59:20",
            "upload_time_iso_8601": "2024-07-29T05:59:20.549695Z",
            "url": "https://files.pythonhosted.org/packages/a3/5a/1c71ee76522fe0c303b61dbddcd524e8a7561a5fd0fe90c4448686116f38/pymoo-0.6.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68df6f9463f1ed8f330754cf08cdb19737ed8dfd68c5c60ca89ee0e3577a4fd8",
                "md5": "4b429c25d140f714c152ec4aae78b508",
                "sha256": "80998eebe29b7371b2aaed62449e7b02415c8f50a7a18512010cee2b059c9b9d"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b429c25d140f714c152ec4aae78b508",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 4193365,
            "upload_time": "2024-07-29T05:59:24",
            "upload_time_iso_8601": "2024-07-29T05:59:24.065905Z",
            "url": "https://files.pythonhosted.org/packages/68/df/6f9463f1ed8f330754cf08cdb19737ed8dfd68c5c60ca89ee0e3577a4fd8/pymoo-0.6.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9bff55e06a0534ebe7e47fec622a25a7257b30a09c45cf2e413ee3af58aa4c15",
                "md5": "d366dd0b7fd473c8cf36525e9617f0fb",
                "sha256": "4cbb456eb5680fe0ffd19b4e235464e7561c7b7bac9b24e5601c1fccfaa9aaad"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d366dd0b7fd473c8cf36525e9617f0fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1004182,
            "upload_time": "2024-07-29T05:59:26",
            "upload_time_iso_8601": "2024-07-29T05:59:26.402436Z",
            "url": "https://files.pythonhosted.org/packages/9b/ff/55e06a0534ebe7e47fec622a25a7257b30a09c45cf2e413ee3af58aa4c15/pymoo-0.6.1.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a24330304a9be3e75d45698f9d7c0ad34a5e6006979e5b125601c338d1cb4cf",
                "md5": "855981491ffac16ac8bcc745595a9a31",
                "sha256": "ab440986cbaede547125ca9d1545781fdee94b719488de44119a86b8e9af526e"
            },
            "downloads": -1,
            "filename": "pymoo-0.6.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "855981491ffac16ac8bcc745595a9a31",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 1285121,
            "upload_time": "2024-07-29T05:59:28",
            "upload_time_iso_8601": "2024-07-29T05:59:28.647860Z",
            "url": "https://files.pythonhosted.org/packages/6a/24/330304a9be3e75d45698f9d7c0ad34a5e6006979e5b125601c338d1cb4cf/pymoo-0.6.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-29 05:59:28",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pymoo"
}
        
Elapsed time: 0.64701s