argmin-testfunctions-py


Nameargmin-testfunctions-py JSON
Version 0.0.1 PyPI version JSON
download
home_pagehttp://argmin-rs.org
SummaryTest functions for optimization algorithms
upload_time2024-02-16 16:17:43
maintainerNone
docs_urlNone
authorStefan Kroboth <stefan.kroboth@gmail.com>
requires_python>=3.8
licenseMIT OR Apache-2.0
keywords test function optimization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <img
    width="400"
    src="https://raw.githubusercontent.com/argmin-rs/argmin/main/media/logo.png"
  />
</p>
<h1 align="center">argmin-testfunctions-py</h1>

<p align="center">
  <a href="https://argmin-rs.org">Website</a>
  |
  <a href="https://argmin-rs.org/book/">Book</a>
  |
  <a href="https://docs.rs/argmin_testfunctions">Docs (latest release)</a>
  |
  <a href="https://argmin-rs.github.io/argmin/argmin_testfunctions/index.html">Docs (main branch)</a>
</p>

<p align="center">
  <a href="https://pypi.org/project/argmin-testfunctions-py/">
    <img alt="PyPI" src="https://img.shields.io/pypi/v/argmin-testfunctions-py?style=flat-square">
  </a>
  <a href="https://github.com/argmin-rs/argmin/actions"
    ><img
      src="https://img.shields.io/github/actions/workflow/status/argmin-rs/argmin/python.yml?branch=main&label=argmin CI&style=flat-square"
      alt="GitHub Actions workflow status"
  /></a>
  <img
    src="https://img.shields.io/crates/l/argmin?style=flat-square"
    alt="License"
  />
  <a href="https://discord.gg/fYB8AwxxMW"
    ><img
      src="https://img.shields.io/discord/1189119565335109683?style=flat-square&label=argmin%20Discord"
      alt="argmin Discord"
  /></a>
</p>

This Python module makes the test functions of the `argmin_testfunctions` Rust crate available in Python. 
For each test function the derivative and Hessian are available as well. 
While most functions are two-dimensional, some allow an arbitrary number of parameters.
For some functions additional optional parameters are accessible, which can be used to modify the shape of the test function.
For details on the individual test functions please consult the docs of the Rust library, either for the
[latest release](https://docs.rs/argmin_testfunctions) or the
[current main branch](https://argmin-rs.github.io/argmin/argmin_testfunctions/index.html).

## Examples

```python
from argmin_testfunctions_py import *

# Ackley (arbitrary number of parameters)
c = ackley([0.1, 0.2, 0.3, 0.4])
g = ackley_derivative([0.1, 0.2, 0.3, 0.4])
h = ackley_hessian([0.1, 0.2, 0.3, 0.4])

# Ackley with custom (optional) parameters a, b, and c.
c = ackley([0.1, 0.2, 0.3, 0.4], a = 10.0, b = 0.3, c = 3.14)
g = ackley_derivative([0.1, 0.2, 0.3, 0.4], a = 10.0, b = 0.3, c = 3.14)
h = ackley_hessian([0.1, 0.2, 0.3, 0.4], a = 10.0, b = 0.3, c = 3.14)

# Beale
c = beale([0.1, 0.2])
g = beale_derivative([0.1, 0.2])
h = beale_hessian([0.1, 0.2])

# Booth
c = booth([0.1, 0.2])
g = booth_derivative([0.1, 0.2])
h = booth_hessian([0.1, 0.2])

# Bukin No. 6
c = bukin_n6([0.1, 0.2])
g = bukin_n6_derivative([0.1, 0.2])
h = bukin_n6_hessian([0.1, 0.2])

# Cross-in-tray
c = cross_in_tray([0.1, 0.2])
g = cross_in_tray_derivative([0.1, 0.2])
h = cross_in_tray_hessian([0.1, 0.2])

# Easom
c = easom([0.1, 0.2])
g = easom_derivative([0.1, 0.2])
h = easom_hessian([0.1, 0.2])

# Eggholder
c = eggholder([0.1, 0.2])
g = eggholder_derivative([0.1, 0.2])
h = eggholder_hessian([0.1, 0.2])

# Goldstein-Price
c = goldsteinprice([0.1, 0.2])
g = goldsteinprice_derivative([0.1, 0.2])
h = goldsteinprice_hessian([0.1, 0.2])

# Himmelblau
c = himmelblau([0.1, 0.2])
g = himmelblau_derivative([0.1, 0.2])
h = himmelblau_hessian([0.1, 0.2])

# Holder-Table
c = holder_table([0.1, 0.2])
g = holder_table_derivative([0.1, 0.2])
h = holder_table_hessian([0.1, 0.2])

# Levy (arbitrary number of parameters)
c = levy([0.1, 0.2, 0.3, 0.4])
g = levy_derivative([0.1, 0.2, 0.3, 0.4])
h = levy_hessian([0.1, 0.2, 0.3, 0.4])

# Levy No. 13
c = levy_n13([0.1, 0.2])
g = levy_n13_derivative([0.1, 0.2])
h = levy_n13_hessian([0.1, 0.2])

# Matyas
c = matyas([0.1, 0.2])
g = matyas_derivative([0.1, 0.2])
h = matyas_hessian([0.1, 0.2])

# McCorminck
c = mccorminck([0.1, 0.2])
g = mccorminck_derivative([0.1, 0.2])
h = mccorminck_hessian([0.1, 0.2])

# Picheny
c = picheny([0.1, 0.2])
g = picheny_derivative([0.1, 0.2])
h = picheny_hessian([0.1, 0.2])

# Rastrigin (with arbitrary number of parameters)
c = rastrigin([0.1, 0.2, 0.3, 0.4])
g = rastrigin_derivative([0.1, 0.2, 0.3, 0.4])
h = rastrigin_hessian([0.1, 0.2, 0.3, 0.4])

# Rastrigin with custom (optional) parameter a.
c = rastrigin([0.1, 0.2, 0.3, 0.4], a = 5.0)
g = rastrigin_derivative([0.1, 0.2, 0.3, 0.4], a = 5.0)
h = rastrigin_hessian([0.1, 0.2, 0.3, 0.4], a = 5.0)

# Rosenbrock (with arbitrary number of parameters)
c = rosenbrock([0.1, 0.2, 0.3, 0.4])
g = rosenbrock_derivative([0.1, 0.2, 0.3, 0.4])
h = rosenbrock_hessian([0.1, 0.2, 0.3, 0.4])

# Rosenbrock with custom (optional) parameters a and b.
c = rosenbrock([0.1, 0.2, 0.3, 0.4], a = 5.0, b = 200.0)
g = rosenbrock_derivative([0.1, 0.2, 0.3, 0.4], a = 5.0, b = 200.0)
h = rosenbrock_hessian([0.1, 0.2, 0.3, 0.4], a = 5.0, b = 200.0)

# Schaffer No. 2
c = schaffer_n2([0.1, 0.2])
g = schaffer_n2_derivative([0.1, 0.2])
h = schaffer_n2_hessian([0.1, 0.2])

# Schaffer No. 4
c = schaffer_n4([0.1, 0.2])
g = schaffer_n4_derivative([0.1, 0.2])
h = schaffer_n4_hessian([0.1, 0.2])

# Sphere (with arbitrary number of parameters)
c = sphere([0.1, 0.2, 0.3, 0.4])
g = sphere_derivative([0.1, 0.2, 0.3, 0.4])
h = sphere_hessian([0.1, 0.2, 0.3, 0.4])

# Styblinski-Tang
c = styblinski_tang([0.1, 0.2])
g = styblinski_tang_derivative([0.1, 0.2])
h = styblinski_tang_hessian([0.1, 0.2])

# Three-hump-camel
c = threehumpcamel([0.1, 0.2])
g = threehumpcamel_derivative([0.1, 0.2])
h = threehumpcamel_hessian([0.1, 0.2])
```


## License

Licensed under either of

 - Apache License, Version 2.0, ([LICENSE-APACHE](https://github.com/argmin-rs/argmin/blob/main/LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
 - MIT License ([LICENSE-MIT](https://github.com/argmin-rs/argmin/blob/main/LICENSE-MIT) or <http://opensource.org/licenses/MIT>)

at your option.


### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


            

Raw data

            {
    "_id": null,
    "home_page": "http://argmin-rs.org",
    "name": "argmin-testfunctions-py",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "test,function,optimization",
    "author": "Stefan Kroboth <stefan.kroboth@gmail.com>",
    "author_email": "Stefan Kroboth <stefan.kroboth@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/7b/34/cfc3b19b4522e0485781042cf245f1e5d7ed9ae01c4c8758b6db5f1644eb/argmin_testfunctions_py-0.0.1.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <img\n    width=\"400\"\n    src=\"https://raw.githubusercontent.com/argmin-rs/argmin/main/media/logo.png\"\n  />\n</p>\n<h1 align=\"center\">argmin-testfunctions-py</h1>\n\n<p align=\"center\">\n  <a href=\"https://argmin-rs.org\">Website</a>\n  |\n  <a href=\"https://argmin-rs.org/book/\">Book</a>\n  |\n  <a href=\"https://docs.rs/argmin_testfunctions\">Docs (latest release)</a>\n  |\n  <a href=\"https://argmin-rs.github.io/argmin/argmin_testfunctions/index.html\">Docs (main branch)</a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://pypi.org/project/argmin-testfunctions-py/\">\n    <img alt=\"PyPI\" src=\"https://img.shields.io/pypi/v/argmin-testfunctions-py?style=flat-square\">\n  </a>\n  <a href=\"https://github.com/argmin-rs/argmin/actions\"\n    ><img\n      src=\"https://img.shields.io/github/actions/workflow/status/argmin-rs/argmin/python.yml?branch=main&label=argmin CI&style=flat-square\"\n      alt=\"GitHub Actions workflow status\"\n  /></a>\n  <img\n    src=\"https://img.shields.io/crates/l/argmin?style=flat-square\"\n    alt=\"License\"\n  />\n  <a href=\"https://discord.gg/fYB8AwxxMW\"\n    ><img\n      src=\"https://img.shields.io/discord/1189119565335109683?style=flat-square&label=argmin%20Discord\"\n      alt=\"argmin Discord\"\n  /></a>\n</p>\n\nThis Python module makes the test functions of the `argmin_testfunctions` Rust crate available in Python. \nFor each test function the derivative and Hessian are available as well. \nWhile most functions are two-dimensional, some allow an arbitrary number of parameters.\nFor some functions additional optional parameters are accessible, which can be used to modify the shape of the test function.\nFor details on the individual test functions please consult the docs of the Rust library, either for the\n[latest release](https://docs.rs/argmin_testfunctions) or the\n[current main branch](https://argmin-rs.github.io/argmin/argmin_testfunctions/index.html).\n\n## Examples\n\n```python\nfrom argmin_testfunctions_py import *\n\n# Ackley (arbitrary number of parameters)\nc = ackley([0.1, 0.2, 0.3, 0.4])\ng = ackley_derivative([0.1, 0.2, 0.3, 0.4])\nh = ackley_hessian([0.1, 0.2, 0.3, 0.4])\n\n# Ackley with custom (optional) parameters a, b, and c.\nc = ackley([0.1, 0.2, 0.3, 0.4], a = 10.0, b = 0.3, c = 3.14)\ng = ackley_derivative([0.1, 0.2, 0.3, 0.4], a = 10.0, b = 0.3, c = 3.14)\nh = ackley_hessian([0.1, 0.2, 0.3, 0.4], a = 10.0, b = 0.3, c = 3.14)\n\n# Beale\nc = beale([0.1, 0.2])\ng = beale_derivative([0.1, 0.2])\nh = beale_hessian([0.1, 0.2])\n\n# Booth\nc = booth([0.1, 0.2])\ng = booth_derivative([0.1, 0.2])\nh = booth_hessian([0.1, 0.2])\n\n# Bukin No. 6\nc = bukin_n6([0.1, 0.2])\ng = bukin_n6_derivative([0.1, 0.2])\nh = bukin_n6_hessian([0.1, 0.2])\n\n# Cross-in-tray\nc = cross_in_tray([0.1, 0.2])\ng = cross_in_tray_derivative([0.1, 0.2])\nh = cross_in_tray_hessian([0.1, 0.2])\n\n# Easom\nc = easom([0.1, 0.2])\ng = easom_derivative([0.1, 0.2])\nh = easom_hessian([0.1, 0.2])\n\n# Eggholder\nc = eggholder([0.1, 0.2])\ng = eggholder_derivative([0.1, 0.2])\nh = eggholder_hessian([0.1, 0.2])\n\n# Goldstein-Price\nc = goldsteinprice([0.1, 0.2])\ng = goldsteinprice_derivative([0.1, 0.2])\nh = goldsteinprice_hessian([0.1, 0.2])\n\n# Himmelblau\nc = himmelblau([0.1, 0.2])\ng = himmelblau_derivative([0.1, 0.2])\nh = himmelblau_hessian([0.1, 0.2])\n\n# Holder-Table\nc = holder_table([0.1, 0.2])\ng = holder_table_derivative([0.1, 0.2])\nh = holder_table_hessian([0.1, 0.2])\n\n# Levy (arbitrary number of parameters)\nc = levy([0.1, 0.2, 0.3, 0.4])\ng = levy_derivative([0.1, 0.2, 0.3, 0.4])\nh = levy_hessian([0.1, 0.2, 0.3, 0.4])\n\n# Levy No. 13\nc = levy_n13([0.1, 0.2])\ng = levy_n13_derivative([0.1, 0.2])\nh = levy_n13_hessian([0.1, 0.2])\n\n# Matyas\nc = matyas([0.1, 0.2])\ng = matyas_derivative([0.1, 0.2])\nh = matyas_hessian([0.1, 0.2])\n\n# McCorminck\nc = mccorminck([0.1, 0.2])\ng = mccorminck_derivative([0.1, 0.2])\nh = mccorminck_hessian([0.1, 0.2])\n\n# Picheny\nc = picheny([0.1, 0.2])\ng = picheny_derivative([0.1, 0.2])\nh = picheny_hessian([0.1, 0.2])\n\n# Rastrigin (with arbitrary number of parameters)\nc = rastrigin([0.1, 0.2, 0.3, 0.4])\ng = rastrigin_derivative([0.1, 0.2, 0.3, 0.4])\nh = rastrigin_hessian([0.1, 0.2, 0.3, 0.4])\n\n# Rastrigin with custom (optional) parameter a.\nc = rastrigin([0.1, 0.2, 0.3, 0.4], a = 5.0)\ng = rastrigin_derivative([0.1, 0.2, 0.3, 0.4], a = 5.0)\nh = rastrigin_hessian([0.1, 0.2, 0.3, 0.4], a = 5.0)\n\n# Rosenbrock (with arbitrary number of parameters)\nc = rosenbrock([0.1, 0.2, 0.3, 0.4])\ng = rosenbrock_derivative([0.1, 0.2, 0.3, 0.4])\nh = rosenbrock_hessian([0.1, 0.2, 0.3, 0.4])\n\n# Rosenbrock with custom (optional) parameters a and b.\nc = rosenbrock([0.1, 0.2, 0.3, 0.4], a = 5.0, b = 200.0)\ng = rosenbrock_derivative([0.1, 0.2, 0.3, 0.4], a = 5.0, b = 200.0)\nh = rosenbrock_hessian([0.1, 0.2, 0.3, 0.4], a = 5.0, b = 200.0)\n\n# Schaffer No. 2\nc = schaffer_n2([0.1, 0.2])\ng = schaffer_n2_derivative([0.1, 0.2])\nh = schaffer_n2_hessian([0.1, 0.2])\n\n# Schaffer No. 4\nc = schaffer_n4([0.1, 0.2])\ng = schaffer_n4_derivative([0.1, 0.2])\nh = schaffer_n4_hessian([0.1, 0.2])\n\n# Sphere (with arbitrary number of parameters)\nc = sphere([0.1, 0.2, 0.3, 0.4])\ng = sphere_derivative([0.1, 0.2, 0.3, 0.4])\nh = sphere_hessian([0.1, 0.2, 0.3, 0.4])\n\n# Styblinski-Tang\nc = styblinski_tang([0.1, 0.2])\ng = styblinski_tang_derivative([0.1, 0.2])\nh = styblinski_tang_hessian([0.1, 0.2])\n\n# Three-hump-camel\nc = threehumpcamel([0.1, 0.2])\ng = threehumpcamel_derivative([0.1, 0.2])\nh = threehumpcamel_hessian([0.1, 0.2])\n```\n\n\n## License\n\nLicensed under either of\n\n - Apache License, Version 2.0, ([LICENSE-APACHE](https://github.com/argmin-rs/argmin/blob/main/LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)\n - MIT License ([LICENSE-MIT](https://github.com/argmin-rs/argmin/blob/main/LICENSE-MIT) or <http://opensource.org/licenses/MIT>)\n\nat your option.\n\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n\n",
    "bugtrack_url": null,
    "license": "MIT OR Apache-2.0",
    "summary": "Test functions for optimization algorithms",
    "version": "0.0.1",
    "project_urls": {
        "Homepage": "http://argmin-rs.org",
        "Source Code": "https://github.com/argmin-rs/argmin"
    },
    "split_keywords": [
        "test",
        "function",
        "optimization"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b82c675b50bb0a07706eba1d41a67cc2087eff0237c0f98f49fa44abe7b7017e",
                "md5": "583129499b1452db6c9f081ea14d08a6",
                "sha256": "b9bdf9c46d3df592027480948c82cc21c5d34c574cff7c94fcb306a828818cc8"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "583129499b1452db6c9f081ea14d08a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 283264,
            "upload_time": "2024-02-16T16:15:55",
            "upload_time_iso_8601": "2024-02-16T16:15:55.117018Z",
            "url": "https://files.pythonhosted.org/packages/b8/2c/675b50bb0a07706eba1d41a67cc2087eff0237c0f98f49fa44abe7b7017e/argmin_testfunctions_py-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52ba809079edc17b601cca5de6a9a4f5683ef8bb4b3a6c389a7d849051d05f46",
                "md5": "8c98f7dbbdfe066993e699a033e3b9b6",
                "sha256": "ed0859e7a31233a2b4e90477a2281578dbe13731b4eb50a394ed2464d9f2cc51"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8c98f7dbbdfe066993e699a033e3b9b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 261070,
            "upload_time": "2024-02-16T16:15:57",
            "upload_time_iso_8601": "2024-02-16T16:15:57.893320Z",
            "url": "https://files.pythonhosted.org/packages/52/ba/809079edc17b601cca5de6a9a4f5683ef8bb4b3a6c389a7d849051d05f46/argmin_testfunctions_py-0.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3c7ef4996e3b6378d9b587d4421240fcf6c68948c546478dc2c37301d79a2c8",
                "md5": "25793e0eb2f131dba95dc281e374c52d",
                "sha256": "041ecc0e9e57fda9e52420748c9aa9d05ffdcd066eacc70c365f8594caeb3357"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "25793e0eb2f131dba95dc281e374c52d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1025092,
            "upload_time": "2024-02-16T16:15:59",
            "upload_time_iso_8601": "2024-02-16T16:15:59.667607Z",
            "url": "https://files.pythonhosted.org/packages/e3/c7/ef4996e3b6378d9b587d4421240fcf6c68948c546478dc2c37301d79a2c8/argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "18786811a2fb2a51268529760870505682e2c9c756d1fa0fbe35dc80089d4aa6",
                "md5": "aa869de4439a5df13d6adeaa258d674b",
                "sha256": "9278266456169ef0494015e7b17c802f64f6cb318575dc3caf27d3a635a9ae3e"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "aa869de4439a5df13d6adeaa258d674b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1039181,
            "upload_time": "2024-02-16T16:16:01",
            "upload_time_iso_8601": "2024-02-16T16:16:01.541287Z",
            "url": "https://files.pythonhosted.org/packages/18/78/6811a2fb2a51268529760870505682e2c9c756d1fa0fbe35dc80089d4aa6/argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d35ab86ae1255e0fe72ac165bd85d760ea6b53e391cdeb7268f2b6854e13aafb",
                "md5": "6bc1ece03f594290e59bc39b7a5506c6",
                "sha256": "4d51f33e29179ceeb710d063737adbfdf76cc61c000b3d321f522a90fd915e7f"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6bc1ece03f594290e59bc39b7a5506c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1139490,
            "upload_time": "2024-02-16T16:16:02",
            "upload_time_iso_8601": "2024-02-16T16:16:02.847784Z",
            "url": "https://files.pythonhosted.org/packages/d3/5a/b86ae1255e0fe72ac165bd85d760ea6b53e391cdeb7268f2b6854e13aafb/argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be61b06be45e7f84562be63824d4cdc6350cf44fb3576a6932131f0903a4f9ca",
                "md5": "3683bd4ecf6779f930f1a31d58ad1067",
                "sha256": "bbbcef15cdcc5d14691988dd5a237d4d916eee961fff85f64587f6b83352ce8d"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3683bd4ecf6779f930f1a31d58ad1067",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1173762,
            "upload_time": "2024-02-16T16:16:04",
            "upload_time_iso_8601": "2024-02-16T16:16:04.179065Z",
            "url": "https://files.pythonhosted.org/packages/be/61/b06be45e7f84562be63824d4cdc6350cf44fb3576a6932131f0903a4f9ca/argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a7ec27c0bcd2832fa4382f524f5f633ea55b28bbbd1fc639b9891345da88fa2",
                "md5": "1ca663f78b0533c90bf7cd4043275e26",
                "sha256": "b796f5e77e8bf9363403ce0545056d2039a59720737e19bb15d591275bb060c4"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ca663f78b0533c90bf7cd4043275e26",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1032346,
            "upload_time": "2024-02-16T16:16:05",
            "upload_time_iso_8601": "2024-02-16T16:16:05.872855Z",
            "url": "https://files.pythonhosted.org/packages/4a/7e/c27c0bcd2832fa4382f524f5f633ea55b28bbbd1fc639b9891345da88fa2/argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d28370cfa91633cef1f41a7fd6c166506cb842d456651a63bc36cd39a22a5280",
                "md5": "befa6a5c3d0f569cc444fd69ee23a4ce",
                "sha256": "84eeec7fe5da87326c0cef8365910da18d9894ca5e2b85ed875f7d4de7622215"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "befa6a5c3d0f569cc444fd69ee23a4ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1063785,
            "upload_time": "2024-02-16T16:16:07",
            "upload_time_iso_8601": "2024-02-16T16:16:07.843723Z",
            "url": "https://files.pythonhosted.org/packages/d2/83/70cfa91633cef1f41a7fd6c166506cb842d456651a63bc36cd39a22a5280/argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b20ab0780b023d428358772bd3a98a8f4caca84ec69668f80ad63c9cdce8a28a",
                "md5": "30f2f556c985361f039feb332b52b2c7",
                "sha256": "760fcf0424d224c64bf9d6cc1ca6721472b0de50e4774f94ea5fd2781da70aa8"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "30f2f556c985361f039feb332b52b2c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 146467,
            "upload_time": "2024-02-16T16:16:09",
            "upload_time_iso_8601": "2024-02-16T16:16:09.647508Z",
            "url": "https://files.pythonhosted.org/packages/b2/0a/b0780b023d428358772bd3a98a8f4caca84ec69668f80ad63c9cdce8a28a/argmin_testfunctions_py-0.0.1-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d52484a915ee46b161ccd12a8e1bee052bffa2f8994da13a6767c18b8d18fa00",
                "md5": "785c9b05ed5fd9c70e4d7eff9558a365",
                "sha256": "132ae02a27c50472edb6836f9842a9a4d40b79482251aa99bcb71329e54bdc5c"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "785c9b05ed5fd9c70e4d7eff9558a365",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 152900,
            "upload_time": "2024-02-16T16:16:10",
            "upload_time_iso_8601": "2024-02-16T16:16:10.754250Z",
            "url": "https://files.pythonhosted.org/packages/d5/24/84a915ee46b161ccd12a8e1bee052bffa2f8994da13a6767c18b8d18fa00/argmin_testfunctions_py-0.0.1-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6df71d6d5d7b05c20e4ba5c7e8cd8f332a343f5ef81ade0dd6e216dcf06f354a",
                "md5": "c092d2958453d954b8ee09cf25353a55",
                "sha256": "6fb65204c8a5e26e1bd929d4d596378a4eae919ffd1a0161afc52bc7804033ad"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c092d2958453d954b8ee09cf25353a55",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 283207,
            "upload_time": "2024-02-16T16:16:11",
            "upload_time_iso_8601": "2024-02-16T16:16:11.912886Z",
            "url": "https://files.pythonhosted.org/packages/6d/f7/1d6d5d7b05c20e4ba5c7e8cd8f332a343f5ef81ade0dd6e216dcf06f354a/argmin_testfunctions_py-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f102d32c3b9282eb5531ac65516857dc09aa6257f081ccf39cf068a0e8e314d",
                "md5": "cda15599c55ff6b08f0560dd149fcd1a",
                "sha256": "eaecc03f6d9368927b07e4dd7b6ead2f43f004eff42660c36eb7c74fdfae805c"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cda15599c55ff6b08f0560dd149fcd1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 261070,
            "upload_time": "2024-02-16T16:16:13",
            "upload_time_iso_8601": "2024-02-16T16:16:13.063733Z",
            "url": "https://files.pythonhosted.org/packages/9f/10/2d32c3b9282eb5531ac65516857dc09aa6257f081ccf39cf068a0e8e314d/argmin_testfunctions_py-0.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d0d8ad93e6e52f808a9d06c70c0a1239e9bc7dbfd74a996951070c884a320b8",
                "md5": "053821b3dad6a985305557aa7fe8e0d5",
                "sha256": "47b8b738c3743618752694ba2bb02f3a6fd2256f6aef9a43bf605edbc944d955"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "053821b3dad6a985305557aa7fe8e0d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1025196,
            "upload_time": "2024-02-16T16:16:14",
            "upload_time_iso_8601": "2024-02-16T16:16:14.329666Z",
            "url": "https://files.pythonhosted.org/packages/4d/0d/8ad93e6e52f808a9d06c70c0a1239e9bc7dbfd74a996951070c884a320b8/argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb53bfa3c67b67c687ef54988f656523036d585a86f659dde94f739e578851eb",
                "md5": "19a0a9433e8e0428c6f88a8fac385f5d",
                "sha256": "df2c8ee7a361afc60214a506d0e0d79812271355c73f034a632dccc983e4b012"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "19a0a9433e8e0428c6f88a8fac385f5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1039252,
            "upload_time": "2024-02-16T16:16:15",
            "upload_time_iso_8601": "2024-02-16T16:16:15.804797Z",
            "url": "https://files.pythonhosted.org/packages/fb/53/bfa3c67b67c687ef54988f656523036d585a86f659dde94f739e578851eb/argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56aa43215321eaf02590cd84caeef5e04c5a13809cec752c3a73de98d5d89d40",
                "md5": "85668028f307693b081814a3f6d6b424",
                "sha256": "6c5fde653db209594a6543e3f08574fc24328230223f2a0d5b0703542672fdc0"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "85668028f307693b081814a3f6d6b424",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1139449,
            "upload_time": "2024-02-16T16:16:17",
            "upload_time_iso_8601": "2024-02-16T16:16:17.121703Z",
            "url": "https://files.pythonhosted.org/packages/56/aa/43215321eaf02590cd84caeef5e04c5a13809cec752c3a73de98d5d89d40/argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4fa96772b17e0ec5acd4032f65521894ca2da04af24b5a0bc06a782b93acb06a",
                "md5": "9c3947e25a2871966aeb3a1d9a660ca1",
                "sha256": "379f90510c408edf39533e5b4ffa2f89281c32a67ac0c8ef32520d26dbd5f75e"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9c3947e25a2871966aeb3a1d9a660ca1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1173859,
            "upload_time": "2024-02-16T16:16:18",
            "upload_time_iso_8601": "2024-02-16T16:16:18.487562Z",
            "url": "https://files.pythonhosted.org/packages/4f/a9/6772b17e0ec5acd4032f65521894ca2da04af24b5a0bc06a782b93acb06a/argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "384136905f86ac8dd0592f011e6d40b7274f8082b8f9f38f78892575a60eb9c3",
                "md5": "8b6041177bc8681b35fe5644df518eeb",
                "sha256": "c91b7aa0f7f99448f28801c78066776dd4d2e0515b9f18c676bdb5bf23f2f862"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b6041177bc8681b35fe5644df518eeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1032469,
            "upload_time": "2024-02-16T16:16:20",
            "upload_time_iso_8601": "2024-02-16T16:16:20.175480Z",
            "url": "https://files.pythonhosted.org/packages/38/41/36905f86ac8dd0592f011e6d40b7274f8082b8f9f38f78892575a60eb9c3/argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f02e7b853738b39c56a42b8821400d6e54b762d1dfd964a81dcd8d3c634616d",
                "md5": "c867cad5ca7c1d9cb0624fb049e84482",
                "sha256": "d8517d5cf1f7df36f90c8a5e6e75c07c29b4bfe48188e2cab662152243045026"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c867cad5ca7c1d9cb0624fb049e84482",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1063753,
            "upload_time": "2024-02-16T16:16:22",
            "upload_time_iso_8601": "2024-02-16T16:16:22.224290Z",
            "url": "https://files.pythonhosted.org/packages/6f/02/e7b853738b39c56a42b8821400d6e54b762d1dfd964a81dcd8d3c634616d/argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ffb7590f56b66e2b830e0ce45cb1c576e9aa03f85340298dba0c870cb7eab92",
                "md5": "71a9de1ed74d60d6858500bd61ee88b5",
                "sha256": "a3b74dcb8f01b97c3908918ff43c19f609c020538f66797e96d7f4f7db4e0763"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "71a9de1ed74d60d6858500bd61ee88b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 146468,
            "upload_time": "2024-02-16T16:16:23",
            "upload_time_iso_8601": "2024-02-16T16:16:23.665981Z",
            "url": "https://files.pythonhosted.org/packages/7f/fb/7590f56b66e2b830e0ce45cb1c576e9aa03f85340298dba0c870cb7eab92/argmin_testfunctions_py-0.0.1-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3a03931e8a0d60301aec7dfcbe01a531fa69531fee6fc3468c5219f0338f8cf",
                "md5": "917e331de90df9d17a8c0c9e8de720c2",
                "sha256": "9e44cc5955423e12b67d7c3a7ad06fa6466a77d06d25a1ad5ee2939321cf6fee"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "917e331de90df9d17a8c0c9e8de720c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 152903,
            "upload_time": "2024-02-16T16:16:24",
            "upload_time_iso_8601": "2024-02-16T16:16:24.837507Z",
            "url": "https://files.pythonhosted.org/packages/f3/a0/3931e8a0d60301aec7dfcbe01a531fa69531fee6fc3468c5219f0338f8cf/argmin_testfunctions_py-0.0.1-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ac7fc3f534e5af25211101b71de56143752692887681ea4256307d0be8e661c",
                "md5": "c8820583c6424dd9d9029b61447b8ef6",
                "sha256": "042edefacd0f8a4ab9910e764d7eee3cb8658568e80ccf424e4ea385443966f4"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c8820583c6424dd9d9029b61447b8ef6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 282588,
            "upload_time": "2024-02-16T16:16:25",
            "upload_time_iso_8601": "2024-02-16T16:16:25.905081Z",
            "url": "https://files.pythonhosted.org/packages/5a/c7/fc3f534e5af25211101b71de56143752692887681ea4256307d0be8e661c/argmin_testfunctions_py-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4efb4d8731bdc15540b35c60a169f41a688f327fde895100680b626ef793a4da",
                "md5": "0b80873a67c90be8b83f57a2ecacbc70",
                "sha256": "a274063795caea5e414a213da841d88aef598c0845cf09c53f83cb7f51d279fb"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0b80873a67c90be8b83f57a2ecacbc70",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 260585,
            "upload_time": "2024-02-16T16:16:27",
            "upload_time_iso_8601": "2024-02-16T16:16:27.286084Z",
            "url": "https://files.pythonhosted.org/packages/4e/fb/4d8731bdc15540b35c60a169f41a688f327fde895100680b626ef793a4da/argmin_testfunctions_py-0.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "046578aa5b1e70de722e8334c3d7d371e5fea5bfc54f4eeb0fd235b3b739bbb3",
                "md5": "7b167769a202e9f4ddc8775723410a64",
                "sha256": "fcd77803f8f2fbae396d94ca073bd3468bcd22aea03e1a08582d400bc3531478"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7b167769a202e9f4ddc8775723410a64",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1024138,
            "upload_time": "2024-02-16T16:16:28",
            "upload_time_iso_8601": "2024-02-16T16:16:28.726480Z",
            "url": "https://files.pythonhosted.org/packages/04/65/78aa5b1e70de722e8334c3d7d371e5fea5bfc54f4eeb0fd235b3b739bbb3/argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a4525e001d9fd46eeeff5d0fb4c85d5adba9193affb4ed15cde02c0479db3f6",
                "md5": "46b3c293ce368f19906ce508453fd7d1",
                "sha256": "f6438ee2085c4edea95a7ae3afa5dab1a9ec539a79b063df5e9fcc3f1f9f707f"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "46b3c293ce368f19906ce508453fd7d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1039331,
            "upload_time": "2024-02-16T16:16:30",
            "upload_time_iso_8601": "2024-02-16T16:16:30.312670Z",
            "url": "https://files.pythonhosted.org/packages/3a/45/25e001d9fd46eeeff5d0fb4c85d5adba9193affb4ed15cde02c0479db3f6/argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff5281b6458fc896f1baaebeff20a3091285abe9d30d64a1915c11a65cf41b6c",
                "md5": "573971d0d67f6a741c73c08c44e5aaaf",
                "sha256": "f930720f7b076fe9f3402c53482d93a65cc7bc420c8731e50d618603b4952ac6"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "573971d0d67f6a741c73c08c44e5aaaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1156130,
            "upload_time": "2024-02-16T16:16:31",
            "upload_time_iso_8601": "2024-02-16T16:16:31.868785Z",
            "url": "https://files.pythonhosted.org/packages/ff/52/81b6458fc896f1baaebeff20a3091285abe9d30d64a1915c11a65cf41b6c/argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63f54f2ab7096a39ab8fc056df2dff91862894d0588beef722b88fa98812956e",
                "md5": "ccc206c8c5e84c77696c4673da0b4e6b",
                "sha256": "1abf49e70070d321a7684d03e692c9dace7c37e99c22a3e8d5d9e982a99473df"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ccc206c8c5e84c77696c4673da0b4e6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1162666,
            "upload_time": "2024-02-16T16:16:33",
            "upload_time_iso_8601": "2024-02-16T16:16:33.259493Z",
            "url": "https://files.pythonhosted.org/packages/63/f5/4f2ab7096a39ab8fc056df2dff91862894d0588beef722b88fa98812956e/argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7eac144bba3f0b8e4ccb173cedd28d9a3a95639e80a0746918369cb645159a00",
                "md5": "19fabcd1898f0e5f6dc1dbdd06b6b8a1",
                "sha256": "0e79279bc95abe9c031dcb9dbb2546ab4dacfbcf3a92ce850b350edf5aef0944"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19fabcd1898f0e5f6dc1dbdd06b6b8a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1031755,
            "upload_time": "2024-02-16T16:16:35",
            "upload_time_iso_8601": "2024-02-16T16:16:35.141225Z",
            "url": "https://files.pythonhosted.org/packages/7e/ac/144bba3f0b8e4ccb173cedd28d9a3a95639e80a0746918369cb645159a00/argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "996cf1e1724681609475aa5230e2fca8159618e05a3a742401e11811772ea0c0",
                "md5": "665cf45e44c4a4b43f16c9e711277613",
                "sha256": "dfaf287d1380eacda3d2952bb113e58469b643d237f8b891f8f373e72368607c"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "665cf45e44c4a4b43f16c9e711277613",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1063261,
            "upload_time": "2024-02-16T16:16:37",
            "upload_time_iso_8601": "2024-02-16T16:16:37.356134Z",
            "url": "https://files.pythonhosted.org/packages/99/6c/f1e1724681609475aa5230e2fca8159618e05a3a742401e11811772ea0c0/argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83b883c07a58eef2101050f5025a7281f806ff702747db6da8bba61d3e8f48cb",
                "md5": "a217f9bd0cf4deaf52025310a1740195",
                "sha256": "24d3b66257e42f4edfb71c7026c18b3a0a3be6c6010eb8de55807119cb281a01"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a217f9bd0cf4deaf52025310a1740195",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 145967,
            "upload_time": "2024-02-16T16:16:38",
            "upload_time_iso_8601": "2024-02-16T16:16:38.751700Z",
            "url": "https://files.pythonhosted.org/packages/83/b8/83c07a58eef2101050f5025a7281f806ff702747db6da8bba61d3e8f48cb/argmin_testfunctions_py-0.0.1-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d212ae51439ac47776e8c7a35a2f8e368340b40b90c04940e0e0d89037e81e82",
                "md5": "4611cbda7f7b4df02709cff57fd5bff9",
                "sha256": "ca45a6fbd671068ecec1b882556d243430395b3fbbeed9d77a281dec82d53bca"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4611cbda7f7b4df02709cff57fd5bff9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 153165,
            "upload_time": "2024-02-16T16:16:40",
            "upload_time_iso_8601": "2024-02-16T16:16:40.520563Z",
            "url": "https://files.pythonhosted.org/packages/d2/12/ae51439ac47776e8c7a35a2f8e368340b40b90c04940e0e0d89037e81e82/argmin_testfunctions_py-0.0.1-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a91ee1dedc1532964058ca25d4ade87803d0260c62d60f7f3eccfff21cb8667",
                "md5": "3e19d73a9f015e4d3814c116e89c2dfb",
                "sha256": "e69bc321a4d3b5da268a91f47db084816e237bb47d5721ae028738b9b495bafe"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3e19d73a9f015e4d3814c116e89c2dfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1024139,
            "upload_time": "2024-02-16T16:16:42",
            "upload_time_iso_8601": "2024-02-16T16:16:42.282009Z",
            "url": "https://files.pythonhosted.org/packages/2a/91/ee1dedc1532964058ca25d4ade87803d0260c62d60f7f3eccfff21cb8667/argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "179fe2d64bb5c3c102ad4ca46374454e4091dbf48d6cdbf066a143c1167262e4",
                "md5": "117136f74200a4f645e48974e950eba2",
                "sha256": "fbabae8ac6487a5e14ba334524432ee14f168bff88463c9558c6e483424bfe49"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "117136f74200a4f645e48974e950eba2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1039332,
            "upload_time": "2024-02-16T16:16:44",
            "upload_time_iso_8601": "2024-02-16T16:16:44.017821Z",
            "url": "https://files.pythonhosted.org/packages/17/9f/e2d64bb5c3c102ad4ca46374454e4091dbf48d6cdbf066a143c1167262e4/argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6c54f0de581531fcc3a610d2e2ba2135bf44893ed6a7281b38ab1112586238b",
                "md5": "d2279cd8a52034a1c2ba5c58af9f1264",
                "sha256": "a1dd56c637574b0d786f2e34b842f14805b2044677422c10a897e2273b75fa0b"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d2279cd8a52034a1c2ba5c58af9f1264",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1156131,
            "upload_time": "2024-02-16T16:16:45",
            "upload_time_iso_8601": "2024-02-16T16:16:45.609971Z",
            "url": "https://files.pythonhosted.org/packages/a6/c5/4f0de581531fcc3a610d2e2ba2135bf44893ed6a7281b38ab1112586238b/argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9d6080bde1388552b1fa31cb3ddca76d96d6840871b7feba30138b62e269189",
                "md5": "f4d81b83cbef4c5bd419baca5398d147",
                "sha256": "fafafd2af25f934fc9dd9f87b9f8347126ea6ff6dd40d587a8a9cbfe9afbc6d1"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f4d81b83cbef4c5bd419baca5398d147",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1162666,
            "upload_time": "2024-02-16T16:16:46",
            "upload_time_iso_8601": "2024-02-16T16:16:46.954301Z",
            "url": "https://files.pythonhosted.org/packages/c9/d6/080bde1388552b1fa31cb3ddca76d96d6840871b7feba30138b62e269189/argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca92b432711528f2354d83c1e4543b03692472f1ff810a25bc3edd129f5191ae",
                "md5": "5201ac8bd077aa143cf919cd65974163",
                "sha256": "36f1f80e908605aab5b38d6b633069f3687025b83ffff5adf6977ea4e4c64102"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5201ac8bd077aa143cf919cd65974163",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1024253,
            "upload_time": "2024-02-16T16:16:49",
            "upload_time_iso_8601": "2024-02-16T16:16:49.202591Z",
            "url": "https://files.pythonhosted.org/packages/ca/92/b432711528f2354d83c1e4543b03692472f1ff810a25bc3edd129f5191ae/argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2b91fed90d0ba7121f8d2cb08d4d1847d3bb4056020395ad2ac9d54361984b5",
                "md5": "3183d080737c38ec24a2ea5393813967",
                "sha256": "a4cf86c1f8752b2c478311e3ee14ae863c19eb1745c08355a75a78a830a73257"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3183d080737c38ec24a2ea5393813967",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1038999,
            "upload_time": "2024-02-16T16:16:50",
            "upload_time_iso_8601": "2024-02-16T16:16:50.575076Z",
            "url": "https://files.pythonhosted.org/packages/a2/b9/1fed90d0ba7121f8d2cb08d4d1847d3bb4056020395ad2ac9d54361984b5/argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4236cadab90ead5bd61ada0ac31f6336c30ba2b1795f845a710d9a8fcef508d0",
                "md5": "3bf8705a6d17c1b320735ec7169233da",
                "sha256": "412a9fbb1cbf4763dd64da04e45ba39d62e7fe2ad061e9a181097563f3262a77"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3bf8705a6d17c1b320735ec7169233da",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1139419,
            "upload_time": "2024-02-16T16:16:52",
            "upload_time_iso_8601": "2024-02-16T16:16:52.791042Z",
            "url": "https://files.pythonhosted.org/packages/42/36/cadab90ead5bd61ada0ac31f6336c30ba2b1795f845a710d9a8fcef508d0/argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5725320020b8c555eea67743053fb993031e2bf1822daa72539180a10e86eab",
                "md5": "fa1c2f40194ca89ebe95684179ffaf70",
                "sha256": "2beaf200158663663f3d2b33eee8b2abce648b2a6e406cf2e583229247f24646"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fa1c2f40194ca89ebe95684179ffaf70",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1173262,
            "upload_time": "2024-02-16T16:16:54",
            "upload_time_iso_8601": "2024-02-16T16:16:54.728339Z",
            "url": "https://files.pythonhosted.org/packages/e5/72/5320020b8c555eea67743053fb993031e2bf1822daa72539180a10e86eab/argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edddd8a07f77f12124ee236c8a9b39e067e33f738d9ca3385be133474a446a06",
                "md5": "d4a809d627b9284d0c6409a71dbb4ba9",
                "sha256": "fdbbeb2bf4797cc7a375858ea18cce29837d5e0a2223ae466c3459970c0b01ac"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4a809d627b9284d0c6409a71dbb4ba9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1031546,
            "upload_time": "2024-02-16T16:16:57",
            "upload_time_iso_8601": "2024-02-16T16:16:57.143900Z",
            "url": "https://files.pythonhosted.org/packages/ed/dd/d8a07f77f12124ee236c8a9b39e067e33f738d9ca3385be133474a446a06/argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ced3bf5132b3e6bc59358eea680d5ae8824c008084f56367fc8b3d1c2a62745f",
                "md5": "24cbf1b5c1fcbe768d94cb767f55687a",
                "sha256": "c9547918a5158f68d70dbf0cfdacadb741f615c0497fd9b34fd03d813f34e49d"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "24cbf1b5c1fcbe768d94cb767f55687a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1063078,
            "upload_time": "2024-02-16T16:16:59",
            "upload_time_iso_8601": "2024-02-16T16:16:59.215369Z",
            "url": "https://files.pythonhosted.org/packages/ce/d3/bf5132b3e6bc59358eea680d5ae8824c008084f56367fc8b3d1c2a62745f/argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12bc893ae8baa650b5e783c89fc3af53728feceae1aafed54619c29350bafd20",
                "md5": "bfac2fc680a4867f5c990dcc4d3b2a6f",
                "sha256": "fdb5d404b3d8a850f592d58971bedf7af1686e3244382bc6b3b1628f417c938b"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "bfac2fc680a4867f5c990dcc4d3b2a6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 146567,
            "upload_time": "2024-02-16T16:17:00",
            "upload_time_iso_8601": "2024-02-16T16:17:00.682960Z",
            "url": "https://files.pythonhosted.org/packages/12/bc/893ae8baa650b5e783c89fc3af53728feceae1aafed54619c29350bafd20/argmin_testfunctions_py-0.0.1-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e56d6c01f240198a7c22d677c4cab7f96505caee0ff488f228350daf228f179f",
                "md5": "c9f3d38ac0b32a1231391493be4f613d",
                "sha256": "4c80cd5d4783ee36e12ef3eb14b106316252eaf437497a7a370630c1caba8598"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c9f3d38ac0b32a1231391493be4f613d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 152688,
            "upload_time": "2024-02-16T16:17:01",
            "upload_time_iso_8601": "2024-02-16T16:17:01.797461Z",
            "url": "https://files.pythonhosted.org/packages/e5/6d/6c01f240198a7c22d677c4cab7f96505caee0ff488f228350daf228f179f/argmin_testfunctions_py-0.0.1-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "594a210489c2e9a85e3f90bc91b3ff62f5c91e924d4708a2f12f3d1c61128cde",
                "md5": "3464dc7f733196a61c1caa78bd601c0d",
                "sha256": "4d342814aac06d3eafc5e818387891f7a2da8611e8e38a00fb768a790e4cae7a"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3464dc7f733196a61c1caa78bd601c0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1024775,
            "upload_time": "2024-02-16T16:17:03",
            "upload_time_iso_8601": "2024-02-16T16:17:03.045603Z",
            "url": "https://files.pythonhosted.org/packages/59/4a/210489c2e9a85e3f90bc91b3ff62f5c91e924d4708a2f12f3d1c61128cde/argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d4d748f6cd1d72bbfd7a35effb66603b4305793f2de188f2fac094469ea8146",
                "md5": "078f8d84189eebafcc38a1a79f9510d2",
                "sha256": "3ad080b251ced9a5c738c260b4942a808c7b63f7cbdfc2adbdbc300665a8639c"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "078f8d84189eebafcc38a1a79f9510d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1039257,
            "upload_time": "2024-02-16T16:17:04",
            "upload_time_iso_8601": "2024-02-16T16:17:04.505110Z",
            "url": "https://files.pythonhosted.org/packages/0d/4d/748f6cd1d72bbfd7a35effb66603b4305793f2de188f2fac094469ea8146/argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f7cbc2ce68a4c9fa91c1658eced49f395ab664a573aa98372a0f49047331a16f",
                "md5": "31c1642146935dbb666887dfd8f6ca34",
                "sha256": "049b08974a7c73af890def09af14e35d8f7f6144107ad26135f36c270be70e84"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "31c1642146935dbb666887dfd8f6ca34",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1139407,
            "upload_time": "2024-02-16T16:17:05",
            "upload_time_iso_8601": "2024-02-16T16:17:05.788960Z",
            "url": "https://files.pythonhosted.org/packages/f7/cb/c2ce68a4c9fa91c1658eced49f395ab664a573aa98372a0f49047331a16f/argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3015d20c6866e6e914c3a7ebb9d285d14448cfb61606144ba322b3660017a6f2",
                "md5": "24ec7c6e525c355f5cf995d7a0115b9b",
                "sha256": "5b56cb9138d5e2ee9fa6addd035dfbf65caa518d5a5e712f8659fa82218c754f"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "24ec7c6e525c355f5cf995d7a0115b9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1173760,
            "upload_time": "2024-02-16T16:17:07",
            "upload_time_iso_8601": "2024-02-16T16:17:07.265371Z",
            "url": "https://files.pythonhosted.org/packages/30/15/d20c6866e6e914c3a7ebb9d285d14448cfb61606144ba322b3660017a6f2/argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17b8a88159d8449044512d64c9756aba6dcab522dbddc282f11a00984302da1f",
                "md5": "836210941af20560afafc3c66cbd22eb",
                "sha256": "98e696c83f0070a4a66da078d3cc8a9f377e824fd799f74165ce379033192fad"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "836210941af20560afafc3c66cbd22eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1032311,
            "upload_time": "2024-02-16T16:17:08",
            "upload_time_iso_8601": "2024-02-16T16:17:08.765680Z",
            "url": "https://files.pythonhosted.org/packages/17/b8/a88159d8449044512d64c9756aba6dcab522dbddc282f11a00984302da1f/argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93f7f88972b6bb5bfed6153abea72526f82011175a3db36c23ca20ff990a6eab",
                "md5": "4933ccde62242f1a0b6c0a10c4ad809b",
                "sha256": "ea9fc8b84aaa3ae525a61a61421995926cc07f197982610ab62c7138b61bcdd2"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "4933ccde62242f1a0b6c0a10c4ad809b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1063631,
            "upload_time": "2024-02-16T16:17:10",
            "upload_time_iso_8601": "2024-02-16T16:17:10.295142Z",
            "url": "https://files.pythonhosted.org/packages/93/f7/f88972b6bb5bfed6153abea72526f82011175a3db36c23ca20ff990a6eab/argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82e5bba743adad50b909998ce1266429cacf51d5d93ba91d092303fc369ad1cb",
                "md5": "de93f1a8259177415c51d755ab912bfb",
                "sha256": "1ae0cc1f7b0b3ac63e598cea4883219ab95dc5c3456265507f343a6c5104d1f6"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "de93f1a8259177415c51d755ab912bfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 146496,
            "upload_time": "2024-02-16T16:17:11",
            "upload_time_iso_8601": "2024-02-16T16:17:11.675461Z",
            "url": "https://files.pythonhosted.org/packages/82/e5/bba743adad50b909998ce1266429cacf51d5d93ba91d092303fc369ad1cb/argmin_testfunctions_py-0.0.1-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c27eac35075a2295e65444cf02e9a202ee3810101f7fdf132aa929e81ea7a89",
                "md5": "6bc36b790286dff8270144682ec43be8",
                "sha256": "361e14ed38d0e6e65dba71d4076c2e9df983f5b7038faf6748a414f856e063f3"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6bc36b790286dff8270144682ec43be8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 152939,
            "upload_time": "2024-02-16T16:17:12",
            "upload_time_iso_8601": "2024-02-16T16:17:12.898375Z",
            "url": "https://files.pythonhosted.org/packages/7c/27/eac35075a2295e65444cf02e9a202ee3810101f7fdf132aa929e81ea7a89/argmin_testfunctions_py-0.0.1-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27b4f31eccf3abbe9f187326ae07df67a786c23d047d051287475016f425ff56",
                "md5": "95fc9871375dbde456b8c08d00a388d9",
                "sha256": "850efe96cfce278a4bc7b85dc33d42dbc2b9672b544cf651c1f5341b78059c6f"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "95fc9871375dbde456b8c08d00a388d9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1024566,
            "upload_time": "2024-02-16T16:17:14",
            "upload_time_iso_8601": "2024-02-16T16:17:14.172148Z",
            "url": "https://files.pythonhosted.org/packages/27/b4/f31eccf3abbe9f187326ae07df67a786c23d047d051287475016f425ff56/argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf5e47d8152dd9e7961044b376cd529ce557ce29d9c51b5156c41668ffbabb30",
                "md5": "a42b73d5dcc0e7686cc224ae9661f1c4",
                "sha256": "ebd5de8d46d9ca959c39308fa7101b5d4dde7c968529ad73f948341708c8a67e"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a42b73d5dcc0e7686cc224ae9661f1c4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1039360,
            "upload_time": "2024-02-16T16:17:15",
            "upload_time_iso_8601": "2024-02-16T16:17:15.569711Z",
            "url": "https://files.pythonhosted.org/packages/bf/5e/47d8152dd9e7961044b376cd529ce557ce29d9c51b5156c41668ffbabb30/argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "290fe11ccc128591b3578b4dfa608e003418d83bab071187d266b4ef4bbd3fa8",
                "md5": "b6480d0fe5b57a8bb5ceb19d0859a06f",
                "sha256": "9223b1421344ed080c4affcb1aaa35da1efc43b6ca3fe496af3c3b95d90aab1d"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b6480d0fe5b57a8bb5ceb19d0859a06f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1139607,
            "upload_time": "2024-02-16T16:17:17",
            "upload_time_iso_8601": "2024-02-16T16:17:17.158285Z",
            "url": "https://files.pythonhosted.org/packages/29/0f/e11ccc128591b3578b4dfa608e003418d83bab071187d266b4ef4bbd3fa8/argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c28c9fb17d717c62a0cb25df33f58414023a7b46f578fb2549cdb38dfedd3c5",
                "md5": "6ebacd1f9855e876a14f189c23479072",
                "sha256": "9532ffe8dc2c9810b05a00449b51f6b42204e9498c243f1275d68934b6de6595"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6ebacd1f9855e876a14f189c23479072",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1173799,
            "upload_time": "2024-02-16T16:17:19",
            "upload_time_iso_8601": "2024-02-16T16:17:19.733084Z",
            "url": "https://files.pythonhosted.org/packages/8c/28/c9fb17d717c62a0cb25df33f58414023a7b46f578fb2549cdb38dfedd3c5/argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f6020ebe3313508ac138ab6eabaf0a34b5a69c471c4e9c792630183a6b72e9d",
                "md5": "6ccaa76617a25f063cd30e45741becc6",
                "sha256": "cd74b77b53b2016781ec1582f93e10b7c355b2f8e25f70b66def3d97ab1aa635"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ccaa76617a25f063cd30e45741becc6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1032411,
            "upload_time": "2024-02-16T16:17:21",
            "upload_time_iso_8601": "2024-02-16T16:17:21.023893Z",
            "url": "https://files.pythonhosted.org/packages/0f/60/20ebe3313508ac138ab6eabaf0a34b5a69c471c4e9c792630183a6b72e9d/argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c851aa85a251d54956855e26462f4de5094669959bef487a2bd2f1bf4155d858",
                "md5": "a0f7aa8910fa7264a17c68da63554b84",
                "sha256": "5495e34e040d89a3338a0412403e0cef56af5d22c710eb2b3c1cf2c91814b495"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a0f7aa8910fa7264a17c68da63554b84",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1063512,
            "upload_time": "2024-02-16T16:17:22",
            "upload_time_iso_8601": "2024-02-16T16:17:22.591382Z",
            "url": "https://files.pythonhosted.org/packages/c8/51/aa85a251d54956855e26462f4de5094669959bef487a2bd2f1bf4155d858/argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a51d2536dfad0ba8c7a4e0bd1481571447053d7c2404a67bdf06278aaae3f93",
                "md5": "3b5ceb031f12237cd79d612453a8df17",
                "sha256": "dd79da7dc9de1231d2fb8900a23b27cd5edb97f2ce488816f6bb09ed014b682b"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3b5ceb031f12237cd79d612453a8df17",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1024550,
            "upload_time": "2024-02-16T16:17:24",
            "upload_time_iso_8601": "2024-02-16T16:17:24.310741Z",
            "url": "https://files.pythonhosted.org/packages/4a/51/d2536dfad0ba8c7a4e0bd1481571447053d7c2404a67bdf06278aaae3f93/argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65f39e672b1b0712812c8224ce0cfec883148468b02a278fc14e1fa8dbf0d287",
                "md5": "9c9c8266cd801ac16ec9048222b92cde",
                "sha256": "839d5de455869c7d7770aabb5171f1c44b3b3377f34d5c33e84ae94f94f35dca"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9c9c8266cd801ac16ec9048222b92cde",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1039588,
            "upload_time": "2024-02-16T16:17:25",
            "upload_time_iso_8601": "2024-02-16T16:17:25.854426Z",
            "url": "https://files.pythonhosted.org/packages/65/f3/9e672b1b0712812c8224ce0cfec883148468b02a278fc14e1fa8dbf0d287/argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a30b56e69f07d4bb56c94bc835d193881fa3937bfc50c159ce47ceb66deab728",
                "md5": "6890a041b369ddedb7df4364d1028d35",
                "sha256": "c4caee9f0abfffb89c2f1d611be4c19d4b66eb00319dfb9d6915123c2b4ce0b4"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6890a041b369ddedb7df4364d1028d35",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1138836,
            "upload_time": "2024-02-16T16:17:27",
            "upload_time_iso_8601": "2024-02-16T16:17:27.170428Z",
            "url": "https://files.pythonhosted.org/packages/a3/0b/56e69f07d4bb56c94bc835d193881fa3937bfc50c159ce47ceb66deab728/argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2cad4828164ad308f1a177a403dd69414b66f3ca0df39ef10208d7f6e14dae1",
                "md5": "12b564811d35c75875799bdff005df04",
                "sha256": "2156a0122dccc512fdf01f25bc56b495a485d15dde05fb4da3adefb3710b2fbc"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "12b564811d35c75875799bdff005df04",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1173174,
            "upload_time": "2024-02-16T16:17:28",
            "upload_time_iso_8601": "2024-02-16T16:17:28.658816Z",
            "url": "https://files.pythonhosted.org/packages/e2/ca/d4828164ad308f1a177a403dd69414b66f3ca0df39ef10208d7f6e14dae1/argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8dc6eac64b01a794f86a25ed55bb1131e745cdedaa5e69462451980bd1f0d34",
                "md5": "d7cc3794f1bce6fc776a40fbaa2950b4",
                "sha256": "2072beb287bbb0b9e7e7a17fbd514a92413d9bf01b257cb2e96976fe4bff1276"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7cc3794f1bce6fc776a40fbaa2950b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1031842,
            "upload_time": "2024-02-16T16:17:30",
            "upload_time_iso_8601": "2024-02-16T16:17:30.100822Z",
            "url": "https://files.pythonhosted.org/packages/f8/dc/6eac64b01a794f86a25ed55bb1131e745cdedaa5e69462451980bd1f0d34/argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff34b0a8172564315ab6c3b3acacb284ecf1f37939f7ac0123841573a2b00733",
                "md5": "cee3b0ac4eb70559675e53d0fb05d3db",
                "sha256": "420ccb065d78695c43aa70ebc0836af3233749df93915890f55456418fff02f4"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "cee3b0ac4eb70559675e53d0fb05d3db",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1063803,
            "upload_time": "2024-02-16T16:17:32",
            "upload_time_iso_8601": "2024-02-16T16:17:32.835462Z",
            "url": "https://files.pythonhosted.org/packages/ff/34/b0a8172564315ab6c3b3acacb284ecf1f37939f7ac0123841573a2b00733/argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70360b3d72813a1661dbcd3f4a69584abb509e0ab65d1ed8fea3c1054a715f69",
                "md5": "012dadbcf427751fc14d4416cbb56a22",
                "sha256": "32df64a3d4ed1389261e946c3bf2d1f7bb4658bc677f1449ca6914ff9661518f"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "012dadbcf427751fc14d4416cbb56a22",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1024592,
            "upload_time": "2024-02-16T16:17:34",
            "upload_time_iso_8601": "2024-02-16T16:17:34.963982Z",
            "url": "https://files.pythonhosted.org/packages/70/36/0b3d72813a1661dbcd3f4a69584abb509e0ab65d1ed8fea3c1054a715f69/argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91b43aabbf75402589ef6a65748ba586b497cd1d967d098d6c86c0b07e9ed9c8",
                "md5": "f3a71d1b21430106cc1f5fd1645299c3",
                "sha256": "53071e329cbe3eccb41f573ae8d33a5e3e3cc7b4d2b4eac8841c802ed0ef81ca"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f3a71d1b21430106cc1f5fd1645299c3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1039254,
            "upload_time": "2024-02-16T16:17:36",
            "upload_time_iso_8601": "2024-02-16T16:17:36.403133Z",
            "url": "https://files.pythonhosted.org/packages/91/b4/3aabbf75402589ef6a65748ba586b497cd1d967d098d6c86c0b07e9ed9c8/argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c74dd02d5c4c44e7c6f5f1eb5a1896c89559d50a3088a297c87e7152c655b628",
                "md5": "79637a2f8503bffca8f3f4acb96f7b04",
                "sha256": "0c46de36e7f8fbedc415b0a606f5c605d39424f6fc97b11f546c659e67857128"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "79637a2f8503bffca8f3f4acb96f7b04",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1139585,
            "upload_time": "2024-02-16T16:17:38",
            "upload_time_iso_8601": "2024-02-16T16:17:38.126424Z",
            "url": "https://files.pythonhosted.org/packages/c7/4d/d02d5c4c44e7c6f5f1eb5a1896c89559d50a3088a297c87e7152c655b628/argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a94f0442fbfb6d654c193a98a1a5c2610ff6526ea22d39fa63ccf2f87aac0403",
                "md5": "3c3caec2809f4bcbf7c81d6141663fa0",
                "sha256": "ed79801f7f02875f621203fc986ac96ef7162eb3969223574eddc43dd55536eb"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3c3caec2809f4bcbf7c81d6141663fa0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1173726,
            "upload_time": "2024-02-16T16:17:39",
            "upload_time_iso_8601": "2024-02-16T16:17:39.687725Z",
            "url": "https://files.pythonhosted.org/packages/a9/4f/0442fbfb6d654c193a98a1a5c2610ff6526ea22d39fa63ccf2f87aac0403/argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8703e14bc72c33399a585180c8416f0e5045de3c6f0c8ce418ea8044c0f66568",
                "md5": "3dbcaa0fe27765248e2517d5a515bd39",
                "sha256": "e6f61d799a3e79c77fa91decddce0842226e1e4f11f443e70f2ad9da17e8c191"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3dbcaa0fe27765248e2517d5a515bd39",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1032391,
            "upload_time": "2024-02-16T16:17:41",
            "upload_time_iso_8601": "2024-02-16T16:17:41.123514Z",
            "url": "https://files.pythonhosted.org/packages/87/03/e14bc72c33399a585180c8416f0e5045de3c6f0c8ce418ea8044c0f66568/argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b898d7faf061a34ab52b8f193aaef184be6852db04ad5d254a28be97048c458a",
                "md5": "795854c98aef9c20b6f50bfa23e12e4d",
                "sha256": "936730fa9f30043a3cf132bbcde95e3fd9cb5b820145255ed4a72c2f65763ee8"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "795854c98aef9c20b6f50bfa23e12e4d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1063452,
            "upload_time": "2024-02-16T16:17:42",
            "upload_time_iso_8601": "2024-02-16T16:17:42.556681Z",
            "url": "https://files.pythonhosted.org/packages/b8/98/d7faf061a34ab52b8f193aaef184be6852db04ad5d254a28be97048c458a/argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b34cfc3b19b4522e0485781042cf245f1e5d7ed9ae01c4c8758b6db5f1644eb",
                "md5": "fb8f43c020c44daafd73dffcbdfa544d",
                "sha256": "1add1b8c0cb4dc452e2790baed6a6537c815773ce9e2f00a0700ba91988346f7"
            },
            "downloads": -1,
            "filename": "argmin_testfunctions_py-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "fb8f43c020c44daafd73dffcbdfa544d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 81275,
            "upload_time": "2024-02-16T16:17:43",
            "upload_time_iso_8601": "2024-02-16T16:17:43.871135Z",
            "url": "https://files.pythonhosted.org/packages/7b/34/cfc3b19b4522e0485781042cf245f1e5d7ed9ae01c4c8758b6db5f1644eb/argmin_testfunctions_py-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-16 16:17:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "argmin-rs",
    "github_project": "argmin",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "argmin-testfunctions-py"
}
        
Elapsed time: 0.19874s