FICO® Xpress Python interface
==================================
Create and solve Mathematical Optimization problems like the following:
```
min x1^2 + 2 x2
s.t. x1 + 3 x2 >= 4
-10 <= x1 <= 10
x1 in Z
x2 >= 0
```
with just a few lines of code:
```python
import xpress as xp
p = xp.problem(name='myexample') # problem name (optional)
x1 = p.addVariable(vartype=xp.integer, name='x1', lb=-10, ub=10)
x2 = p.addVariable(name='x2')
p.setObjective(x1**2 + 2*x2) # objective function
p.addConstraint(x1 + 3*x2 >= 4) # one or more constraints
p.optimize()
print ("solution: {0} = {1}; {2} = {3}".format (x1.name, p.getSolution(x1), x2.name, p.getSolution(x2)))
```
With the `xpress` module, one can create and solve optimization problems using the Python® programming language and the [FICO Xpress](http://www.fico.com/en/products/fico-xpress-optimization-suite) Optimizer library. The module allows for
- Creating, handling, solving, and querying optimization problems;
- Using Python numerical libraries such as NumPy to create optimization problems;
- Setting and getting the value of parameters (controls and attributes) of a problem; and
- Using Python functions as callbacks for the Xpress Optimizer and the Xpress Nonlinear solver.
The Xpress Python interface allows for creating, handling, and solving all problems that can be solved with the FICO-Xpress library: Linear Programming (LP), Quadratic Programming (QP), Second-Order Conic Programming (SOCP), and their mixed-integer extensions: MILP, MIQP, MIQCQP, MISOCP, together with general nonlinear and mixed-integer nonlinear.
Installation
------------
The Xpress Python interface can be downloaded from [PyPI](https://www.pypi.org) and from [Anaconda](https://www.anaconda.com). Run
```
pip install xpress
```
to install from PyPI, and
```
conda install -c fico-xpress xpress
```
to install from the Conda repository.
The downloaded package contains: a folder with several examples of usages of the module, with varying degrees of difficulty; a directory `license` containing the [Xpress Community License](http://subscribe.fico.com/xpress-optimization-community-license); and a directory `doc` with the manual in PDF version---the full HTML documentation for the Xpress Optimizer's library, including the Python interface with its example, is also available at the [FICO Xpress Optimization Help](http://www.fico.com/fico-xpress-optimization/docs/latest/solver/GUID-ACD7E60C-7852-36B7-A78A-CED0EA291CDD.html) page.
If you do not have any FICO Xpress license, the community license will be recognized by the module and no further action is needed. If you do have a license, for instance located in `/users/johndoe/xpauth.xpr`, make sure to set the global environment variable `XPRESS` to point to the folder containing the `xpauth.xpr` file, i.e. `XPRESS=/user/johndoe`.
For a list of supported versions and their end of support dates, please see https://www.fico.com/en/product-support/support-level-software-release. Customers can download selected older versions of the package from the Xpress client area site by clicking on the Archived Downloads link.
Licensing
---------
The Xpress software is governed by the [Xpress Shrinkwrap License Agreement](https://community.fico.com/s/contentdocument/06980000002h0i5AAA). When downloading the package, you accept the license terms. A copy of the Xpress Shrinkwrap License is stored in the file `LICENSE.txt` in the `dist-info` directory of the Xpress module.
This package includes the community license of Xpress, see the [licensing options overview](https://community.fico.com/s/fico-xpress-optimization-licensing-optio) for more details.
Miscellaneous
-------------
"Python" is a registered trademark of the Python Software Foundation. "FICO" is a registered trademark of Fair Isaac Corporation in the United States and may be a registered trademark of Fair Isaac Corporation in other countries. Other product and company names herein may be trademarks of their respective owners.
Copyright (C) Fair Isaac 1983-2024
Raw data
{
"_id": null,
"home_page": "https://www.fico.com/en/products/fico-xpress-optimization",
"name": "xpress",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "optimization mip minlp xpress",
"author": "FICO Xpress Optimizer dev. team",
"author_email": "support@fico.com",
"download_url": null,
"platform": "any",
"description": "FICO® Xpress Python interface\n==================================\n\nCreate and solve Mathematical Optimization problems like the following:\n```\nmin x1^2 + 2 x2\ns.t. x1 + 3 x2 >= 4\n -10 <= x1 <= 10\n x1 in Z\n x2 >= 0\n```\nwith just a few lines of code:\n```python\nimport xpress as xp\np = xp.problem(name='myexample') # problem name (optional)\nx1 = p.addVariable(vartype=xp.integer, name='x1', lb=-10, ub=10)\nx2 = p.addVariable(name='x2')\np.setObjective(x1**2 + 2*x2) # objective function\np.addConstraint(x1 + 3*x2 >= 4) # one or more constraints\np.optimize()\nprint (\"solution: {0} = {1}; {2} = {3}\".format (x1.name, p.getSolution(x1), x2.name, p.getSolution(x2)))\n```\nWith the `xpress` module, one can create and solve optimization problems using the Python® programming language and the [FICO Xpress](http://www.fico.com/en/products/fico-xpress-optimization-suite) Optimizer library. The module allows for\n\n- Creating, handling, solving, and querying optimization problems;\n- Using Python numerical libraries such as NumPy to create optimization problems;\n- Setting and getting the value of parameters (controls and attributes) of a problem; and\n- Using Python functions as callbacks for the Xpress Optimizer and the Xpress Nonlinear solver.\n\nThe Xpress Python interface allows for creating, handling, and solving all problems that can be solved with the FICO-Xpress library: Linear Programming (LP), Quadratic Programming (QP), Second-Order Conic Programming (SOCP), and their mixed-integer extensions: MILP, MIQP, MIQCQP, MISOCP, together with general nonlinear and mixed-integer nonlinear.\n\nInstallation\n------------\n\nThe Xpress Python interface can be downloaded from [PyPI](https://www.pypi.org) and from [Anaconda](https://www.anaconda.com). Run\n```\npip install xpress\n```\n\nto install from PyPI, and\n```\nconda install -c fico-xpress xpress\n```\n\nto install from the Conda repository.\n\nThe downloaded package contains: a folder with several examples of usages of the module, with varying degrees of difficulty; a directory `license` containing the [Xpress Community License](http://subscribe.fico.com/xpress-optimization-community-license); and a directory `doc` with the manual in PDF version---the full HTML documentation for the Xpress Optimizer's library, including the Python interface with its example, is also available at the [FICO Xpress Optimization Help](http://www.fico.com/fico-xpress-optimization/docs/latest/solver/GUID-ACD7E60C-7852-36B7-A78A-CED0EA291CDD.html) page.\n\nIf you do not have any FICO Xpress license, the community license will be recognized by the module and no further action is needed. If you do have a license, for instance located in `/users/johndoe/xpauth.xpr`, make sure to set the global environment variable `XPRESS` to point to the folder containing the `xpauth.xpr` file, i.e. `XPRESS=/user/johndoe`.\n\nFor a list of supported versions and their end of support dates, please see https://www.fico.com/en/product-support/support-level-software-release. Customers can download selected older versions of the package from the Xpress client area site by clicking on the Archived Downloads link.\n\nLicensing\n---------\n\nThe Xpress software is governed by the [Xpress Shrinkwrap License Agreement](https://community.fico.com/s/contentdocument/06980000002h0i5AAA). When downloading the package, you accept the license terms. A copy of the Xpress Shrinkwrap License is stored in the file `LICENSE.txt` in the `dist-info` directory of the Xpress module.\n\nThis package includes the community license of Xpress, see the [licensing options overview](https://community.fico.com/s/fico-xpress-optimization-licensing-optio) for more details.\n\n\nMiscellaneous\n-------------\n\n\"Python\" is a registered trademark of the Python Software Foundation. \"FICO\" is a registered trademark of Fair Isaac Corporation in the United States and may be a registered trademark of Fair Isaac Corporation in other countries. Other product and company names herein may be trademarks of their respective owners.\n\nCopyright (C) Fair Isaac 1983-2024\n",
"bugtrack_url": null,
"license": null,
"summary": "FICO Xpress Optimizer Python interface",
"version": "9.5.1",
"project_urls": {
"Homepage": "https://www.fico.com/en/products/fico-xpress-optimization"
},
"split_keywords": [
"optimization",
"mip",
"minlp",
"xpress"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "6e82b59f69110ecad315daa5cdfaf049a940652a014eea96a5fd9b46f171cd3c",
"md5": "fd11d783cb4e7cc0f1d9adc93f6e046b",
"sha256": "03950e85326166e1fdb520d455200e12a646faddbf6206ffddb557a537fc2c46"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp310-cp310-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "fd11d783cb4e7cc0f1d9adc93f6e046b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2360598,
"upload_time": "2024-12-06T14:03:01",
"upload_time_iso_8601": "2024-12-06T14:03:01.163228Z",
"url": "https://files.pythonhosted.org/packages/6e/82/b59f69110ecad315daa5cdfaf049a940652a014eea96a5fd9b46f171cd3c/xpress-9.5.1-cp310-cp310-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5caf4391893de32d602e52940994a02d91bdfe72326dbf845c6b3b66f815ab80",
"md5": "50cd7a27bfc90dd25d310d2e8d906838",
"sha256": "0154668fee25a5b705e568aecc62b9f4f2f602dc4c8028463fcafdb66db80218"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "50cd7a27bfc90dd25d310d2e8d906838",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2291696,
"upload_time": "2024-12-06T14:03:19",
"upload_time_iso_8601": "2024-12-06T14:03:19.550969Z",
"url": "https://files.pythonhosted.org/packages/5c/af/4391893de32d602e52940994a02d91bdfe72326dbf845c6b3b66f815ab80/xpress-9.5.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "de380b756cd6b709f3189f252a85d889a725f6628d81f37eadccf16dee1eac0e",
"md5": "1ece1474f5ad2a38b2dc222dd29d4244",
"sha256": "fcd3b7ffcb93f864178767f1370893d3a72028b22f978261b1377703624b7a3b"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp310-cp310-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "1ece1474f5ad2a38b2dc222dd29d4244",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2365084,
"upload_time": "2024-12-06T13:56:31",
"upload_time_iso_8601": "2024-12-06T13:56:31.181837Z",
"url": "https://files.pythonhosted.org/packages/de/38/0b756cd6b709f3189f252a85d889a725f6628d81f37eadccf16dee1eac0e/xpress-9.5.1-cp310-cp310-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c310cbe2e23a465c14cfe7782bb20777b660e274d08655402c49c43f05412a9",
"md5": "18bb4c6047bd3affb1416e0fb75e1bbb",
"sha256": "76080e6169e3663f3f22dcfadd4161c3db9a85be1d8dd5e5c7a08c3c81ee0f7d"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp310-cp310-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "18bb4c6047bd3affb1416e0fb75e1bbb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2336496,
"upload_time": "2024-12-06T13:59:09",
"upload_time_iso_8601": "2024-12-06T13:59:09.019736Z",
"url": "https://files.pythonhosted.org/packages/2c/31/0cbe2e23a465c14cfe7782bb20777b660e274d08655402c49c43f05412a9/xpress-9.5.1-cp310-cp310-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a15d9a5b8287e69ed72aa05b6b6a4bd5109a653974e64e6e75b58518b6861e32",
"md5": "b07b49c4bea1fbe69ae43744624caa17",
"sha256": "72d6d6c47a5a542f1717a4e7a71913c9492e5e0e84664ce39007849c1ee1543e"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "b07b49c4bea1fbe69ae43744624caa17",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2258579,
"upload_time": "2024-12-06T14:00:59",
"upload_time_iso_8601": "2024-12-06T14:00:59.955669Z",
"url": "https://files.pythonhosted.org/packages/a1/5d/9a5b8287e69ed72aa05b6b6a4bd5109a653974e64e6e75b58518b6861e32/xpress-9.5.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd587461782890da3cc409042e3cf8b9a45f43e57cac2256ec068505a174d167",
"md5": "9fe6888ca08cc513a7c24996aeea0d78",
"sha256": "2bb7c9da7c0506d2edb7e9799c5c57277023a780fa26a894344e629796c1ba7f"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp311-cp311-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "9fe6888ca08cc513a7c24996aeea0d78",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2360606,
"upload_time": "2024-12-06T14:02:51",
"upload_time_iso_8601": "2024-12-06T14:02:51.612862Z",
"url": "https://files.pythonhosted.org/packages/fd/58/7461782890da3cc409042e3cf8b9a45f43e57cac2256ec068505a174d167/xpress-9.5.1-cp311-cp311-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7453aec27a47a8500d745e46c55b38c6b0daf0cc27a3c0a406705de3cd6b1d01",
"md5": "d876ba3930635c55b59d986c4d560c13",
"sha256": "67db1b6f4abd991d2b99b1bc4885d2dc68ec0e741cd6887066079c372c392f50"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d876ba3930635c55b59d986c4d560c13",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2291744,
"upload_time": "2024-12-06T14:03:10",
"upload_time_iso_8601": "2024-12-06T14:03:10.608026Z",
"url": "https://files.pythonhosted.org/packages/74/53/aec27a47a8500d745e46c55b38c6b0daf0cc27a3c0a406705de3cd6b1d01/xpress-9.5.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "170f83a4eec4b15548b93d4a360282d613981143d74d6520af4380d7e301cf84",
"md5": "8b3184823025c8a4d31f0f84e7dcc374",
"sha256": "6af4833fce7c4caa86d9a19237425b3795e0c3bd0d9d386ba5d81e660ded20b1"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp311-cp311-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "8b3184823025c8a4d31f0f84e7dcc374",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2365410,
"upload_time": "2024-12-06T13:56:21",
"upload_time_iso_8601": "2024-12-06T13:56:21.239123Z",
"url": "https://files.pythonhosted.org/packages/17/0f/83a4eec4b15548b93d4a360282d613981143d74d6520af4380d7e301cf84/xpress-9.5.1-cp311-cp311-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ed6674a531a1e81b7ada0a62631f7cbb55784b7ca324cf2e29dd5e238bb31bd",
"md5": "f87efe441aa868327ba32771b24064a1",
"sha256": "7cc066a69c06b04b2ae24633736ab59fe860c25086f3884a6c7bca34da182afa"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp311-cp311-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f87efe441aa868327ba32771b24064a1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2336645,
"upload_time": "2024-12-06T13:58:59",
"upload_time_iso_8601": "2024-12-06T13:58:59.451192Z",
"url": "https://files.pythonhosted.org/packages/8e/d6/674a531a1e81b7ada0a62631f7cbb55784b7ca324cf2e29dd5e238bb31bd/xpress-9.5.1-cp311-cp311-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6ffd7113f700da4ab4b8c7fa16c79718a953506014e71ce0ed648acd68f0ecf",
"md5": "427a0b426d6313fc1428fa0b39a916f2",
"sha256": "53e33688b0b94e91992b4537deff2e2a8525d0a57cc8065c0676e7331130a020"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "427a0b426d6313fc1428fa0b39a916f2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2258951,
"upload_time": "2024-12-06T14:00:50",
"upload_time_iso_8601": "2024-12-06T14:00:50.336263Z",
"url": "https://files.pythonhosted.org/packages/a6/ff/d7113f700da4ab4b8c7fa16c79718a953506014e71ce0ed648acd68f0ecf/xpress-9.5.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "35051f7cb2e364687d77ac5a65d9398d3a63f019f9f38fd8c833515bcd6676a0",
"md5": "bf66720a568c0c23f204ec4468700eba",
"sha256": "540b18f0c1a9fbdaf46c3f7b8d10856c9cc4a85e0718f15811ee42e7f98f18fe"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "bf66720a568c0c23f204ec4468700eba",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2361331,
"upload_time": "2024-12-06T14:02:41",
"upload_time_iso_8601": "2024-12-06T14:02:41.964741Z",
"url": "https://files.pythonhosted.org/packages/35/05/1f7cb2e364687d77ac5a65d9398d3a63f019f9f38fd8c833515bcd6676a0/xpress-9.5.1-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab1a031eb750313ffd53f4725989fbde20feb07453f5214c8aee41a1914fe339",
"md5": "3c241f7299fd26dd7e5116eb3e07a29d",
"sha256": "c4a60c3a4bc74735ca956557fd6a6a8e92d5df71cfb40608e9eeba284fb37700"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3c241f7299fd26dd7e5116eb3e07a29d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2291733,
"upload_time": "2024-12-06T14:02:59",
"upload_time_iso_8601": "2024-12-06T14:02:59.935873Z",
"url": "https://files.pythonhosted.org/packages/ab/1a/031eb750313ffd53f4725989fbde20feb07453f5214c8aee41a1914fe339/xpress-9.5.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "749658d3a6445071bbcf86d67a2b4a164d53d3f07559817fe87bf88c7a7b2ac4",
"md5": "04ef5d7f5e40d55f61e0cb753aff13f2",
"sha256": "e473f90cd53acdf899b1ca3986e7f93477afe2e69a7acf8b368b09849802afbc"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp312-cp312-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "04ef5d7f5e40d55f61e0cb753aff13f2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2368411,
"upload_time": "2024-12-06T13:56:10",
"upload_time_iso_8601": "2024-12-06T13:56:10.899596Z",
"url": "https://files.pythonhosted.org/packages/74/96/58d3a6445071bbcf86d67a2b4a164d53d3f07559817fe87bf88c7a7b2ac4/xpress-9.5.1-cp312-cp312-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1015d2a1bccd8a4196483d6531eb63b2cf72a1d761148d578dde5648c4b65f9",
"md5": "2831463dda4ba032f93fe241e0ddfb48",
"sha256": "e0970fb9ffdedc2dfb03fc7b9350157ee34af082e23fcb0af102d31233df56cb"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp312-cp312-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2831463dda4ba032f93fe241e0ddfb48",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2342286,
"upload_time": "2024-12-06T13:58:49",
"upload_time_iso_8601": "2024-12-06T13:58:49.900986Z",
"url": "https://files.pythonhosted.org/packages/e1/01/5d2a1bccd8a4196483d6531eb63b2cf72a1d761148d578dde5648c4b65f9/xpress-9.5.1-cp312-cp312-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "735a7d4bc1ea7fb25a7122e03b1e8b8e544181b3cc3d1c74d4062e94976b7581",
"md5": "a26c1e5602e402bcfb428d6ce8decb1b",
"sha256": "03b6797db481d1c0b5d5ce31abdcf217f78fd73610165505a8052cc6502003f3"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "a26c1e5602e402bcfb428d6ce8decb1b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2261048,
"upload_time": "2024-12-06T14:00:39",
"upload_time_iso_8601": "2024-12-06T14:00:39.877175Z",
"url": "https://files.pythonhosted.org/packages/73/5a/7d4bc1ea7fb25a7122e03b1e8b8e544181b3cc3d1c74d4062e94976b7581/xpress-9.5.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0acaa3d33e5e9a57507bf9614482022e8b5e2cf9e38a3e6173cd4bf58184216c",
"md5": "97d549724c5f3cc7dcf01a34c9275d3b",
"sha256": "36408e1d3a32fab592e86f28a5e59ea8a1664fd76a1e3afe1b4282df00c6da89"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp38-cp38-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "97d549724c5f3cc7dcf01a34c9275d3b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2360566,
"upload_time": "2024-12-06T14:03:22",
"upload_time_iso_8601": "2024-12-06T14:03:22.091006Z",
"url": "https://files.pythonhosted.org/packages/0a/ca/a3d33e5e9a57507bf9614482022e8b5e2cf9e38a3e6173cd4bf58184216c/xpress-9.5.1-cp38-cp38-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1acf2a9dec765c6e500af5d28e552ee02b99419afb50ed0433677514cbf28b20",
"md5": "479517e7a0d086df9054fca4591d93d6",
"sha256": "ef929e6178d96b9705f407e54cdd6d50d6a02ed7f799c9c4a8b0176314d0f0f9"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "479517e7a0d086df9054fca4591d93d6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2291678,
"upload_time": "2024-12-06T14:03:38",
"upload_time_iso_8601": "2024-12-06T14:03:38.983117Z",
"url": "https://files.pythonhosted.org/packages/1a/cf/2a9dec765c6e500af5d28e552ee02b99419afb50ed0433677514cbf28b20/xpress-9.5.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86b3eb8f1eed7255261a0ac02dcc962ca130cb58fbe9f6e37562400b7640eea0",
"md5": "7c821498e18bb36b1990e1c7618d3d9c",
"sha256": "346010f118537697c43c679322125ab4b86aa084ec5583d5fff34bb2c320ede5"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp38-cp38-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "7c821498e18bb36b1990e1c7618d3d9c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2365237,
"upload_time": "2024-12-06T13:56:51",
"upload_time_iso_8601": "2024-12-06T13:56:51.071341Z",
"url": "https://files.pythonhosted.org/packages/86/b3/eb8f1eed7255261a0ac02dcc962ca130cb58fbe9f6e37562400b7640eea0/xpress-9.5.1-cp38-cp38-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a163eb66b47b39a63d39a1fb1b0f28309dce3fbb58e9bff0b4cc9a903252826a",
"md5": "6ea69459d0a4682a39c495f10d52e691",
"sha256": "83b3bd280823147c6212c4f4cfa2fc76da214b4a528c421a64c98b1ebb6a9e06"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp38-cp38-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6ea69459d0a4682a39c495f10d52e691",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2337236,
"upload_time": "2024-12-06T13:59:28",
"upload_time_iso_8601": "2024-12-06T13:59:28.335300Z",
"url": "https://files.pythonhosted.org/packages/a1/63/eb66b47b39a63d39a1fb1b0f28309dce3fbb58e9bff0b4cc9a903252826a/xpress-9.5.1-cp38-cp38-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "952615470d5fff48f1a810ae460f8b157628142df9e266a9d946e037036bdd83",
"md5": "64d5f0c63cb9f36ce1c5602e329b5a41",
"sha256": "6f91323358dd17782b1f441a13ec528d5ddf1fe39297d34e1013ef906d9931c8"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "64d5f0c63cb9f36ce1c5602e329b5a41",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2258120,
"upload_time": "2024-12-06T14:01:18",
"upload_time_iso_8601": "2024-12-06T14:01:18.907293Z",
"url": "https://files.pythonhosted.org/packages/95/26/15470d5fff48f1a810ae460f8b157628142df9e266a9d946e037036bdd83/xpress-9.5.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e768d232b882d065d72231188b73935c46ae92cb5d2413be096a38fbef46f029",
"md5": "5717f393d08987207e12ee55b0caceb9",
"sha256": "180189d4c8ba59a448e53dc21073ca9625dc631e0f5776e583fe83adc1c7ca1b"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp39-cp39-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "5717f393d08987207e12ee55b0caceb9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2360395,
"upload_time": "2024-12-06T14:03:11",
"upload_time_iso_8601": "2024-12-06T14:03:11.528334Z",
"url": "https://files.pythonhosted.org/packages/e7/68/d232b882d065d72231188b73935c46ae92cb5d2413be096a38fbef46f029/xpress-9.5.1-cp39-cp39-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "022ed395f9fe57ecdd2fd88f6eb7288930adcb64a8793b995d2a071d4835f588",
"md5": "b96b8bb6ee113cf525e9089372604310",
"sha256": "26926722c7fc45175279422df63bb27fec6f22cb83fa2f9f0af7d2f99618a52a"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b96b8bb6ee113cf525e9089372604310",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2291453,
"upload_time": "2024-12-06T14:03:29",
"upload_time_iso_8601": "2024-12-06T14:03:29.909449Z",
"url": "https://files.pythonhosted.org/packages/02/2e/d395f9fe57ecdd2fd88f6eb7288930adcb64a8793b995d2a071d4835f588/xpress-9.5.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f4789a4935168e5be405461ecbcf820bc3d79f1be6c2ffeeba7884a3a428f97",
"md5": "9c81bbf442c27512a98ddc763bf2e1fd",
"sha256": "bb21fb8f65f5e6598aa400a4833591a5f6d8f13eb0aec563b14693058db6dbf9"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp39-cp39-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "9c81bbf442c27512a98ddc763bf2e1fd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2365311,
"upload_time": "2024-12-06T13:56:40",
"upload_time_iso_8601": "2024-12-06T13:56:40.586709Z",
"url": "https://files.pythonhosted.org/packages/6f/47/89a4935168e5be405461ecbcf820bc3d79f1be6c2ffeeba7884a3a428f97/xpress-9.5.1-cp39-cp39-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92b642103db777f662aac337250f6b87d3207f87c2c89371fc25a57c92ce62e9",
"md5": "9d84dd489e9294ec3128675dee566852",
"sha256": "1f87dfa93a7e558daea15d41655892f1f677ff2721ec82b5cc81d56e1e46100f"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp39-cp39-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9d84dd489e9294ec3128675dee566852",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2336925,
"upload_time": "2024-12-06T13:59:18",
"upload_time_iso_8601": "2024-12-06T13:59:18.933531Z",
"url": "https://files.pythonhosted.org/packages/92/b6/42103db777f662aac337250f6b87d3207f87c2c89371fc25a57c92ce62e9/xpress-9.5.1-cp39-cp39-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "952924ffa5db27510113b251b9045ad0157aebc6e2364cc58107185582fed9a8",
"md5": "8760c78dda3648334f240aa2753110f7",
"sha256": "45123e82c2e6735ecbe205793721f886582be5cf4cca767255d0aae95b598a75"
},
"downloads": -1,
"filename": "xpress-9.5.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "8760c78dda3648334f240aa2753110f7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2258247,
"upload_time": "2024-12-06T14:01:10",
"upload_time_iso_8601": "2024-12-06T14:01:10.015965Z",
"url": "https://files.pythonhosted.org/packages/95/29/24ffa5db27510113b251b9045ad0157aebc6e2364cc58107185582fed9a8/xpress-9.5.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-06 14:03:01",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "xpress"
}