Skip to main content

FICO Xpress Optimizer Python interface

Project description

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:

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 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 and from Anaconda. 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; 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 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. 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 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-2025

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

xpress-9.6.0-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

xpress-9.6.0-cp313-cp313-manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13

xpress-9.6.0-cp313-cp313-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13

xpress-9.6.0-cp313-cp313-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xpress-9.6.0-cp313-cp313-macosx_10_13_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

xpress-9.6.0-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

xpress-9.6.0-cp312-cp312-manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12

xpress-9.6.0-cp312-cp312-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12

xpress-9.6.0-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xpress-9.6.0-cp312-cp312-macosx_10_13_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

xpress-9.6.0-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

xpress-9.6.0-cp311-cp311-manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11

xpress-9.6.0-cp311-cp311-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11

xpress-9.6.0-cp311-cp311-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xpress-9.6.0-cp311-cp311-macosx_10_13_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

xpress-9.6.0-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

xpress-9.6.0-cp310-cp310-manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10

xpress-9.6.0-cp310-cp310-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10

xpress-9.6.0-cp310-cp310-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xpress-9.6.0-cp310-cp310-macosx_10_13_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

xpress-9.6.0-cp39-cp39-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86-64

xpress-9.6.0-cp39-cp39-manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9

xpress-9.6.0-cp39-cp39-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9

xpress-9.6.0-cp39-cp39-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

xpress-9.6.0-cp39-cp39-macosx_10_13_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

xpress-9.6.0-1-cp313-cp313-manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13

xpress-9.6.0-1-cp313-cp313-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13

xpress-9.6.0-1-cp312-cp312-manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12

xpress-9.6.0-1-cp312-cp312-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12

xpress-9.6.0-1-cp311-cp311-manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11

xpress-9.6.0-1-cp311-cp311-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11

xpress-9.6.0-1-cp310-cp310-manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10

xpress-9.6.0-1-cp310-cp310-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10

xpress-9.6.0-1-cp39-cp39-manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9

xpress-9.6.0-1-cp39-cp39-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9

File details

Details for the file xpress-9.6.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xpress-9.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.11

File hashes

Hashes for xpress-9.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ea89ffd4544d79d298985d24335286978c79749bb5970a90c331f846f41ead8
MD5 47c759e5dc2dbb680c315d7af5a0de4b
BLAKE2b-256 dd977e8ae785885897bf8a134fa6d36f60fe6d613f05a05e2a4f52835963e9da

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp313-cp313-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b860f6d348dfc4c2caf27ac6d7532b8a0cdbbef2100c3d841b2bf684a9cdabbb
MD5 51086cd07b22cffc5ee11beabca73c96
BLAKE2b-256 a2ba2c620c58b3346d6c37885a2e4d11ccb70cd211ea0311c46636e967f54370

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp313-cp313-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp313-cp313-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dc7291088ecdcd2a72e5f2449f089bb9fe1ca83c787de2a20c1d9319721be411
MD5 4add448321e42098f1008b651383a752
BLAKE2b-256 11caac3878ca19e47a5780c20eb94ef4e52813ed1be0c07fb0dcef174f7a3390

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0fef6c4329cb5a1c7ca034e857269999c1d9d8db2c30cad2c1753b18a878e72
MD5 403a6b9fc527da8b139a542479d6f0b1
BLAKE2b-256 fa1a47f9e69f92e337504afe1e614b5cd672491b310979098a5a89fcbd3d5d65

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 67f6a0d4551c78dcffbcaffe0af80574587153a8dafe561a7de61a0b3ee28c0f
MD5 0c7b1b4071daf6e7ff6b48ee5c507cca
BLAKE2b-256 a50402f266b14375ff16d8261b21e532cd7691c773d7d14f53b3279e1005ced9

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xpress-9.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.11

File hashes

Hashes for xpress-9.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 01f5b62f847275655020f1aaae88d4eafb147fead63cf23165f6422cb288bd7e
MD5 360bbbff44f08b19377300af2e1b0038
BLAKE2b-256 72fe1b985afae748cae8afdbeb5344fe8d479e1414d0e7e978aa5132f2004159

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp312-cp312-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7883557c0f77c606bf3878e2e8f0083d2fcdbd739c1f35b3a1c382061bfd7a3
MD5 2508ec588ebdd0ce2b81890822556222
BLAKE2b-256 d05745712c1a1c77ef0bba82a7c5720745aecaf1c0c0dc70f6778115100cfc0d

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp312-cp312-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp312-cp312-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 322a727977c5160ea6d85494a236f502c86f1bedea51447081d567195e1ec031
MD5 f20bcd9457beb793959caf0a2de1afc2
BLAKE2b-256 aa46a952016d5ca31dea61ab0ead4309f1b23b4e249e4145183c10f11f4a10ca

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fd588f652d5fd151012125acb625f69d83de0b6372aa3f7869ae1275aaf71ed
MD5 73c7226ddb2f5681e1734923ea248869
BLAKE2b-256 c87cf9be3084c2f0a22fe8fb68353617f50868ac53d56a56e5f7cf092de734de

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 73f544bb8524496bbec14fa1171daa7544f80b6e8c46363682b7a8403397e78f
MD5 929df55f4521acce1c524e5ea69351d3
BLAKE2b-256 3d7de314b60621238582a0e67eecaf4c45b99df90394b766f00032c3e08c1ee6

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xpress-9.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.11

File hashes

Hashes for xpress-9.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ecc6644766b146f533d70b370b50a59e9516996299b661327297923e7dd1fbc6
MD5 2b153df7d5f58c0f898026271cd0b237
BLAKE2b-256 d222087fe175778effa43a16051cc127bf637cef684c6d4671098fd200b269a2

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp311-cp311-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ed382ece719683da8bed0f5978f70ee684ac22ac209b57178045f90ddde9d71
MD5 2b9bbc4571e8cb8835803f2e1cb12ba3
BLAKE2b-256 316f0f1fccd66753a2f69194f7017942e9fbaf72e7b080f51d98b527f7637805

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp311-cp311-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp311-cp311-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0fd2807bb3cf325e494a0d2950f5350d9fca6da3a0c2c067e147fe999564b7bf
MD5 8b99d3129e139b9ed06102fa6b4b22c5
BLAKE2b-256 737f8d883e575ef56eb1e4838778a2b1b8294df382bab5ec2eb582371beab996

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acd9113da18ec48f538456ceb97796b8883982a8a7a61991e5b929549ec32996
MD5 fec8edc41ed79bbbff9a79c1ef2d3a0f
BLAKE2b-256 95ea6f01864a93c20cfea44d502bb61d84f8e3d1f0aa740bf4f83f4d75927abf

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 05fe53cf7c951acd0a07bfcad42ca85d5822892ae9478005a9d708289f9d30cd
MD5 0d3e47ef45437ac1e8e58395aad92f7f
BLAKE2b-256 b3c93e6d07cae35cfae00cf230a606566824b04b347b5b2be5a3c88e61bc1990

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xpress-9.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.11

File hashes

Hashes for xpress-9.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7c773fa54faaaaff1a2153b928f7d3d9533bae33838959f435ea1aec15eb839a
MD5 06a61d242d3dcfc078c59f0512b5d1e9
BLAKE2b-256 c82b84c35353855810d7bc2f9d42a8c21222c6a2e3d0768bca86560c87aa1957

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp310-cp310-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69a2d24df19b12792a4efd76206e7f6484e6bbf0d0f077d7a95be071d818ace9
MD5 1ad3234ed2a16995b67fc0b16fc8411e
BLAKE2b-256 9b8bb8af01a3883f98871c4b2cdd09b699869f3929c5a71926f084cda9ffcd2e

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp310-cp310-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp310-cp310-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 996c3c418e88a452ca02f8e81f8b30d67bca1d11b25216997deefa801920f7fe
MD5 bc15df0d09bf4acc8379159abe3ab944
BLAKE2b-256 b5d28447ab9e396dcbbe52d2415281b59443a5d9125c5b478f39cbd80e377af2

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c69d49453ec1a5455d08e3a1895f2207f601e9dce5c05cb7e2618dbd2291438
MD5 ac07b608da8fd96d4cfc1ce40aec30ed
BLAKE2b-256 206cde18cc4f60b1303b295f0de38cb6fa53444800f948c8ec24796edaa0a97f

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 19aab4f2bcdf6c81f3ab8269c1668ef508c78dd46e1b40e56287cc61dcc28ce8
MD5 07193ee5bbca352eef92bf9cba7bdac4
BLAKE2b-256 423f9bf477ec6e6f37272148902d577464a4cce224361c58776869626ca87df7

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xpress-9.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.11

File hashes

Hashes for xpress-9.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 848098d0e22e64674b3d0fec56f1c70e0ab593e42fed64f7e65d3ac575eed299
MD5 6e0a21ca6b6bc3e79ff0d7cf32304dd8
BLAKE2b-256 ab339e9cd7c09a934af2d4eca7a14019c8c912f238eafb93202926910b78b281

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a34023d05df3c3d2b0c8c86b8389c5a1e01f960a8aacf20c267c83c8b5248eef
MD5 3c1864ef4435bc2d993398e79d054fdc
BLAKE2b-256 8e8f99fbf18c351b26ea826e66a40a7ab901cc82d3ea6c5b9bf9ace5c0aed907

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 73771ee664452ef38117bc48460f9aeb2429722a2a738efa6ebc946f64a8e3f3
MD5 7ac72c47a30d4bccb53fbd943c8032ca
BLAKE2b-256 5c75fa4259a9c90f2fbec1ca3c2625ab0a68c19c547f78883ced2a67c620f592

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 795a4120ea704b5f61901abf953e5ad98818db7f1745355096e07caec5883cfa
MD5 0f95f35e16d035367d64589b49ea2cc7
BLAKE2b-256 10141b90c9e1eefa2a92fe456561ffa166125e8fea4149b3116be44eddef854b

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0496f7f7bc14c498c52d95598e47a0702e1e58d78e8aac09d991335512f9d8d7
MD5 f8364b5a069e119d13c4412acb56ceff
BLAKE2b-256 2b365c1b2bacf76e5b4ac01c6514ff4afff00eb0f68af7a6edc7593ad05f6c42

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-1-cp313-cp313-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-1-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29f570e60d687e4a06e2585407b23fda0f7ea5c7a10071ef3f8a4998343506dc
MD5 7351f49fa7ea3fe8f19e40b4d0b95f12
BLAKE2b-256 12afac06846fabe1af81a56fd35f0792c37ca762448e7176e571af0c0e4d29a7

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-1-cp313-cp313-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-1-cp313-cp313-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f8c7f14c0d5a38c945df400eaa27089393feece9a932bf4eb3c9afb6bc03e2f1
MD5 390b3b71298d239baeefa907853fb93e
BLAKE2b-256 3fbee2edcde8b0bd3b493c00452c2619c52e03ddb960cb204091d4f584be3e59

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-1-cp312-cp312-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-1-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b550418dcca1cf8553973ae4e2ae6c78dcb2963ce4e336378bf77a8c709f026f
MD5 10fa967c00d0ee0eecfef6b3bf813a88
BLAKE2b-256 94c68052585ae833981a5c0a256beb1fd28ea20e4365f70e42d441d1b04d21a9

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-1-cp312-cp312-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-1-cp312-cp312-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7adfd48db24a8211a069a70e7abf7b0719677fb0a2acbad7ad10e37e84de1548
MD5 817a09b091e6c61141fcb4080738d875
BLAKE2b-256 80abe2116546ecc50ce1e3cff74aeb37b488abb73b93568b0a1fe44969c24a6f

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-1-cp311-cp311-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-1-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fed9f4a67e8cb38c6072d744e421a98d23c565ffd15d7b0a35c52416d9175729
MD5 879e8df486a27f2021e3dc0310b1c97d
BLAKE2b-256 800a70a75ecc1d503021a4a251e0a7a535e58d7769a1a1f351c9044bce4e1921

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-1-cp311-cp311-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-1-cp311-cp311-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 65b46c43793db2fae0ff01ca115305b8aa20b5b7437dfb3a7d3ab3708dae2a1c
MD5 87a20892785593d020a3f1ca1c36f609
BLAKE2b-256 64f0cfb629e61fb198145561a13277668a1a7f3f40ccb67ddd6ed9c0b423729d

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-1-cp310-cp310-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-1-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a739e4a9a250b3d57359033dcd714cbafcf46c3774567cf03c58eb552b3bd007
MD5 6a68d6ac29390c8e2ef71866c5278c22
BLAKE2b-256 6208505a99c97449141e739e5e7eec4e131ff147c2534f81a5af33caaa446bf2

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-1-cp310-cp310-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-1-cp310-cp310-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f821f96246be2427805ce4bc253c3ed7e8a61db92c6ee5de0771c482bfd24606
MD5 441d2bd7edb2caae0041c8fd5a670253
BLAKE2b-256 73b8ac5bbbb7ee6b45be2ef1d29bd1e3e11ce82b875f254ad420fb89ce25087f

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-1-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2b778eb7e27fe87ae34a0519c10b966c90a883c10e2df2ea4d34cb575f05714
MD5 b992427e451c962d3224315e333712bb
BLAKE2b-256 9127a9c3039b46bfd9ed11a6874081cd2be22d20030725a1929116b114ad8dea

See more details on using hashes here.

File details

Details for the file xpress-9.6.0-1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for xpress-9.6.0-1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2508eb643f4ccc240eed3b18c04b4fa8f0ce9ef77860dc839396ef7d00c9c97c
MD5 06fae138312975eea417028263c5d6de
BLAKE2b-256 e3314def9415f518bd15aed0ac727cd44dc21ab9389cc4998d4c2ececba71644

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page