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

swiglpk-4.65.1.tar.gz (30.4 kB view details)

Uploaded Source

Built Distributions

swiglpk-4.65.1.win-amd64-py3.8.exe (1.1 MB view details)

Uploaded Source

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

Uploaded Source

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

Uploaded Source

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

Uploaded Source

swiglpk-4.65.1.win-amd64-py3.4.exe (756.0 kB view details)

Uploaded Source

swiglpk-4.65.1.win-amd64-py3.3.exe (756.0 kB view details)

Uploaded Source

swiglpk-4.65.1.win-amd64-py2.7.exe (753.2 kB view details)

Uploaded Source

swiglpk-4.65.1.win32-py3.8.exe (915.2 kB view details)

Uploaded Source

swiglpk-4.65.1.win32-py3.7.exe (914.7 kB view details)

Uploaded Source

swiglpk-4.65.1.win32-py3.6.exe (914.7 kB view details)

Uploaded Source

swiglpk-4.65.1.win32-py3.5.exe (914.5 kB view details)

Uploaded Source

swiglpk-4.65.1.win32-py3.4.exe (640.1 kB view details)

Uploaded Source

swiglpk-4.65.1.win32-py3.3.exe (640.1 kB view details)

Uploaded Source

swiglpk-4.65.1.win32-py2.7.exe (640.0 kB view details)

Uploaded Source

swiglpk-4.65.1-cp38-cp38-win_amd64.whl (556.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

swiglpk-4.65.1-cp38-cp38-win32.whl (463.8 kB view details)

Uploaded CPython 3.8 Windows x86

swiglpk-4.65.1-cp38-cp38-manylinux1_x86_64.whl (627.3 kB view details)

Uploaded CPython 3.8

swiglpk-4.65.1-cp38-cp38-manylinux1_i686.whl (572.9 kB view details)

Uploaded CPython 3.8

swiglpk-4.65.1-cp38-cp38-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

swiglpk-4.65.1-cp37-cp37m-win_amd64.whl (555.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

swiglpk-4.65.1-cp37-cp37m-win32.whl (463.3 kB view details)

Uploaded CPython 3.7m Windows x86

swiglpk-4.65.1-cp37-cp37m-manylinux1_x86_64.whl (627.1 kB view details)

Uploaded CPython 3.7m

swiglpk-4.65.1-cp37-cp37m-manylinux1_i686.whl (572.6 kB view details)

Uploaded CPython 3.7m

swiglpk-4.65.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

swiglpk-4.65.1-cp36-cp36m-win_amd64.whl (555.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

swiglpk-4.65.1-cp36-cp36m-win32.whl (463.3 kB view details)

Uploaded CPython 3.6m Windows x86

swiglpk-4.65.1-cp36-cp36m-manylinux1_x86_64.whl (627.1 kB view details)

Uploaded CPython 3.6m

swiglpk-4.65.1-cp36-cp36m-manylinux1_i686.whl (572.6 kB view details)

Uploaded CPython 3.6m

swiglpk-4.65.1-cp36-cp36m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

swiglpk-4.65.1-cp35-cp35m-win_amd64.whl (555.7 kB view details)

Uploaded CPython 3.5m Windows x86-64

swiglpk-4.65.1-cp35-cp35m-win32.whl (463.3 kB view details)

Uploaded CPython 3.5m Windows x86

swiglpk-4.65.1-cp35-cp35m-manylinux1_x86_64.whl (627.1 kB view details)

Uploaded CPython 3.5m

swiglpk-4.65.1-cp35-cp35m-manylinux1_i686.whl (572.6 kB view details)

Uploaded CPython 3.5m

swiglpk-4.65.1-cp34-cp34m-win_amd64.whl (540.8 kB view details)

Uploaded CPython 3.4m Windows x86-64

swiglpk-4.65.1-cp34-cp34m-win32.whl (456.1 kB view details)

Uploaded CPython 3.4m Windows x86

swiglpk-4.65.1-cp34-cp34m-manylinux1_x86_64.whl (627.1 kB view details)

Uploaded CPython 3.4m

swiglpk-4.65.1-cp34-cp34m-manylinux1_i686.whl (572.5 kB view details)

Uploaded CPython 3.4m

swiglpk-4.65.1-cp33-cp33m-win_amd64.whl (531.5 kB view details)

Uploaded CPython 3.3m Windows x86-64

swiglpk-4.65.1-cp33-cp33m-win32.whl (446.8 kB view details)

Uploaded CPython 3.3m Windows x86

swiglpk-4.65.1-cp27-cp27mu-manylinux1_x86_64.whl (627.1 kB view details)

Uploaded CPython 2.7mu

swiglpk-4.65.1-cp27-cp27mu-manylinux1_i686.whl (572.7 kB view details)

Uploaded CPython 2.7mu

swiglpk-4.65.1-cp27-cp27m-win_amd64.whl (536.5 kB view details)

Uploaded CPython 2.7m Windows x86-64

swiglpk-4.65.1-cp27-cp27m-win32.whl (451.0 kB view details)

Uploaded CPython 2.7m Windows x86

swiglpk-4.65.1-cp27-cp27m-manylinux1_x86_64.whl (627.1 kB view details)

Uploaded CPython 2.7m

swiglpk-4.65.1-cp27-cp27m-manylinux1_i686.whl (572.7 kB view details)

Uploaded CPython 2.7m

swiglpk-4.65.1-cp27-cp27m-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file swiglpk-4.65.1.tar.gz.

File metadata

  • Download URL: swiglpk-4.65.1.tar.gz
  • Upload date:
  • Size: 30.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1.tar.gz
Algorithm Hash digest
SHA256 0216db2930a6fe2c07ac7f0e28e76e9a2711a647836a3a4067113091c7ae221e
MD5 e36f14214a29f58c953738477f63c8b3
BLAKE2b-256 0ec99b0ec3e2ca942b6d067e84e52d72818fa9c3a1a1524671fcbec4841b54b2

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1.win-amd64-py3.8.exe.

File metadata

  • Download URL: swiglpk-4.65.1.win-amd64-py3.8.exe
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.0

File hashes

Hashes for swiglpk-4.65.1.win-amd64-py3.8.exe
Algorithm Hash digest
SHA256 32b79abe886081554833efab489a62efa6cb728b0056b5abf591a8fca40cd5cb
MD5 cec8e83644c8a2839737de4d53de7ed9
BLAKE2b-256 c18f2791fd30edd3f991e64ae8d9017591174a8dfff724fadc08b9ded19cefde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1.win-amd64-py3.7.exe
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5

File hashes

Hashes for swiglpk-4.65.1.win-amd64-py3.7.exe
Algorithm Hash digest
SHA256 a52e471774296725840b69c5b46714a9e2219e61e86f24caca2885a361fd8c9f
MD5 129a7d1c403b5c8b0612e7e320765ad9
BLAKE2b-256 788df88b6027a1bdf8d5b1748e5075b1aa1980272b415f09c26f3182ff4b5970

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1.win-amd64-py3.6.exe
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.8

File hashes

Hashes for swiglpk-4.65.1.win-amd64-py3.6.exe
Algorithm Hash digest
SHA256 2c0069216925eea54fd52917a15b8abf757399689daa5ec0c9dca3cf6ddc9cdd
MD5 062daa67e00808cb58b6842abe9e4d95
BLAKE2b-256 201f5df293c664f4fafecfea3fb8ade6c37d5d156c29469bde1cc7859a4c18d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1.win-amd64-py3.5.exe
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.4

File hashes

Hashes for swiglpk-4.65.1.win-amd64-py3.5.exe
Algorithm Hash digest
SHA256 c5d128c6e52ad6ede4cc5fa49598f3656866d77201cec220c7ff685af51f74c3
MD5 e826baddbe9146ac992d0b752367eae1
BLAKE2b-256 26f128c6289d27004b0cc02e6b09aafc2cf47f41a1c09dbec69c016cfbb702ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1.win-amd64-py3.4.exe
  • Upload date:
  • Size: 756.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.4.4

File hashes

Hashes for swiglpk-4.65.1.win-amd64-py3.4.exe
Algorithm Hash digest
SHA256 c1728fdb2ddb68527feb6da810ea4ca6b50ce03bf89be30962a268ff9614ed44
MD5 4368bf11d6f214f62b0cb53286c2939b
BLAKE2b-256 c853455346c64c638c911bef6fb2b75ac0d3542b541c86ded069f66128a6c81f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1.win-amd64-py3.3.exe
  • Upload date:
  • Size: 756.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.3.5

File hashes

Hashes for swiglpk-4.65.1.win-amd64-py3.3.exe
Algorithm Hash digest
SHA256 d1e640cd86932c8acedafb9b73268fec6402c1b8929a5ee49bfc25f437dec788
MD5 d611f9dc73ad2a56403a1156359afa2c
BLAKE2b-256 a55efd4f8e0bf9809dcd7c54cff17dfb007834b7d677b333bbd180ebcf10aa76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1.win-amd64-py2.7.exe
  • Upload date:
  • Size: 753.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/2.7.10

File hashes

Hashes for swiglpk-4.65.1.win-amd64-py2.7.exe
Algorithm Hash digest
SHA256 f209f40ab6b55c66c7556a4b2badc6f2b61defcf29b0f90bdedca594287f6ed6
MD5 6e064c14fd70f1077af2cf817d39f615
BLAKE2b-256 59e37e29a755425f5880786308cc3af8650b5175e8799467aeade75b776b8a7d

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1.win32-py3.8.exe.

File metadata

  • Download URL: swiglpk-4.65.1.win32-py3.8.exe
  • Upload date:
  • Size: 915.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.0

File hashes

Hashes for swiglpk-4.65.1.win32-py3.8.exe
Algorithm Hash digest
SHA256 4b18db375381054164800c1db4faa36b5716172d952b0153fa2eb0eb58743dd3
MD5 ad92ec22a055ac1aae30afc5997ede3f
BLAKE2b-256 956d4eaf6bf3f8f5336cd49040d4854b0d041de4a26ae59afc06deda0b03301e

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1.win32-py3.7.exe.

File metadata

  • Download URL: swiglpk-4.65.1.win32-py3.7.exe
  • Upload date:
  • Size: 914.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5

File hashes

Hashes for swiglpk-4.65.1.win32-py3.7.exe
Algorithm Hash digest
SHA256 5fa8e97de6927a9ace4d8c197a374bbc2365b23bc836875a0d9b62bbb61962c1
MD5 cc156ca498e2c3ef13d12e9a0d5d7dbe
BLAKE2b-256 0680c175c2afdf5ad348c3543f0478b614047d62fe3df5ff2336f786eedabab5

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1.win32-py3.6.exe.

File metadata

  • Download URL: swiglpk-4.65.1.win32-py3.6.exe
  • Upload date:
  • Size: 914.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.8

File hashes

Hashes for swiglpk-4.65.1.win32-py3.6.exe
Algorithm Hash digest
SHA256 cbf599d81ec8ed9ab3430c39bffd572c320b3f226d4a2fd8cf91dd4051ff7938
MD5 48d03408c34e568ef54fc7f0c5c46d11
BLAKE2b-256 58ecb09eb48044e3ac13d4dfd20ac2e9127435a93a46fa30852621deb8529145

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1.win32-py3.5.exe.

File metadata

  • Download URL: swiglpk-4.65.1.win32-py3.5.exe
  • Upload date:
  • Size: 914.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.4

File hashes

Hashes for swiglpk-4.65.1.win32-py3.5.exe
Algorithm Hash digest
SHA256 37a59244025640582d45b9667109a2b2fc771776779a46ae13bc09653a42217b
MD5 2cd5549c4e49b9485b47b2c8ee0e37f3
BLAKE2b-256 7cade81d99255061a5ba3ef380ca1145998cbc85a447daacca44daa95f89815d

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1.win32-py3.4.exe.

File metadata

  • Download URL: swiglpk-4.65.1.win32-py3.4.exe
  • Upload date:
  • Size: 640.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.4.4

File hashes

Hashes for swiglpk-4.65.1.win32-py3.4.exe
Algorithm Hash digest
SHA256 c60448c9327098e0eae86103bbab8b05c5bfb61f66e286c4ba6d2c4a41afeb22
MD5 25dec99824236e4bd0685dda327cce56
BLAKE2b-256 7f8ee6b596c64783e5bbd4d2de5a3e2e0d3b2b3db3af52c465d493d1af05b85f

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1.win32-py3.3.exe.

File metadata

  • Download URL: swiglpk-4.65.1.win32-py3.3.exe
  • Upload date:
  • Size: 640.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.3.5

File hashes

Hashes for swiglpk-4.65.1.win32-py3.3.exe
Algorithm Hash digest
SHA256 9db990e43fbbe565062605358a565c38b744464767e11cfbc83fec77e529351c
MD5 5f348da0d8fe8af00b6188a6a0fb8417
BLAKE2b-256 08f3679c9850433ccb7e024ae1ff0cab71e05f2f601ca7fc4ebf463c815262f5

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1.win32-py2.7.exe.

File metadata

  • Download URL: swiglpk-4.65.1.win32-py2.7.exe
  • Upload date:
  • Size: 640.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/2.7.10

File hashes

Hashes for swiglpk-4.65.1.win32-py2.7.exe
Algorithm Hash digest
SHA256 60166ec918f4ea2ff1a179fd0e504ffa0d0ff5b7dc61e443aa52217556cfd161
MD5 291cd12fc064eb74f7f6806bdbb471e3
BLAKE2b-256 3fabf5321a7057de0435de5efd5fc46d6554fad2aeb06cf38eece05973e96240

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 556.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.0

File hashes

Hashes for swiglpk-4.65.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 320f26cd59a367bb48546b6a44afcbf021869605cb32ac9d9bade79adda9d9c8
MD5 7816d963fe7d8d04b807c6c5a1550937
BLAKE2b-256 c2d5e1b62048ef50521c4f7666aa86ac51b185aa84dd69b294d16724bd8b82a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 463.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.0

File hashes

Hashes for swiglpk-4.65.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a98c382c83052074dac166c4163f2c5b11b82d23d1ca9a8fb8c12f71c2ffd6de
MD5 17f283db9b64c471db63c0756cce2c33
BLAKE2b-256 7463722a807675bc81c37ba5eb651d1913500149ea0673ebe25f90e212c102f7

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 627.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0f8bc6f30ddbfc5dfcdf22c4efc027d504b542ef84ad29663ecbcbc56d0de35e
MD5 9ed6e1ad7858d1c1f0a82cde2ace4e1a
BLAKE2b-256 41d63cc60e786ba14301b88721af59d230847b60b17d78a5d38373492ef1a11b

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 572.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 be4381cbffbc660ce7fdcb6b7ddba9d35d065a2a0c1b029043caf0fcbdb0da90
MD5 a962160b88e5b3286fe644582b4b7a62
BLAKE2b-256 df28b84d70a2255080ee64d473676a8a154a875bbb038e9be8fbf5085eea3b23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1

File hashes

Hashes for swiglpk-4.65.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4d5ddd688b5d077dc3c7f3c16c0a0c6b92331a626a8655edd7a76a42566ee20
MD5 fa589b3e11f2d4e1ca3383ade7e42d62
BLAKE2b-256 9def96960f902b5dd7e6843f1feffe606b128be0650ab05dfdb788cb43803d42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 555.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5

File hashes

Hashes for swiglpk-4.65.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1c6bc44cb8011d1e95e02db6a7df9588f3d95eb0f1e6118cbc43dfa54f288d63
MD5 5df0ce70567e1ca43ab70571432c947c
BLAKE2b-256 8572efaf5486ac214e2adbd18bf07318fc328d4a663e909d204832d128c22090

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 463.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5

File hashes

Hashes for swiglpk-4.65.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3c6e313bf3f40b840fdffa875e274a21d9fac205ade6e433bbf9a01a8d3cdd58
MD5 4ef5ffc487c0b97a5ae3c5b054f40a02
BLAKE2b-256 2d93609d863a71d5bf787ceb63745e52d016662dea6bd8c28225541228d7da8b

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 627.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1b9245810ca3c9ab66b1e8e2d19277f2f3d99f1afccbff3000ce736387932e83
MD5 d374801e90a307a56e66813d576c0999
BLAKE2b-256 f94df374d2d9a5b2de983b2b636197a0ad00d35b85818e3ee5795217099c9f3e

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 572.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b1dad93c39fed4002798a0d9e7d7b0ac95927bffba9557ff94d93e8a1f42284
MD5 13cb1c2d70d89e336fba522b2a763f7d
BLAKE2b-256 f327cdcabe3f55ad91d265c0977030ffd33dc9fb31d6ac2c5f2feae4b23385ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for swiglpk-4.65.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5adbffc2e1f90c108c44f70629c325176cef610bf360de73586bf043c0e6b615
MD5 d4d6eea0bffd197be23002cf7b3d8625
BLAKE2b-256 6808dd897ddb3ceb17ed6831fbbd0a8a2c317424b4db3921751c9642e4e922c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 555.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.8

File hashes

Hashes for swiglpk-4.65.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5d93bd21e8b67af117f15dfecd8f657d2d21f6a6d5f0024ea8c0d60bb4671a86
MD5 9f5a9d71ee6918df165a12b6e99e9240
BLAKE2b-256 fbb0852bfe7505022f30b676a32d0c83a657d9655eeb24ebd3394b79c0437a75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 463.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.8

File hashes

Hashes for swiglpk-4.65.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c1ccbb15b6a81b66dde4a7752f96e972ea2848eb6cf9914b94e26bd8272c9abc
MD5 d6d9e53d4e06dcbd7859e021ba09e9ca
BLAKE2b-256 a15e85d148ccdace8932c2d015ae0a6c86fec7286763134d55f2021e2939f319

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 627.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c229956dd6ed0ce37893c56b9182f0c23b293303fe1e8e4c8e4561f37fa286a6
MD5 d359b26a272cd363ca73874b1ce22ca7
BLAKE2b-256 8808f9d8bea97a0e811ee538a8ad84529437c0093efbcdd19cc5427f45e73502

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 572.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f2f603a0e91a15e36e4cf4f62397b4ebc061e029113b1b759b3e8bbaa9c5b26
MD5 5a9d4db3cc88188f346f1d10cc5e0a27
BLAKE2b-256 4bda63d9b437a7286215f87cf0effff6454863c60e90452ce51cdc9462840948

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swiglpk-4.65.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.8

File hashes

Hashes for swiglpk-4.65.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b33ba24ceadbc8db34009c50b068febe47f337787b7c4bc033a8184725b94f40
MD5 96c37f8d042360fb90c88be0e19e1bcc
BLAKE2b-256 f1aad260d60f1539a893fde3b570e16f7c90a06626c1f713e2d091ae00343147

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 555.7 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.4

File hashes

Hashes for swiglpk-4.65.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 6285d3fd2ac35220e5281a76ee5e38e1b0ba60c6b597b41110d49d0a99b749af
MD5 0c6dab4717dcf61ac876418cfde9f178
BLAKE2b-256 1aade47d78c7b307f784ceb26b17c8c7e6d55f778d40c6e1cb01fe782cb8bdf2

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 463.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.4

File hashes

Hashes for swiglpk-4.65.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e949d4c5c259aa38046eda5b3e7639227efd28145574a5549a842de19e1b415a
MD5 8961bf4d156578972be1ff9d334a89e2
BLAKE2b-256 e636c7179af48d5839940d1d96b0888907eb7cf42cc13577c8aca965bf8f5059

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 627.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8de91db1b6da9702e19542714203463b8cd85cdf88b70a1a8dbb9492f2c8877a
MD5 852a6442ac5f6a2bac71d5637b7064d7
BLAKE2b-256 8c5c27f4ec9f6fa44139b6dfc6b8bc4adcb69428289b8efb162292cc3f355744

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 572.6 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 97fa1965c843979b6c4aaf84416a0749dd869cc78fadba825394b86450f71f73
MD5 b1839a08f151052c488af4573a8f390e
BLAKE2b-256 7f000088b2bfea6de9d692a2cfbea7d6f8d545bca44b20210ea1576cb338d3e8

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 540.8 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.4.4

File hashes

Hashes for swiglpk-4.65.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 5444f08ac1e20127190106504a1a06e56bc5edfe647cdfb4f6c3b3f46adc8b24
MD5 70c27e2e82f405830d5d6c0cb6d41c6a
BLAKE2b-256 80b7f5e5ea066914937aba817239801e4382f5823f2c15dd9c56860dc6db701e

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp34-cp34m-win32.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 456.1 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.4.4

File hashes

Hashes for swiglpk-4.65.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 30a3500bd0e121a425ad8181deda35763c9138472c1aa8291aa359b32f01b085
MD5 31da6ca11ffdc08ee2a38835ba80caff
BLAKE2b-256 647f638055c5a6ba62eb1e7fbd2528764ff62cf92ae5e1b7e649e3daa8f5e5f4

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 627.1 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3be158abf6ca501457cf1177933fbacc46a636a5d7ed86a8ef8f1049d62cc238
MD5 f4eaa775c225db000bc12213d6b15714
BLAKE2b-256 71e8fbc507b0cb9bb2709c716230e1fdb7573d0426b74e535d0fbfe4ef830131

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 572.5 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1855e7646ce0b89d3e931c2d9eda868779fe7e81a017f69ad17c71b2982ae97f
MD5 53fdb495eb6ec27b49724b1ce8f0b72b
BLAKE2b-256 4bfbba811f6b491c2a0c1b9f600f2f57302a1814fa78d7dbc8151d47ac2cb5df

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp33-cp33m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp33-cp33m-win_amd64.whl
  • Upload date:
  • Size: 531.5 kB
  • Tags: CPython 3.3m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.3.5

File hashes

Hashes for swiglpk-4.65.1-cp33-cp33m-win_amd64.whl
Algorithm Hash digest
SHA256 eca95f2d3ec26c8a3598f859077ff4af319cc32d6aa28a43e8322d41a060a4c1
MD5 c29cea460e577ca04104547a93a207de
BLAKE2b-256 123627fb1a590087c3f605837d024c1584fd1bc745659e64ef838d6f800ff3db

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp33-cp33m-win32.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp33-cp33m-win32.whl
  • Upload date:
  • Size: 446.8 kB
  • Tags: CPython 3.3m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.3.5

File hashes

Hashes for swiglpk-4.65.1-cp33-cp33m-win32.whl
Algorithm Hash digest
SHA256 4a34bab9cfd4a1a931ee477e515b986ad77ded8ec14cadafbdf9060d1292cd99
MD5 13e61ec870e5c933655dc877bdb82464
BLAKE2b-256 93c8bb576b6a267ded6b5e7b912d5d3fbc97930d6552f03c9316f0d60cad498e

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 627.1 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 911c3c1f84dc49f7d5219cd11c17d8b10d07e90cb15acf13ad3b2168565c2efc
MD5 89142c13126ba7e41edc7f09dc3f0bba
BLAKE2b-256 e15508a9e00ddf44093f1e0ab0fe4b7ad954aa5c0a1aa55a982de032d5fec9fe

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 572.7 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d14d711bf28293c2b5743a061c24352dee4a30e88a046ed02433ee016e107eb
MD5 88ad57eca33251a17d6cc9c70ea506e3
BLAKE2b-256 e622fcb4bc5d86f0c000b35748f228c54309ded587c89c8507eec58f9f778bce

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 536.5 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/2.7.10

File hashes

Hashes for swiglpk-4.65.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 1cc3a59566591dc6f0fe43317b30c12c360651f83d614e68f9875ecb1fc433c3
MD5 4ebc1b49649336b73b63751391651c48
BLAKE2b-256 9ad5cdb0622df85ff97063ff527a5aa9a22431f327d0c04591963e7220be4b23

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 451.0 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/2.7.10

File hashes

Hashes for swiglpk-4.65.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 f308ab9d3af41795e7704a77603d792fa262127c5c73d81a0d37792f73cc7afc
MD5 3086123b9f723a9c7d69dad00b6155c4
BLAKE2b-256 5558ee5ca92eae07d1f4653d7b6c9779e8683eee2b2819d684f3b45afd92d65f

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 627.1 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d27a6a58a5179fb044eef66ed4b809652fdb1d485c0252a5037ceaab73099ee0
MD5 bdf0577ee8cfb9edc3cabd7749c768c2
BLAKE2b-256 52ea7e64a56c1901dc9997b85240843e95cceeac14f240d08b2268e2f14b6c31

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 572.7 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.6

File hashes

Hashes for swiglpk-4.65.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d9d01eed8f2a9d10180a86a8f80008c607149c8d1179e163d12f04827d5698b3
MD5 93893ca0b52d5216403a2cfddd40d40d
BLAKE2b-256 cc96cc64ed093985bf1e7f8f75b232bcd13bbe5a60aece6810d28469426d3e59

See more details on using hashes here.

File details

Details for the file swiglpk-4.65.1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swiglpk-4.65.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/2.7.17

File hashes

Hashes for swiglpk-4.65.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa5d878e53f8316f3b40cdd3f79293b871b4dd49e3bfa5c92b705c0eb8649290
MD5 86beb44d72a72c0af02efcee8b17805e
BLAKE2b-256 b0e9ecf479c60ab7cf463497f9aa9c8e4c2661ae034a6b5c87d490cb2ec83056

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