cvxpy


Namecvxpy JSON
Version 1.4.3 PyPI version JSON
download
home_pagehttps://github.com/cvxpy/cvxpy
SummaryA domain-specific language for modeling convex optimization problems in Python.
upload_time2024-04-16 08:09:08
maintainerNone
docs_urlNone
authorSteven Diamond, Eric Chu, Stephen Boyd
requires_python>=3.8
licenseApache License, Version 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            CVXPY
=====================
[![Build Status](http://github.com/cvxpy/cvxpy/workflows/build/badge.svg?event=push)](https://github.com/cvxpy/cvxpy/actions/workflows/build.yml)
![PyPI - downloads](https://img.shields.io/pypi/dm/cvxpy.svg?label=Pypi%20downloads)
![Conda - downloads](https://img.shields.io/conda/dn/conda-forge/cvxpy.svg?label=Conda%20downloads)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=cvxpy_cvxpy&metric=coverage)](https://sonarcloud.io/summary/new_code?id=cvxpy_cvxpy)
[![Benchmarks](http://img.shields.io/badge/benchmarked%20by-asv-blue.svg?style=flat)](https://cvxpy.github.io/benchmarks/)
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/cvxpy/cvxpy/badge)](https://api.securityscorecards.dev/projects/github.com/cvxpy/cvxpy)

**The CVXPY documentation is at [cvxpy.org](http://www.cvxpy.org/).**

*We are building a CVXPY community on [Discord](https://discord.gg/4urRQeGBCr). Join the conversation! For issues and long-form discussions, use [Github Issues](https://github.com/cvxpy/cvxpy/issues) and [Github Discussions](https://github.com/cvxpy/cvxpy/discussions).*

**Contents**
- [Installation](#installation)
- [Getting started](#getting-started)
- [Issues](#issues)
- [Community](#community)
- [Contributing](#contributing)
- [Team](#team)
- [Citing](#citing)


CVXPY is a Python-embedded modeling language for convex optimization problems. It allows you to express your problem in a natural way that follows the math, rather than in the restrictive standard form required by solvers.

For example, the following code solves a least-squares problem where the variable is constrained by lower and upper bounds:

```python3
import cvxpy as cp
import numpy

# Problem data.
m = 30
n = 20
numpy.random.seed(1)
A = numpy.random.randn(m, n)
b = numpy.random.randn(m)

# Construct the problem.
x = cp.Variable(n)
objective = cp.Minimize(cp.sum_squares(A @ x - b))
constraints = [0 <= x, x <= 1]
prob = cp.Problem(objective, constraints)

# The optimal objective is returned by prob.solve().
result = prob.solve()
# The optimal value for x is stored in x.value.
print(x.value)
# The optimal Lagrange multiplier for a constraint
# is stored in constraint.dual_value.
print(constraints[0].dual_value)
```

With CVXPY, you can model
* convex optimization problems,
* mixed-integer convex optimization problems,
* geometric programs, and
* quasiconvex programs.

CVXPY is not a solver. It relies upon the open source solvers
[ECOS](http://github.com/ifa-ethz/ecos), [SCS](https://github.com/bodono/scs-python),
and [OSQP](https://github.com/oxfordcontrol/osqp). Additional solvers are
[available](https://www.cvxpy.org/tutorial/advanced/index.html#choosing-a-solver),
but must be installed separately.

CVXPY began as a Stanford University research project. It is now developed by
many people, across many institutions and countries.


## Installation
CVXPY is available on PyPI, and can be installed with
```
pip install cvxpy
```

CVXPY can also be installed with conda, using
```
conda install -c conda-forge cvxpy
```

CVXPY has the following dependencies:

- Python >= 3.8
- Clarabel >= 0.5.0
- OSQP >= 0.6.2
- ECOS >= 2
- SCS >= 3.0
- NumPy >= 1.15
- SciPy >= 1.1.0

For detailed instructions, see the [installation
guide](https://www.cvxpy.org/install/index.html).

## Getting started
To get started with CVXPY, check out the following:
* [official CVXPY tutorial](https://www.cvxpy.org/tutorial/index.html)
* [example library](https://www.cvxpy.org/examples/index.html)
* [API reference](https://www.cvxpy.org/api_reference/cvxpy.html)

## Issues
We encourage you to report issues using the [Github tracker](https://github.com/cvxpy/cvxpy/issues). We welcome all kinds of issues, especially those related to correctness, documentation, performance, and feature requests.

For basic usage questions (e.g., "Why isn't my problem DCP?"), please use [StackOverflow](https://stackoverflow.com/questions/tagged/cvxpy) instead.

## Community
The CVXPY community consists of researchers, data scientists, software engineers, and students from all over the world. We welcome you to join us!

* To chat with the CVXPY community in real-time, join us on [Discord](https://discord.gg/4urRQeGBCr).
* To have longer, in-depth discussions with the CVXPY community, use [Github Discussions](https://github.com/cvxpy/cvxpy/discussions).
* To share feature requests and bug reports, use [Github Issues](https://github.com/cvxpy/cvxpy/issues).

Please be respectful in your communications with the CVXPY community, and make sure to abide by our [code of conduct](https://github.com/cvxpy/cvxpy/blob/master/CODE_OF_CONDUCT.md).

## Contributing
We appreciate all contributions. You don't need to be an expert in convex
optimization to help out.

You should first
install [CVXPY from source](https://www.cvxpy.org/install/index.html#install-from-source).
Here are some simple ways to start contributing immediately:
* Read the CVXPY source code and improve the documentation, or address TODOs
* Enhance the [website documentation](https://github.com/cvxpy/cvxpy/tree/master/doc)
* Browse the [issue tracker](https://github.com/cvxpy/cvxpy/issues), and look for issues tagged as "help wanted"
* Polish the [example library](https://github.com/cvxpy/cvxpy/tree/master/examples)
* Add a [benchmark](https://github.com/cvxpy/cvxpy/tree/master/cvxpy/tests/test_benchmarks.py)

If you'd like to add a new example to our library, or implement a new feature,
please get in touch with us first to make sure that your priorities align with
ours. 

Contributions should be submitted as [pull requests](https://github.com/cvxpy/cvxpy/pulls).
A member of the CVXPY development team will review the pull request and guide
you through the contributing process.

Before starting work on your contribution, please read the [contributing guide](https://github.com/cvxpy/cvxpy/blob/master/CONTRIBUTING.md).

## Team
CVXPY is a community project, built from the contributions of many
researchers and engineers.

CVXPY is developed and maintained by [Steven
Diamond](https://stevendiamond.me/), [Akshay
Agrawal](https://akshayagrawal.com), [Riley Murray](https://rileyjmurray.wordpress.com/), 
[Philipp Schiele](https://www.philippschiele.com/),
and [Bartolomeo Stellato](https://stellato.io/), with many others contributing
significantly. A non-exhaustive list of people who have shaped CVXPY over the
years includes Stephen Boyd, Eric Chu, Robin Verschueren, Michael Sommerauer,
Jaehyun Park, Enzo Busseti, AJ Friend, Judson Wilson, and Chris Dembia.

For more information about the team and our processes, see our [governance document](https://github.com/cvxpy/org/blob/main/governance.md).

## Citing
If you use CVXPY for academic work, we encourage you to [cite our papers](https://www.cvxpy.org/citing/index.html). If you use CVXPY in industry, we'd love to hear from you as well, on Discord or over email.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/cvxpy/cvxpy",
    "name": "cvxpy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Steven Diamond, Eric Chu, Stephen Boyd",
    "author_email": "stevend2@stanford.edu, akshayka@cs.stanford.edu, echu508@stanford.edu, boyd@stanford.edu",
    "download_url": "https://files.pythonhosted.org/packages/ae/82/32f19cb7af36ff1b6cad1f4d5437798d1f09ae394b38bac8c8ba8cd4a652/cvxpy-1.4.3.tar.gz",
    "platform": null,
    "description": "CVXPY\r\n=====================\r\n[![Build Status](http://github.com/cvxpy/cvxpy/workflows/build/badge.svg?event=push)](https://github.com/cvxpy/cvxpy/actions/workflows/build.yml)\r\n![PyPI - downloads](https://img.shields.io/pypi/dm/cvxpy.svg?label=Pypi%20downloads)\r\n![Conda - downloads](https://img.shields.io/conda/dn/conda-forge/cvxpy.svg?label=Conda%20downloads)\r\n[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=cvxpy_cvxpy&metric=coverage)](https://sonarcloud.io/summary/new_code?id=cvxpy_cvxpy)\r\n[![Benchmarks](http://img.shields.io/badge/benchmarked%20by-asv-blue.svg?style=flat)](https://cvxpy.github.io/benchmarks/)\r\n[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/cvxpy/cvxpy/badge)](https://api.securityscorecards.dev/projects/github.com/cvxpy/cvxpy)\r\n\r\n**The CVXPY documentation is at [cvxpy.org](http://www.cvxpy.org/).**\r\n\r\n*We are building a CVXPY community on [Discord](https://discord.gg/4urRQeGBCr). Join the conversation! For issues and long-form discussions, use [Github Issues](https://github.com/cvxpy/cvxpy/issues) and [Github Discussions](https://github.com/cvxpy/cvxpy/discussions).*\r\n\r\n**Contents**\r\n- [Installation](#installation)\r\n- [Getting started](#getting-started)\r\n- [Issues](#issues)\r\n- [Community](#community)\r\n- [Contributing](#contributing)\r\n- [Team](#team)\r\n- [Citing](#citing)\r\n\r\n\r\nCVXPY is a Python-embedded modeling language for convex optimization problems. It allows you to express your problem in a natural way that follows the math, rather than in the restrictive standard form required by solvers.\r\n\r\nFor example, the following code solves a least-squares problem where the variable is constrained by lower and upper bounds:\r\n\r\n```python3\r\nimport cvxpy as cp\r\nimport numpy\r\n\r\n# Problem data.\r\nm = 30\r\nn = 20\r\nnumpy.random.seed(1)\r\nA = numpy.random.randn(m, n)\r\nb = numpy.random.randn(m)\r\n\r\n# Construct the problem.\r\nx = cp.Variable(n)\r\nobjective = cp.Minimize(cp.sum_squares(A @ x - b))\r\nconstraints = [0 <= x, x <= 1]\r\nprob = cp.Problem(objective, constraints)\r\n\r\n# The optimal objective is returned by prob.solve().\r\nresult = prob.solve()\r\n# The optimal value for x is stored in x.value.\r\nprint(x.value)\r\n# The optimal Lagrange multiplier for a constraint\r\n# is stored in constraint.dual_value.\r\nprint(constraints[0].dual_value)\r\n```\r\n\r\nWith CVXPY, you can model\r\n* convex optimization problems,\r\n* mixed-integer convex optimization problems,\r\n* geometric programs, and\r\n* quasiconvex programs.\r\n\r\nCVXPY is not a solver. It relies upon the open source solvers\r\n[ECOS](http://github.com/ifa-ethz/ecos), [SCS](https://github.com/bodono/scs-python),\r\nand [OSQP](https://github.com/oxfordcontrol/osqp). Additional solvers are\r\n[available](https://www.cvxpy.org/tutorial/advanced/index.html#choosing-a-solver),\r\nbut must be installed separately.\r\n\r\nCVXPY began as a Stanford University research project. It is now developed by\r\nmany people, across many institutions and countries.\r\n\r\n\r\n## Installation\r\nCVXPY is available on PyPI, and can be installed with\r\n```\r\npip install cvxpy\r\n```\r\n\r\nCVXPY can also be installed with conda, using\r\n```\r\nconda install -c conda-forge cvxpy\r\n```\r\n\r\nCVXPY has the following dependencies:\r\n\r\n- Python >= 3.8\r\n- Clarabel >= 0.5.0\r\n- OSQP >= 0.6.2\r\n- ECOS >= 2\r\n- SCS >= 3.0\r\n- NumPy >= 1.15\r\n- SciPy >= 1.1.0\r\n\r\nFor detailed instructions, see the [installation\r\nguide](https://www.cvxpy.org/install/index.html).\r\n\r\n## Getting started\r\nTo get started with CVXPY, check out the following:\r\n* [official CVXPY tutorial](https://www.cvxpy.org/tutorial/index.html)\r\n* [example library](https://www.cvxpy.org/examples/index.html)\r\n* [API reference](https://www.cvxpy.org/api_reference/cvxpy.html)\r\n\r\n## Issues\r\nWe encourage you to report issues using the [Github tracker](https://github.com/cvxpy/cvxpy/issues). We welcome all kinds of issues, especially those related to correctness, documentation, performance, and feature requests.\r\n\r\nFor basic usage questions (e.g., \"Why isn't my problem DCP?\"), please use [StackOverflow](https://stackoverflow.com/questions/tagged/cvxpy) instead.\r\n\r\n## Community\r\nThe CVXPY community consists of researchers, data scientists, software engineers, and students from all over the world. We welcome you to join us!\r\n\r\n* To chat with the CVXPY community in real-time, join us on [Discord](https://discord.gg/4urRQeGBCr).\r\n* To have longer, in-depth discussions with the CVXPY community, use [Github Discussions](https://github.com/cvxpy/cvxpy/discussions).\r\n* To share feature requests and bug reports, use [Github Issues](https://github.com/cvxpy/cvxpy/issues).\r\n\r\nPlease be respectful in your communications with the CVXPY community, and make sure to abide by our [code of conduct](https://github.com/cvxpy/cvxpy/blob/master/CODE_OF_CONDUCT.md).\r\n\r\n## Contributing\r\nWe appreciate all contributions. You don't need to be an expert in convex\r\noptimization to help out.\r\n\r\nYou should first\r\ninstall [CVXPY from source](https://www.cvxpy.org/install/index.html#install-from-source).\r\nHere are some simple ways to start contributing immediately:\r\n* Read the CVXPY source code and improve the documentation, or address TODOs\r\n* Enhance the [website documentation](https://github.com/cvxpy/cvxpy/tree/master/doc)\r\n* Browse the [issue tracker](https://github.com/cvxpy/cvxpy/issues), and look for issues tagged as \"help wanted\"\r\n* Polish the [example library](https://github.com/cvxpy/cvxpy/tree/master/examples)\r\n* Add a [benchmark](https://github.com/cvxpy/cvxpy/tree/master/cvxpy/tests/test_benchmarks.py)\r\n\r\nIf you'd like to add a new example to our library, or implement a new feature,\r\nplease get in touch with us first to make sure that your priorities align with\r\nours. \r\n\r\nContributions should be submitted as [pull requests](https://github.com/cvxpy/cvxpy/pulls).\r\nA member of the CVXPY development team will review the pull request and guide\r\nyou through the contributing process.\r\n\r\nBefore starting work on your contribution, please read the [contributing guide](https://github.com/cvxpy/cvxpy/blob/master/CONTRIBUTING.md).\r\n\r\n## Team\r\nCVXPY is a community project, built from the contributions of many\r\nresearchers and engineers.\r\n\r\nCVXPY is developed and maintained by [Steven\r\nDiamond](https://stevendiamond.me/), [Akshay\r\nAgrawal](https://akshayagrawal.com), [Riley Murray](https://rileyjmurray.wordpress.com/), \r\n[Philipp Schiele](https://www.philippschiele.com/),\r\nand [Bartolomeo Stellato](https://stellato.io/), with many others contributing\r\nsignificantly. A non-exhaustive list of people who have shaped CVXPY over the\r\nyears includes Stephen Boyd, Eric Chu, Robin Verschueren, Michael Sommerauer,\r\nJaehyun Park, Enzo Busseti, AJ Friend, Judson Wilson, and Chris Dembia.\r\n\r\nFor more information about the team and our processes, see our [governance document](https://github.com/cvxpy/org/blob/main/governance.md).\r\n\r\n## Citing\r\nIf you use CVXPY for academic work, we encourage you to [cite our papers](https://www.cvxpy.org/citing/index.html). If you use CVXPY in industry, we'd love to hear from you as well, on Discord or over email.\r\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "A domain-specific language for modeling convex optimization problems in Python.",
    "version": "1.4.3",
    "project_urls": {
        "Homepage": "https://github.com/cvxpy/cvxpy"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "807733ddaba54e7f958623542f6f3c6eb1871a212113457828c9b503bab61eb5",
                "md5": "23516aea2cccded04a0876e212fa12f9",
                "sha256": "f4dc744a6f38328b0511cd57cfd81a517c0568d3b6e994d6dda3f309a1ce47cf"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "23516aea2cccded04a0876e212fa12f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1418580,
            "upload_time": "2024-04-16T08:04:17",
            "upload_time_iso_8601": "2024-04-16T08:04:17.901403Z",
            "url": "https://files.pythonhosted.org/packages/80/77/33ddaba54e7f958623542f6f3c6eb1871a212113457828c9b503bab61eb5/cvxpy-1.4.3-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44d8b9f6ccbd1e7fb3f41209d55230a6e1584cdec1a6807bf838f082a961e3eb",
                "md5": "f8d6bc3e063d20a5e46062eab0a0262a",
                "sha256": "8c32199a26d889e74d70bc39f0369680cb7d2625e7c47c42483ca166d37122c2"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8d6bc3e063d20a5e46062eab0a0262a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1091466,
            "upload_time": "2024-04-16T08:04:20",
            "upload_time_iso_8601": "2024-04-16T08:04:20.504803Z",
            "url": "https://files.pythonhosted.org/packages/44/d8/b9f6ccbd1e7fb3f41209d55230a6e1584cdec1a6807bf838f082a961e3eb/cvxpy-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d80cafdc0246c38f6ff669f65a0d2c132273f4db0c6b85fb84f0681423a3f841",
                "md5": "2f70555484f02560c986bac8742e205c",
                "sha256": "4a4fed75c1714409fd5125269935a68bc3f57c522623a5d7eab68623a19f3a6f"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2f70555484f02560c986bac8742e205c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1149301,
            "upload_time": "2024-04-16T07:52:02",
            "upload_time_iso_8601": "2024-04-16T07:52:02.430347Z",
            "url": "https://files.pythonhosted.org/packages/d8/0c/afdc0246c38f6ff669f65a0d2c132273f4db0c6b85fb84f0681423a3f841/cvxpy-1.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67bfde3adf1343ae86c052d7d815114b95940f23706cb68a99306a60013341cf",
                "md5": "9265a2fe1c611d6ec6cd8275b0794e3e",
                "sha256": "8198e390490a0543caad428fc0d8a5c0914052c22630277d00bfdc7a770c4b11"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9265a2fe1c611d6ec6cd8275b0794e3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1173710,
            "upload_time": "2024-04-16T07:52:06",
            "upload_time_iso_8601": "2024-04-16T07:52:06.278868Z",
            "url": "https://files.pythonhosted.org/packages/67/bf/de3adf1343ae86c052d7d815114b95940f23706cb68a99306a60013341cf/cvxpy-1.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65fb4b1806e0c9ce6d923cc79caa298f9a2b83175feb17a20ef628e9aa1c4a0d",
                "md5": "82af670c7242e10c7b486362b7e08876",
                "sha256": "bea83a4a829d7197c307badbbe2f05d6e7aed85ed63badd800b89534b33b38de"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "82af670c7242e10c7b486362b7e08876",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1038350,
            "upload_time": "2024-04-16T07:47:35",
            "upload_time_iso_8601": "2024-04-16T07:47:35.554017Z",
            "url": "https://files.pythonhosted.org/packages/65/fb/4b1806e0c9ce6d923cc79caa298f9a2b83175feb17a20ef628e9aa1c4a0d/cvxpy-1.4.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d80639c63b6323a57d483f59b437a70d3cdac734d7c4ab21bca30f925dc4e3b0",
                "md5": "f3793a64653bb2b8f0b7d1d749bb6c4f",
                "sha256": "443313eca702750a7a2878e841de23cc5111085f4069e842d027ebc5c98c10ac"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f3793a64653bb2b8f0b7d1d749bb6c4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1421604,
            "upload_time": "2024-04-16T08:05:00",
            "upload_time_iso_8601": "2024-04-16T08:05:00.259276Z",
            "url": "https://files.pythonhosted.org/packages/d8/06/39c63b6323a57d483f59b437a70d3cdac734d7c4ab21bca30f925dc4e3b0/cvxpy-1.4.3-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0b4e8ae3d0f749518797fa41816d8dece1bdea204001740dc2cc1bc65beb735",
                "md5": "6afb764b0551ea781f563c7f0baf06e4",
                "sha256": "9ae3d4ec202dc446206d8c6eae83353827842dc0e232f4e4f0d588fb2d59705a"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6afb764b0551ea781f563c7f0baf06e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1092823,
            "upload_time": "2024-04-16T08:05:04",
            "upload_time_iso_8601": "2024-04-16T08:05:04.336238Z",
            "url": "https://files.pythonhosted.org/packages/f0/b4/e8ae3d0f749518797fa41816d8dece1bdea204001740dc2cc1bc65beb735/cvxpy-1.4.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04820324ea79103f3aff6b2c6fd16c5511f1ee5d3590fafec9ed80fa5e3c8607",
                "md5": "a224e0375298a1a258cdd7633653a069",
                "sha256": "0f8ee4d0d1ecb2e09e41a31192ea103c7c1f626204925fb7f6590d11471cb357"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a224e0375298a1a258cdd7633653a069",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1150701,
            "upload_time": "2024-04-16T07:52:18",
            "upload_time_iso_8601": "2024-04-16T07:52:18.346357Z",
            "url": "https://files.pythonhosted.org/packages/04/82/0324ea79103f3aff6b2c6fd16c5511f1ee5d3590fafec9ed80fa5e3c8607/cvxpy-1.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebc94def1eb1aa1ede26b268cd66360693d896aff46af7b59de61baf0d5354c3",
                "md5": "e49263124089161d0f76861e061230cc",
                "sha256": "aeb6f60608d4716ced43105cbeb0df2a787583f51bfbf9465fea5c435f8456ca"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e49263124089161d0f76861e061230cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1175192,
            "upload_time": "2024-04-16T07:52:22",
            "upload_time_iso_8601": "2024-04-16T07:52:22.063766Z",
            "url": "https://files.pythonhosted.org/packages/eb/c9/4def1eb1aa1ede26b268cd66360693d896aff46af7b59de61baf0d5354c3/cvxpy-1.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c3a35fb6ee249e25adaf28490db5549a7faf05e5ebc6a3b112bec42eb8aa262",
                "md5": "b7c067db2e3bc9a5d056d4244b412c50",
                "sha256": "243d0315140a7572cd4ec2e9bf13c1e407627d78dc5f9491abfa9adc64569268"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b7c067db2e3bc9a5d056d4244b412c50",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1039532,
            "upload_time": "2024-04-16T07:47:30",
            "upload_time_iso_8601": "2024-04-16T07:47:30.214565Z",
            "url": "https://files.pythonhosted.org/packages/7c/3a/35fb6ee249e25adaf28490db5549a7faf05e5ebc6a3b112bec42eb8aa262/cvxpy-1.4.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9ad5c8d884b09185eee69b50363114fda9a55d2b3776f1d037defb122d2c4ad",
                "md5": "0da9827f3e8db6d51bd689fe3331a4da",
                "sha256": "69ee039b43e425ffc0cb5581c2befee571bee2b007d5a119fa17695f908d861e"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "0da9827f3e8db6d51bd689fe3331a4da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1420030,
            "upload_time": "2024-04-16T08:05:08",
            "upload_time_iso_8601": "2024-04-16T08:05:08.051234Z",
            "url": "https://files.pythonhosted.org/packages/f9/ad/5c8d884b09185eee69b50363114fda9a55d2b3776f1d037defb122d2c4ad/cvxpy-1.4.3-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "265ae10ce8535b3d03b1b5ffb3075ea04ce89c13d035eef9918eafe6b5160b58",
                "md5": "a74d6cbc57757da4c9dec33dfb186424",
                "sha256": "502c590099a4faeee28247a3d139d618a94ec6d2986dc7cc0db2ac614660ddc5"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a74d6cbc57757da4c9dec33dfb186424",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1093125,
            "upload_time": "2024-04-16T08:05:10",
            "upload_time_iso_8601": "2024-04-16T08:05:10.163137Z",
            "url": "https://files.pythonhosted.org/packages/26/5a/e10ce8535b3d03b1b5ffb3075ea04ce89c13d035eef9918eafe6b5160b58/cvxpy-1.4.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d936b90428198835cd8e4a8ced7bf3cbaba489dd3e22bc1cd523d013e5457158",
                "md5": "3496ae189a10682369d58545fe30155d",
                "sha256": "57a803bb786ab43da0c0a4fbbb0b2438fd13a4b38b68f8f16474a214a78b0823"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3496ae189a10682369d58545fe30155d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1150638,
            "upload_time": "2024-04-16T07:52:51",
            "upload_time_iso_8601": "2024-04-16T07:52:51.765239Z",
            "url": "https://files.pythonhosted.org/packages/d9/36/b90428198835cd8e4a8ced7bf3cbaba489dd3e22bc1cd523d013e5457158/cvxpy-1.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9bf0df16a347991aafecc9ef53aa617284f470f9331a8be900b07c0cfcc8855",
                "md5": "ad613b503c74c9d6b4b65cbbc89c61d1",
                "sha256": "331cc160e66b7271b734b8ad0b65456d32445e00c397c35b7f2b105091ecfa84"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad613b503c74c9d6b4b65cbbc89c61d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1176257,
            "upload_time": "2024-04-16T07:52:53",
            "upload_time_iso_8601": "2024-04-16T07:52:53.312260Z",
            "url": "https://files.pythonhosted.org/packages/e9/bf/0df16a347991aafecc9ef53aa617284f470f9331a8be900b07c0cfcc8855/cvxpy-1.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1e51805fafc59c6aaec7c27c48207dd3faa7696ff6118d09ad074f64af5db64",
                "md5": "422b208b14298d69249d1f38acadee0a",
                "sha256": "4b4d46fd521b755a6abd57384b2355db28d7165a6d90118278ebd7553e4ba70b"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "422b208b14298d69249d1f38acadee0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1040129,
            "upload_time": "2024-04-16T07:48:19",
            "upload_time_iso_8601": "2024-04-16T07:48:19.886621Z",
            "url": "https://files.pythonhosted.org/packages/e1/e5/1805fafc59c6aaec7c27c48207dd3faa7696ff6118d09ad074f64af5db64/cvxpy-1.4.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44c0a128babf518dd5801af755df8503f2653460b8916df60fc8baec82354ffd",
                "md5": "3ad840bb92c9f56436c62bf0861fcd56",
                "sha256": "80dde991c27d4e3b91597a00b85d460a9db03b484ba6a3b940647e324ad30110"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "3ad840bb92c9f56436c62bf0861fcd56",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1419048,
            "upload_time": "2024-04-16T08:09:02",
            "upload_time_iso_8601": "2024-04-16T08:09:02.982593Z",
            "url": "https://files.pythonhosted.org/packages/44/c0/a128babf518dd5801af755df8503f2653460b8916df60fc8baec82354ffd/cvxpy-1.4.3-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e78e55021382c8933a9d9f8a6d7490f21d77c2479cbd7197a75392930db01a6",
                "md5": "600fde2157fbabca7eabfb81cea88d1b",
                "sha256": "06091d3278c65ef996306b5a85a7848055331ef390262f2cf354811f43ddea68"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "600fde2157fbabca7eabfb81cea88d1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1091724,
            "upload_time": "2024-04-16T08:09:05",
            "upload_time_iso_8601": "2024-04-16T08:09:05.903113Z",
            "url": "https://files.pythonhosted.org/packages/2e/78/e55021382c8933a9d9f8a6d7490f21d77c2479cbd7197a75392930db01a6/cvxpy-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb6526920138e1d4076f254f97f0b007eb74d7201d8795eda1cf8124a50fe0b6",
                "md5": "e813e2be7f142c8baa1b83337644ccae",
                "sha256": "e16bf04f75266c61ee469a0a3b1364c1e1e87d47dc47fedcdc43435c74dd97f3"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e813e2be7f142c8baa1b83337644ccae",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1148574,
            "upload_time": "2024-04-16T07:52:11",
            "upload_time_iso_8601": "2024-04-16T07:52:11.321139Z",
            "url": "https://files.pythonhosted.org/packages/bb/65/26920138e1d4076f254f97f0b007eb74d7201d8795eda1cf8124a50fe0b6/cvxpy-1.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8f4d4b1ed4e7f5b07788b5fabfbd2b0f3ad847bcfc958535761ad40e6440683",
                "md5": "fa3fd377439d046394de9028379277b9",
                "sha256": "14882db05fa36cab94262b7e9574c43f87301ab025daefdabaa7659f2623e731"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa3fd377439d046394de9028379277b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1172050,
            "upload_time": "2024-04-16T07:52:13",
            "upload_time_iso_8601": "2024-04-16T07:52:13.207470Z",
            "url": "https://files.pythonhosted.org/packages/e8/f4/d4b1ed4e7f5b07788b5fabfbd2b0f3ad847bcfc958535761ad40e6440683/cvxpy-1.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe8f68a88fb29cf1ceeaa692485f874be8f8eb43b35d2e8bf6ab8c1b12bf84b0",
                "md5": "010c4a258b242fdf772664fe706445a6",
                "sha256": "f094da24c46e6b0b936369463d483755eafbb13fd6a8d8d1ca962987d02eb014"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "010c4a258b242fdf772664fe706445a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1038490,
            "upload_time": "2024-04-16T07:48:50",
            "upload_time_iso_8601": "2024-04-16T07:48:50.846428Z",
            "url": "https://files.pythonhosted.org/packages/fe/8f/68a88fb29cf1ceeaa692485f874be8f8eb43b35d2e8bf6ab8c1b12bf84b0/cvxpy-1.4.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96c6b3bfadb46b791adeea835e4e177b6b0ec5b0581887b114fe3afabf284d64",
                "md5": "b23f9fe557ae2997346c416cecf4d67d",
                "sha256": "b8d652877989ddc28099a367fb7a4bb771d54895e3e1167c835ee3f91606bd13"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "b23f9fe557ae2997346c416cecf4d67d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1418805,
            "upload_time": "2024-04-16T08:10:26",
            "upload_time_iso_8601": "2024-04-16T08:10:26.568022Z",
            "url": "https://files.pythonhosted.org/packages/96/c6/b3bfadb46b791adeea835e4e177b6b0ec5b0581887b114fe3afabf284d64/cvxpy-1.4.3-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4550f28f45a75e25811d433a34d1d6c88715961041963750fc1cab45f9583596",
                "md5": "27eb3e7f70e8fe97a9ccd63b144f8794",
                "sha256": "25d3ac5953effaa5c72ab8d261dbe94d8a1947de0324a7e30053ef3b0cee853e"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27eb3e7f70e8fe97a9ccd63b144f8794",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1091574,
            "upload_time": "2024-04-16T08:10:28",
            "upload_time_iso_8601": "2024-04-16T08:10:28.325094Z",
            "url": "https://files.pythonhosted.org/packages/45/50/f28f45a75e25811d433a34d1d6c88715961041963750fc1cab45f9583596/cvxpy-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11690c368c8e6ced459d8ea43c5ece83435bc3d8b2a7d429b1757a5eca45d6c6",
                "md5": "0ad8fc0981832bc6cf0305aea5e6b240",
                "sha256": "3d612c7bdff73a730c11d6094540705ca9c8312d9ebb6af75c09337123dd66b2"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0ad8fc0981832bc6cf0305aea5e6b240",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1149442,
            "upload_time": "2024-04-16T07:52:35",
            "upload_time_iso_8601": "2024-04-16T07:52:35.955454Z",
            "url": "https://files.pythonhosted.org/packages/11/69/0c368c8e6ced459d8ea43c5ece83435bc3d8b2a7d429b1757a5eca45d6c6/cvxpy-1.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c2c707bdd89a82e7128833c3ac6f5af57204c2bead86a3ef5f99f65cfd9b109",
                "md5": "8d425563de2e45d361ccd0156ba33d15",
                "sha256": "1475fd4c4778067d5ec03b35fe714d6a4074e1e213262a8bddbd9b638e004419"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d425563de2e45d361ccd0156ba33d15",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1173890,
            "upload_time": "2024-04-16T07:52:38",
            "upload_time_iso_8601": "2024-04-16T07:52:38.166666Z",
            "url": "https://files.pythonhosted.org/packages/6c/2c/707bdd89a82e7128833c3ac6f5af57204c2bead86a3ef5f99f65cfd9b109/cvxpy-1.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ed63c7621cf1eda706d9fe3636e2d5cd35200ee0a258566ad3805ef3356a694",
                "md5": "521f61f9e5cd1a1d7fbab92c920785dd",
                "sha256": "8d30081ef5e906cc6352fc6760f462a6dfcb5150a5a26e21da942b6ae0759293"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "521f61f9e5cd1a1d7fbab92c920785dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1038556,
            "upload_time": "2024-04-16T07:49:14",
            "upload_time_iso_8601": "2024-04-16T07:49:14.191876Z",
            "url": "https://files.pythonhosted.org/packages/4e/d6/3c7621cf1eda706d9fe3636e2d5cd35200ee0a258566ad3805ef3356a694/cvxpy-1.4.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae8232f19cb7af36ff1b6cad1f4d5437798d1f09ae394b38bac8c8ba8cd4a652",
                "md5": "d35ed6bb591bfaf2163c8e36d0cb6622",
                "sha256": "b1b078c8c05923ad128e7d814b0be1c337ac05262a78b757a8e6f957648ad953"
            },
            "downloads": -1,
            "filename": "cvxpy-1.4.3.tar.gz",
            "has_sig": false,
            "md5_digest": "d35ed6bb591bfaf2163c8e36d0cb6622",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1571211,
            "upload_time": "2024-04-16T08:09:08",
            "upload_time_iso_8601": "2024-04-16T08:09:08.461446Z",
            "url": "https://files.pythonhosted.org/packages/ae/82/32f19cb7af36ff1b6cad1f4d5437798d1f09ae394b38bac8c8ba8cd4a652/cvxpy-1.4.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-16 08:09:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cvxpy",
    "github_project": "cvxpy",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "lcname": "cvxpy"
}
        
Elapsed time: 0.27663s