Skip to main content

swiglpk - Simple swig bindings for the GNU Linear Programming Kit

Project description

Plain python bindings for the GNU Linear Programming Kit (GLPK)

PyPI License Build Status

Why?

swiglpk is not a high-level wrapper for GLPK (take a look at optlang if you are interested in a python-based mathematical programming language). It just provides plain vanilla swig bindings to the underlying C library. In constrast to other GLPK wrappers for python (e.g. PyGLPK, Python-GLPK, ctypes-glpk, ecyglpki etc.) it is fairly version agnostic: it will try to guess the location of the glpk.h header file (using which glpsol) and then compile the extension for your particular GLPK installation. Furthermore, swiglpk provides binary wheels for all major platforms, which are always up-to-date with the most recent GLPK version (swiglpk versions follow GLPK versioning in the major and minor version digits to emphasize that).

Please show us some love by staring this repo if you find swiglpk useful!

Installation

pip install swiglpk

That’s it. swiglpk comes with binary wheels for Windows, Mac, and Linux. No installation of third-party dependencies necessary.

Example

Running the following (slightly adapted) example from the GLPK manual

from swiglpk import *

ia = intArray(1+1000); ja = intArray(1+1000);
ar = doubleArray(1+1000);
lp = glp_create_prob();
glp_set_prob_name(lp, "sample");
glp_set_obj_dir(lp, GLP_MAX);
glp_add_rows(lp, 3);
glp_set_row_name(lp, 1, "p");
glp_set_row_bnds(lp, 1, GLP_UP, 0.0, 100.0);
glp_set_row_name(lp, 2, "q");
glp_set_row_bnds(lp, 2, GLP_UP, 0.0, 600.0);
glp_set_row_name(lp, 3, "r");
glp_set_row_bnds(lp, 3, GLP_UP, 0.0, 300.0);
glp_add_cols(lp, 3);
glp_set_col_name(lp, 1, "x1");
glp_set_col_bnds(lp, 1, GLP_LO, 0.0, 0.0);
glp_set_obj_coef(lp, 1, 10.0);
glp_set_col_name(lp, 2, "x2");
glp_set_col_bnds(lp, 2, GLP_LO, 0.0, 0.0);
glp_set_obj_coef(lp, 2, 6.0);
glp_set_col_name(lp, 3, "x3");
glp_set_col_bnds(lp, 3, GLP_LO, 0.0, 0.0);
glp_set_obj_coef(lp, 3, 4.0);
ia[1] = 1; ja[1] = 1; ar[1] = 1.0; # a[1,1] = 1
ia[2] = 1; ja[2] = 2; ar[2] = 1.0; # a[1,2] = 1
ia[3] = 1; ja[3] = 3; ar[3] = 1.0; # a[1,3] = 1
ia[4] = 2; ja[4] = 1; ar[4] = 10.0; # a[2,1] = 10
ia[5] = 3; ja[5] = 1; ar[5] = 2.0; # a[3,1] = 2
ia[6] = 2; ja[6] = 2; ar[6] = 4.0; # a[2,2] = 4
ia[7] = 3; ja[7] = 2; ar[7] = 2.0; # a[3,2] = 2
ia[8] = 2; ja[8] = 3; ar[8] = 5.0; # a[2,3] = 5
ia[9] = 3; ja[9] = 3; ar[9] = 6.0; # a[3,3] = 6
glp_load_matrix(lp, 9, ia, ja, ar);
glp_simplex(lp, None);
Z = glp_get_obj_val(lp);
x1 = glp_get_col_prim(lp, 1);
x2 = glp_get_col_prim(lp, 2);
x3 = glp_get_col_prim(lp, 3);
print("\nZ = %g; x1 = %g; x2 = %g; x3 = %g\n" % (Z, x1, x2, x3))
glp_delete_prob(lp);

… will produce the following output (the example can also be found at examples/example.py):

GLPK Simplex Optimizer, v4.52
3 rows, 3 columns, 9 non-zeros
*     0: obj =   0.000000000e+00  infeas =  0.000e+00 (0)
*     2: obj =   7.333333333e+02  infeas =  0.000e+00 (0)
OPTIMAL LP SOLUTION FOUND

Z = 733.333; x1 = 33.3333; x2 = 66.6667; x3 = 0

Pretty ugly right? Consider using optlang for formulating and solving your optimization problems.

Documentation

You can find documentation on GLPK’s C API here

Development

You still want to install it from source? Then you’ll need to install the following dependencies first.

  • GLPK

  • swig

If you’re on OS X, swig and GLPK can easily be installed with homebrew.

brew install swig glpk

If you’re using ubuntu linux, you can install swig and GLPK using apt-get.

apt-get install glpk-utils libglpk-dev swig

If you’re on Windows, you are on your own (checkout the appveyor.yml config file for directions).

Then clone the repo and run the following.

python setup.py install

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

swiglpk-5.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

swiglpk-5.0.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

swiglpk-5.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (908.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

swiglpk-5.0.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

swiglpk-5.0.5-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

swiglpk-5.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (818.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

swiglpk-5.0.5-cp310-cp310-win_amd64.whl (567.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

swiglpk-5.0.5-cp310-cp310-win32.whl (456.3 kB view details)

Uploaded CPython 3.10 Windows x86

swiglpk-5.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

swiglpk-5.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

swiglpk-5.0.5-cp310-cp310-macosx_11_0_arm64.whl (782.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

swiglpk-5.0.5-cp310-cp310-macosx_10_9_x86_64.whl (828.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

swiglpk-5.0.5-cp39-cp39-win_amd64.whl (567.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

swiglpk-5.0.5-cp39-cp39-win32.whl (456.1 kB view details)

Uploaded CPython 3.9 Windows x86

swiglpk-5.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

swiglpk-5.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

swiglpk-5.0.5-cp39-cp39-macosx_11_0_arm64.whl (782.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

swiglpk-5.0.5-cp39-cp39-macosx_10_9_x86_64.whl (828.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

swiglpk-5.0.5-cp38-cp38-win_amd64.whl (567.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

swiglpk-5.0.5-cp38-cp38-win32.whl (456.0 kB view details)

Uploaded CPython 3.8 Windows x86

swiglpk-5.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

swiglpk-5.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

swiglpk-5.0.5-cp38-cp38-macosx_11_0_arm64.whl (783.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

swiglpk-5.0.5-cp38-cp38-macosx_10_9_x86_64.whl (828.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

swiglpk-5.0.5-cp37-cp37m-win_amd64.whl (566.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

swiglpk-5.0.5-cp37-cp37m-win32.whl (456.0 kB view details)

Uploaded CPython 3.7m Windows x86

swiglpk-5.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

swiglpk-5.0.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

swiglpk-5.0.5-cp37-cp37m-macosx_10_9_x86_64.whl (828.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

swiglpk-5.0.5-cp36-cp36m-win_amd64.whl (566.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

swiglpk-5.0.5-cp36-cp36m-win32.whl (456.0 kB view details)

Uploaded CPython 3.6m Windows x86

swiglpk-5.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

swiglpk-5.0.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

swiglpk-5.0.5-cp36-cp36m-macosx_10_9_x86_64.whl (828.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file swiglpk-5.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38e2e69034dca284c6f784f03f6c2bb147824bb83daa317c6bb8961237453cee
MD5 6fa474c47fa4cca333886ccc48f086f0
BLAKE2b-256 00ab3668c2ed4b110205f206c63597395e164d7dfe4d8092c23e3bf874f1a6b4

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: swiglpk-5.0.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6fdbe1ea6c5eb902bc7dcc2373744f445a72e035751e3aa0fcba3374fc3e5ae
MD5 172b66494ad67a5441a5a416c996359d
BLAKE2b-256 b49e6c8c27ef551335120ee2963d9330e31dfdcf6c9eb55cd24796b79f601b64

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 908.1 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f6a065c81f61fccbc9e196f35393220d06bc3b6e63cb1b6789ddc9fede40ba4
MD5 50aa1b4d5d5fe1d6cfd957b0e5860fad
BLAKE2b-256 108a9a6e88336d47c344618cb1ce40be7fdf5dd994e9b2840ab332e6543e4ad3

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afba164321ebc03e95e8d3c34e34b3f1ec1c3df0d32250e540b7dc3adf3e14a1
MD5 cbfdbae8f31b68ee78d8098cb55c857d
BLAKE2b-256 c01b4bfd075a4ecbd0cab46f6a00683aa6c4df506bb39ee9641ca8251c1a6241

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: swiglpk-5.0.5-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc09bd0f253d5b7b70f8c30df6e036637e426464db168ab6bd92259c8ce78634
MD5 bc64c74080ead842b7e42e111e50180e
BLAKE2b-256 afa81fa6130487617ee6977b1ec56a9b6ce9687ec13c87b60365a0bc795959be

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 818.0 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 962387dc074745adb0606632edd1b12f0b53ba5609bc62588abb81c5889e32c7
MD5 5dcaea0f7709c2f35a9901167512775f
BLAKE2b-256 2cec5f33d63d2c2ba3baadd9cb37fb60f76130d621a5c201b5f262faadd757bf

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 567.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e296366bb9ccad2d75d5e4f756f4da039660050582933ba3bb60ec5719866c9
MD5 205a9df769126138484a63a9a9cbc408
BLAKE2b-256 0972a9c8e38f3501cd2108edcb2871649d04c9907869e61c785c6f4cb24736c3

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 456.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 69bb6e671bf20de18045747e12d562c653b4c733b49a8b2b2f964d264ed10b14
MD5 e8e810308a7fd12c0cb054a572070f8d
BLAKE2b-256 f29993af3df4c5dde1d6864693cb78a9a8d3758dd0eec166a8c9500e3ab23320

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cce04b87be675d8671efeeccb65ef89628850865a062a477398178db697631c
MD5 4daf3392730a41125f6c091ab863e46e
BLAKE2b-256 837ecf77b9c14f542bb61d42b694a89347a264ec5b8afd1eec9a8a62c8aa4dd8

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ecb6da6c95d3359c14331c104a24b520f5a802097d77959a32d0bf6bc4094bc
MD5 50702fe00f83bdfa72128e4d0d1698bd
BLAKE2b-256 caaf14d456343bc8e614c38fc95db83fbf4e5dbcdbc898b4f168e9bf4cd3d98c

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 782.9 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83d96b6082542ee13ac3aef306ae59d58a798d88554c83d4f7fc904ae1006862
MD5 ef17d29dc486245b13ccc3d54a5eb235
BLAKE2b-256 65fada5cbc531bcf33eca7dbb9c54101abd5afd6fb28fd356604362c17c994d1

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 828.3 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 527e949879af51f7cd4be033f0df8fa9312657ca215060fba001f8f45edad125
MD5 f9a5b04cbab4e488eea720bfb8b52718
BLAKE2b-256 26771e76fe4e62b643771f298c094e03881c9d80f8effc893e37fc1c7fc3a8c2

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 567.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6b73f59a296a64516a25339bd624dc3f0d7762ca10d7019ae7e507e9cc1f854a
MD5 68e90b703cf02e9e8b9144c2b3a28b32
BLAKE2b-256 314c1b0b43754f0f02c35ce12665855abf02d6ff2659ccf1425e6e346fc3089d

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 456.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c1e805b826d384a0f81bdbb7672b68d1a8eb7917d0f7e8e81ec7128feee6308b
MD5 1223917ddb1e80083af0c4da2a7e50f6
BLAKE2b-256 658d824148f3b3db0103c7ca4e290040fd06c038084239eee052b50f00817ca5

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 839abb6de03844efd2090c2c74f9e788099d00670a09ddd674f467370a967b8f
MD5 5de021a44fbac7005f0af4d1c15b4b06
BLAKE2b-256 3ac4c1137f3443a6a675c26ab7413360d63c379edfc79f461b65cb58e8f0b39a

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ff2ffe047a024b037f0b15d6180b0093f0a55dabd77a6c558c0aa9b72a61b8d
MD5 a9ab2accc57edb099767cd9f9777f2a6
BLAKE2b-256 848357effd72a6350264514c9119bfddbea6bf626442205b15ddd358ffa1b07e

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 782.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96a91a0ce37d84ff1337a79e137667c6889ae4d10b5bb60473ad104579830c5b
MD5 179b9d11a1c05ec9f1919bebeb5fa8cb
BLAKE2b-256 a05543d73304cecd27684a9a523d2d904dd388013f2f5909a569c3be7aa54867

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 828.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 678036045bdd2210a86580680050142e82a7f48db21b0fba0d051e3a56b46d49
MD5 c4487d65f9393e6bc9a1be842ee25082
BLAKE2b-256 212f93dd768843af7fb679feb4e1a68f85f1613c0b89e4302ac0f943f6ae35dc

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 567.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7a535756e0d07d76cae9b1bf6ad2704cc73db34b056f57383026930e16937df4
MD5 aba2bd7162f17a79b60794ce4b1c0ce7
BLAKE2b-256 957fe310aa56e56581bda3fd9a49e161d308ce7581b0f6ae8eb37d7bb5f0e177

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 456.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4fd92403b1c19bf7ad6fa4a9a54c67791b43146a05d3276f81d2d943629fbb45
MD5 35e6a74901a6aa596fb9d5a2a0daaf77
BLAKE2b-256 01a97b3c2e3c1f202ffb35198dc4b452fdaedf626551abdaf0b8f28874546c0b

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6b672cdf2fa6ccaf2ebda1cc895ae25cb29b5ef7115193cb6a4f0a64546b4a2
MD5 16d0bb5e69fa6a9b09ca5c25420e863e
BLAKE2b-256 7586b01b228f212e81357782d635024b504bb887824b89a0d1035761f659f5ec

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4adf8dd9677211d993e7abf7bdae538fa4195d5cbabccf8829471d9b8c55d63f
MD5 197b96804bc0bac86fa6f27f4174d788
BLAKE2b-256 ffd50ab1417aa3e674761b05ea0bddba2beb64fb810355dc98138a0688279c7c

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 783.2 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad9cdd94e7e93e2b9db7ef1eca3c3837115e26dcebed8dfaa7718707526077e1
MD5 9d39746456d782eb5df43595669a3473
BLAKE2b-256 32a447f2c9b55b0c1dbe08c8612bc1919d969626933bdd2e2efc616c8989750a

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 828.4 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 28b8ff6c238430280bf6e4dea1c062159d259526e5329e0b9d7221b033481389
MD5 9be70f6225770ede0fa6109cc2f34123
BLAKE2b-256 6ca92a51d589f5ec8c81eedc723847cbf7d1005616318172fc120d15faed9676

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 566.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 72c680eeaad29ed10d15c73a544d82483ab37c2462506d2cae0ab4d7ef9ac031
MD5 c5b9234cc4ed822ca009c590a0c47ec5
BLAKE2b-256 2b6e30067eff309a00a4943bb53090efa2ca01b177952bb22befcf1510923e82

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 456.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 807e705ed29ab31df301d0135451cbbb9836c2a30b8928fedfeadb63f6395ba3
MD5 1bba791f7f1e1801d09f700014d1311d
BLAKE2b-256 8eac42ff556b173703936741cb40f899182658084d6550bc0f557674066073e6

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f539273860699adf351e7145b9749e7f44d20bbd43b2ea96053efa775c5f8fa
MD5 87fe7076f04ed730c91a15a90fe68d2c
BLAKE2b-256 28bc4fc3c0f3f0fb88fa9b3f845a1a87d3d7f76da6777d74b6e0d94f36872c2a

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f8d26a10cc210346b5e347898d00ec1c70b269e6f022694a6ee76834a7bc34a3
MD5 08a11a1af12c5d8ee3d2eb10936fccd9
BLAKE2b-256 442767471c0dee0a2f022f84190e85e3d18741e0ba5eef01192b6d14c96c476b

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 828.2 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62b6e8c0a58d4a2d6be546d0a987361db985497c857739b4fa49ad1eb6283211
MD5 fb2ec6d40af605ae66b80394f16d8e69
BLAKE2b-256 115d08fee4c5faa8f4300f457ae8f79c467f3287a05c9609d85cba58da6694b4

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 566.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8d071c3ff4ebc43e2ece9d5f29229b02a422234e2e496241d543e4edb529feac
MD5 e544008c7b5ea504568780598a468d64
BLAKE2b-256 964f5ba1fcba10d86058fa427e7638b7cae2146ff627ce9803c4a41d7d501ca0

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp36-cp36m-win32.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 456.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ffb4b3c0cbe5f654acc90e4e13fe3117b4b08a68d4fcc0328ab75aa14552e184
MD5 44de6187013dd99c2bb36061afcd248d
BLAKE2b-256 1adc184a0a23a356bd5e08d4ff2bbddb1a11dbdc82f98c81613ed7e2882252d8

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7a68279fb5f9ce29e0f619935510df0f80311136f2eff0e43cbfa59fa4076ba
MD5 a9b3cdab02e9d3ffa92c7f0e274f800e
BLAKE2b-256 1caa2fdb3a8ad7b95f1f3d2cc1494c0081d604faeb61444adc8b54b51c80768b

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50678a239dcf3c1532ed78d6cf34afcdc72acfae8e3d36c4147a6064ebddeb4c
MD5 f941d3bcea2bc1cc4b566d736c497dcc
BLAKE2b-256 337269dcd38ae2eb3adaeab451cded2fb63f2d2bb829147a7a1c6af33e94f13e

See more details on using hashes here.

File details

Details for the file swiglpk-5.0.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swiglpk-5.0.5-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 828.2 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for swiglpk-5.0.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13b9a3497f96eb029a89a6bdda8c9bc3354e60eb6ca6f21026e90ee79b5c8393
MD5 e42c2d7b5e11b071408c239d6465e08d
BLAKE2b-256 bce10371db88ed76d8919b1a5eab3865ff9929c048fa80e15d038479430aba93

See more details on using hashes here.

Supported by

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