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 AppVeyor 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.

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 Distribution

swiglpk-4.64.0b.tar.gz (30.1 kB view details)

Uploaded Source

Built Distributions

swiglpk-4.64.0b.win-amd64-py3.7.exe (1.1 MB view details)

Uploaded Source

swiglpk-4.64.0b.win-amd64-py3.6.exe (1.1 MB view details)

Uploaded Source

swiglpk-4.64.0b.win-amd64-py3.5.exe (1.1 MB view details)

Uploaded Source

swiglpk-4.64.0b.win-amd64-py3.4.exe (733.4 kB view details)

Uploaded Source

swiglpk-4.64.0b.win-amd64-py3.3.exe (733.4 kB view details)

Uploaded Source

swiglpk-4.64.0b.win-amd64-py2.7.exe (731.1 kB view details)

Uploaded Source

swiglpk-4.64.0b.win32-py3.7.exe (904.8 kB view details)

Uploaded Source

swiglpk-4.64.0b.win32-py3.6.exe (904.8 kB view details)

Uploaded Source

swiglpk-4.64.0b.win32-py3.5.exe (904.8 kB view details)

Uploaded Source

swiglpk-4.64.0b.win32-py3.4.exe (630.0 kB view details)

Uploaded Source

swiglpk-4.64.0b.win32-py3.3.exe (630.0 kB view details)

Uploaded Source

swiglpk-4.64.0b.win32-py2.7.exe (630.0 kB view details)

Uploaded Source

swiglpk-4.64.0b0-cp37-cp37m-win_amd64.whl (522.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

swiglpk-4.64.0b0-cp37-cp37m-win32.whl (441.6 kB view details)

Uploaded CPython 3.7m Windows x86

swiglpk-4.64.0b0-cp37-cp37m-manylinux1_x86_64.whl (503.8 kB view details)

Uploaded CPython 3.7m

swiglpk-4.64.0b0-cp37-cp37m-manylinux1_i686.whl (458.1 kB view details)

Uploaded CPython 3.7m

swiglpk-4.64.0b0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

swiglpk-4.64.0b0-cp36-cp36m-win_amd64.whl (522.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

swiglpk-4.64.0b0-cp36-cp36m-win32.whl (441.6 kB view details)

Uploaded CPython 3.6m Windows x86

swiglpk-4.64.0b0-cp36-cp36m-manylinux1_x86_64.whl (503.8 kB view details)

Uploaded CPython 3.6m

swiglpk-4.64.0b0-cp36-cp36m-manylinux1_i686.whl (458.1 kB view details)

Uploaded CPython 3.6m

swiglpk-4.64.0b0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

swiglpk-4.64.0b0-cp35-cp35m-win_amd64.whl (522.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

swiglpk-4.64.0b0-cp35-cp35m-win32.whl (441.6 kB view details)

Uploaded CPython 3.5m Windows x86

swiglpk-4.64.0b0-cp35-cp35m-manylinux1_x86_64.whl (503.8 kB view details)

Uploaded CPython 3.5m

swiglpk-4.64.0b0-cp35-cp35m-manylinux1_i686.whl (458.1 kB view details)

Uploaded CPython 3.5m

swiglpk-4.64.0b0-cp34-cp34m-win_amd64.whl (506.1 kB view details)

Uploaded CPython 3.4m Windows x86-64

swiglpk-4.64.0b0-cp34-cp34m-win32.whl (434.0 kB view details)

Uploaded CPython 3.4m Windows x86

swiglpk-4.64.0b0-cp34-cp34m-manylinux1_x86_64.whl (503.7 kB view details)

Uploaded CPython 3.4m

swiglpk-4.64.0b0-cp34-cp34m-manylinux1_i686.whl (458.0 kB view details)

Uploaded CPython 3.4m

swiglpk-4.64.0b0-cp33-cp33m-win_amd64.whl (509.1 kB view details)

Uploaded CPython 3.3m Windows x86-64

swiglpk-4.64.0b0-cp33-cp33m-win32.whl (436.9 kB view details)

Uploaded CPython 3.3m Windows x86

swiglpk-4.64.0b0-cp27-cp27mu-manylinux1_x86_64.whl (503.6 kB view details)

Uploaded CPython 2.7mu

swiglpk-4.64.0b0-cp27-cp27mu-manylinux1_i686.whl (458.2 kB view details)

Uploaded CPython 2.7mu

swiglpk-4.64.0b0-cp27-cp27m-win_amd64.whl (502.4 kB view details)

Uploaded CPython 2.7m Windows x86-64

swiglpk-4.64.0b0-cp27-cp27m-win32.whl (428.9 kB view details)

Uploaded CPython 2.7m Windows x86

swiglpk-4.64.0b0-cp27-cp27m-manylinux1_x86_64.whl (503.6 kB view details)

Uploaded CPython 2.7m

swiglpk-4.64.0b0-cp27-cp27m-manylinux1_i686.whl (458.2 kB view details)

Uploaded CPython 2.7m

swiglpk-4.64.0b0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

File details

Details for the file swiglpk-4.64.0b.tar.gz.

File metadata

  • Download URL: swiglpk-4.64.0b.tar.gz
  • Upload date:
  • Size: 30.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b.tar.gz
Algorithm Hash digest
SHA256 48fca13917cab4d753dde56fb431ce851b851b4ad8ae82e2fd64f3a81f6bd40c
MD5 a97363eee0336ac310f5b009ae439d43
BLAKE2b-256 268682512fbe716e7ad3a9ad9d240d716cf8c450dbc79c054ccabd23c036e2a1

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win-amd64-py3.7.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win-amd64-py3.7.exe
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for swiglpk-4.64.0b.win-amd64-py3.7.exe
Algorithm Hash digest
SHA256 052f29ffd5878639c1f71f669d43f8a973af90f4c61302ef7dab99bcf19bce0a
MD5 734e0a045e98a12c5dce635d4d860b3b
BLAKE2b-256 28f34ad1974e2d45a79c2bb725507e1ac718e47966c1575cf403cd88b231edf4

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win-amd64-py3.6.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win-amd64-py3.6.exe
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.6

File hashes

Hashes for swiglpk-4.64.0b.win-amd64-py3.6.exe
Algorithm Hash digest
SHA256 a0591cc58f92a32f20573d713b7bce9729ca85867cdd4a5350507462fc4627fa
MD5 0e09735f6d4812ece8354302ae89d0c5
BLAKE2b-256 dad334602f7e6498d28f362f9a98c127fccdae5c8ef4d62e19a4168fa6701ba0

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win-amd64-py3.5.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win-amd64-py3.5.exe
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.3

File hashes

Hashes for swiglpk-4.64.0b.win-amd64-py3.5.exe
Algorithm Hash digest
SHA256 92ede0888cac15f93795c9103356607b68c31e74ae0996199e9391c1d44a8a16
MD5 3a1e6a88acb7d379431ca1f258d9a5dc
BLAKE2b-256 84c17b40141013a3ea261b37fc821fda4ec7ad4fd9e13a64610e74287a04d8cd

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win-amd64-py3.4.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win-amd64-py3.4.exe
  • Upload date:
  • Size: 733.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.4.4

File hashes

Hashes for swiglpk-4.64.0b.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 e31fa079e4e8939a4958dcb907b675353bf4c7acafac2f922912254870ca28eb
MD5 4ca1c40c5c6acd1eba3a9335e8eba85f
BLAKE2b-256 a36fc69a934861b5d738d142c6b8394c129e0db57a601f5aee32f6dc5b2c7dc7

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win-amd64-py3.3.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win-amd64-py3.3.exe
  • Upload date:
  • Size: 733.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.3.5

File hashes

Hashes for swiglpk-4.64.0b.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 021eeb62605ba79f950bc0fe345a44558cf3b71ad1972f2eccc939ac17f012da
MD5 0c996d165ea963d968f8e20f885c83b7
BLAKE2b-256 787b63dacb19656a2151ba007382343693659c3261e699c8ea8048294863e6ba

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win-amd64-py2.7.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win-amd64-py2.7.exe
  • Upload date:
  • Size: 731.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.10

File hashes

Hashes for swiglpk-4.64.0b.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 febf4f1e35835364844b29129ffa63b136b2147473d33708b3e0db7f32c93669
MD5 da18b91f9c8c381ec430ac4a7b9ba1d3
BLAKE2b-256 bed7908da96a45ef5ae737eef1e6c18d1c379030c2805c81e304b0419eac34ab

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win32-py3.7.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win32-py3.7.exe
  • Upload date:
  • Size: 904.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for swiglpk-4.64.0b.win32-py3.7.exe
Algorithm Hash digest
SHA256 daaba2c0d7e3f1087b41794c68fda0bbe424f0dae08481e8df2577a208689508
MD5 53eddf4d042b9600ae27cbfcade35404
BLAKE2b-256 49efa5c9e44d9665cd836468bc67d1cdb20fe6737c6a65753cd47095478be1c3

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win32-py3.6.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win32-py3.6.exe
  • Upload date:
  • Size: 904.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.6

File hashes

Hashes for swiglpk-4.64.0b.win32-py3.6.exe
Algorithm Hash digest
SHA256 481f32e298e2f4a474f241ec733ceb24f814d991d42591c4a149397d8dfdbc7c
MD5 0e268fb1b3882a630116fcdd66f6bc93
BLAKE2b-256 cc0e93ee953fd7f5ddec05ead69dce8ad2752ba2f5fb157aa710d24edb174557

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win32-py3.5.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win32-py3.5.exe
  • Upload date:
  • Size: 904.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.3

File hashes

Hashes for swiglpk-4.64.0b.win32-py3.5.exe
Algorithm Hash digest
SHA256 fc34708d38beda5d40639f6de49f5a651d0870b87aeaf0586ca07cd6ecaa1a9f
MD5 7674d193a5abd3d530963a5b257d9b3b
BLAKE2b-256 0b4286d2b160b48c4f301e06c4b4fc9a471268c62e7fc2e780ffa27854c22f6d

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win32-py3.4.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win32-py3.4.exe
  • Upload date:
  • Size: 630.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.4.4

File hashes

Hashes for swiglpk-4.64.0b.win32-py3.4.exe
Algorithm Hash digest
SHA256 e9c1e7bb8e6c1f6caad24c0bc4758a4da5616430d718d5c48e4e0828d7180405
MD5 eab4ea621d720766bb2e20d9b7a0141f
BLAKE2b-256 adb989d31928a6f651416a30f7a18fcc011bc986cd0653f76f96b708598a3152

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win32-py3.3.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win32-py3.3.exe
  • Upload date:
  • Size: 630.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.3.5

File hashes

Hashes for swiglpk-4.64.0b.win32-py3.3.exe
Algorithm Hash digest
SHA256 048b431fa2839a9d97677bd1708031635f0daa9b5a503f621965464faff4e3fe
MD5 755fe4f20d35d6e954f496bb4d11a088
BLAKE2b-256 32f2d14ef8d599487032f208cfeaae91e4f6875c760c559cb3e966e90e165e07

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b.win32-py2.7.exe.

File metadata

  • Download URL: swiglpk-4.64.0b.win32-py2.7.exe
  • Upload date:
  • Size: 630.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.10

File hashes

Hashes for swiglpk-4.64.0b.win32-py2.7.exe
Algorithm Hash digest
SHA256 8c97faef5640709581166b4694c9678be0c13a8339a639e94d9e49c92449b55b
MD5 8c3a8d5628f2e1462eeb3b72f318578c
BLAKE2b-256 702ab8a5e6913bd6206845bd2e38b6966b35847cadef292488ae317070e17807

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 522.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for swiglpk-4.64.0b0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c08240ca55f5b3a2b105897248432f5254378f3d5b7f64a31cf41e2477dc3ce7
MD5 08a9dd5a25ac2948e3c402710b1b9eba
BLAKE2b-256 2be3ae2ec4c21e7c54d57015d6dc1281f8de5a68bcc2c200d0ff624c9bc216e5

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 441.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for swiglpk-4.64.0b0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b0021c4e2d9ab730b72dcda776982f4ccb7af6ebc7c2a828e0f2f0ee81398faa
MD5 f02b740a21a9f37915430596aec77dcd
BLAKE2b-256 ff6fd96a408b697d0b0337e3fd5d99f84c7b48806b2b114b50f8523fbd8b399f

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 835e60502f23fd7ae6c685f8d60908444c6056a9a5e7a40cf2508ef1776533fc
MD5 5abb0003812248b91670f502ff44590a
BLAKE2b-256 52fcd99e100fd52549a675526f10d934ea0d7b9ac4dd7ca66cb51f9633203799

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 458.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 96b98023f50f647b6edd3ea19d398e0e7f9be1d8b7157a758d966b5c0b3292d0
MD5 fd060d2b4573b5432aa4e4837301c2e9
BLAKE2b-256 ad77dbfbe779487756df13ba051990abed4294ee72a4e00dc4c376d6a9abbca8

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for swiglpk-4.64.0b0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1651ce7eb10c6a8303a6905e77566d0b1b953fcb1dac0371e2258e81df6d35d5
MD5 8456cac7a06ef8df9b84937c5497144f
BLAKE2b-256 05fe9f6f8c835ac81c5e430d0b9defe9a567dd314d8fa881dcfb60e6e5825e03

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 522.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.6

File hashes

Hashes for swiglpk-4.64.0b0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8cb122c25c82f6a6ac44def85dc13a2cf3a8cbd1ea3e4723a823b2104d879839
MD5 d2e2ef64feeb3bf3a21383888ae01005
BLAKE2b-256 ce368f742c6bd3826b0ff78bf2eea9e9c672d596538e8918bed137f1bbbb6122

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 441.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.6

File hashes

Hashes for swiglpk-4.64.0b0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0bee1b3a5337c12daa073d8391fc19099d9e4d735ac7743dfb1fe27cfe7e691d
MD5 3f6292b8187c712fc64559b32da7279f
BLAKE2b-256 fa6a56265c0608b698d483489ccf9f7a0f56ab96050bfd51c896656662cdbb08

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 105a2d66ed36d5f35c7fff2b5c6895d62a165d4c60ba4269ef20ffd8f81010a5
MD5 74ab540baed1416415f76c2c8e5b7540
BLAKE2b-256 71cbb62f76c6c4d1ea3bbd2ac042af742ef47380aadf9736ba79f5101b6023e8

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 458.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 77eaca74a7b902312cff3a0cf8a63f02a2412d47a87fc5646c97ca1b3198c71a
MD5 35e4e6d2af81d6a181e34bec062b53ea
BLAKE2b-256 085efdb437a9dc8f95f7593aae5fed2fbad80c862d54dec954ba97faebcaf679

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for swiglpk-4.64.0b0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 638a09053ea8c98f76a90601e8c720c26a8575402a08d837642d9cf990797a5c
MD5 7f5037eac37e5bd6731c2e0a9ca49d98
BLAKE2b-256 04ca45d48b6388e08ddd07fd1fa661d611ffaae6449c7cb3aa51a8a83976774e

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 522.3 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.3

File hashes

Hashes for swiglpk-4.64.0b0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 bb3d28f9102e1bbc729748cbc7d5ae1041f19b41a35ef5aae58a8f3489a80d9d
MD5 8c1daccbd7af02a5a17a161f27adb92e
BLAKE2b-256 2de172b2e52caf244bd95ed4a33350b14636b566980ded4c14838365b4b0be64

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 441.6 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.3

File hashes

Hashes for swiglpk-4.64.0b0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 71e17034ca7d9e5dc1668ca0f72b24d400c1ef38f6e8fc76a85705286f554883
MD5 23a842c955d73452fc89130cac66cf3d
BLAKE2b-256 ca21a7d388c520af3e8cd77a4c6eb0a408eeef00c67a3700db5ce4510fdfaea1

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.8 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 96b33f3fffdbecd64983501892042ffea2b749036f42fced214fa57b69537ed7
MD5 ea299488ebef9288348745cf1121878f
BLAKE2b-256 12e270c9e4a631a5902c758026b1fd62a83891a469051da2a23b25c4ab53bb8f

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 458.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 10ab19e377726dd86e708d7d79a7be6f14e518d12a115de137588ef865a8997c
MD5 ed0d4795e2242ce6aafb4980668a1d74
BLAKE2b-256 9d0344e69d03487111b80b56634d1f88ee47decdf92c49cf1e62610b30d28292

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 506.1 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.4.4

File hashes

Hashes for swiglpk-4.64.0b0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 0c305c62fc79530473917f95efb432edcf0c4faa918e974c2f15836af83749f6
MD5 b60eb54c521d2788e9c658b43931fbea
BLAKE2b-256 375bd20e35bce141ad70d61e2e49bf63b0134ed23103e4699c0d6ba3a5a88050

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp34-cp34m-win32.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 434.0 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.4.4

File hashes

Hashes for swiglpk-4.64.0b0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 a01d4b2c5a90d29e2f7e5d47356ad029a63f7a6aa141ef869c8a24e023c2e6ee
MD5 fb3661c3a0db544b9d8014d88475fa42
BLAKE2b-256 999f6626a6107c4a065502c5a81e567fa235a72ad3b0c6ee7c168e1ef2b76124

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.7 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 381b3f67de920d87934a6199a3dbe3e26c75402e7e0f63105ac47807295e4951
MD5 967c95fbd1463a59eeaeef098180aff2
BLAKE2b-256 742a3b6d31a254bb1d95b6f3388dc491f5cd4fc446e928e33fd3779266ec8bf8

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 458.0 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b2968269c7f4e54974a1ccd7b29e46417fabdcd27cb89463396c2c7984caa53
MD5 519d04f06d67ef8fd1fb18ee9bbc6a20
BLAKE2b-256 776ecc4fb5f4406a8b0a6b933df33021b820d69a0e503d3a5e5e39cacb8ab243

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp33-cp33m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp33-cp33m-win_amd64.whl
  • Upload date:
  • Size: 509.1 kB
  • Tags: CPython 3.3m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.3.5

File hashes

Hashes for swiglpk-4.64.0b0-cp33-cp33m-win_amd64.whl
Algorithm Hash digest
SHA256 10f4af6777561d5712bb8b169ea161df2bea0af359bd0c1277623d121a2c143b
MD5 f7bf89eabc3233606b086259573d09f2
BLAKE2b-256 912652bd75786068ece5444ee34d93ef236e86fde544fe5a057beed10e4d9182

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp33-cp33m-win32.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp33-cp33m-win32.whl
  • Upload date:
  • Size: 436.9 kB
  • Tags: CPython 3.3m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.3.5

File hashes

Hashes for swiglpk-4.64.0b0-cp33-cp33m-win32.whl
Algorithm Hash digest
SHA256 e47d2690b4bb7d85b3dd8814cad912ed0afe79c47dd95cfd55ed59bc7a04ae36
MD5 5a78f58fde101111d5aac405b8d91676
BLAKE2b-256 89a42e9221a8268a5cda2c902799f7fddec3951e572f1958fb544e92d13bb611

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.6 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 52110110a57b2fac53a18e342650cdffa855e0da881874e7da566030e4de8746
MD5 bfa63ec33dd723d3279e877e86e84a25
BLAKE2b-256 6510a4b3a9f8c167bb3569332c66b30ff0391138143a378428e4985917004edd

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 458.2 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0f606b6033c208de47129af2490f56812220ec9d2bb5e76f0ade85c0a38bbc1
MD5 f16f467caee458b77021d06239a07020
BLAKE2b-256 a07ccc08369dc70822e12d57ff768fa99f6f4fbcc97dc2932b18546086addaff

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 502.4 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.10

File hashes

Hashes for swiglpk-4.64.0b0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c487cdbdc01b98a7995a32af5baf1a6cb69753068d817c4a4f2843d6b3cad071
MD5 09eac2aeef75914b5296c5fa8e42db74
BLAKE2b-256 0ca921782f5d62b476ae94474cf6926dbf3e8cf37008086caab6d5e70f94d6c9

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 428.9 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.10

File hashes

Hashes for swiglpk-4.64.0b0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 8080280ae86361a780a655609d941bf1d1be2b4bdf4ce06522c44de082eef020
MD5 5202e66d9bd7593158acb20727f57cda
BLAKE2b-256 be25d58e825d5727215e7ae4a8ed7bbee443e33f9779346a7391458a6221c3b2

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 503.6 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 29238a0be1f1abb994948500bc6d6d16ec0346e4dfb992c657ac2618a4c91555
MD5 99e7b5c7c7e937f2bb048aad1f7b24c7
BLAKE2b-256 5ac0901fba148010b11d0cc02cdff969942588cd4afcbfc0f429c93eefbba291

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.64.0b0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 458.2 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.5.6

File hashes

Hashes for swiglpk-4.64.0b0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 89a2f7ece1c57219d8bafa1763acbe5736e10adf2b5fdb53c97cf223aff80edc
MD5 5557eccf8bbeedde9c4a10de13c6a983
BLAKE2b-256 4e7b70f0e0a02113b365178d87cbc5053d1dadd50349b1950b53d2352503df9b

See more details on using hashes here.

File details

Details for the file swiglpk-4.64.0b0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for swiglpk-4.64.0b0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ea353f895542c24e9279fe700520950a62c9bed78c61f49e8648945794d0aac3
MD5 e1eb5cf041c40ce41336bfd6526064f8
BLAKE2b-256 933b8d48abba96b9b27bbf2f75147ed042438515741283994bf0d01f0081e99e

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