scikit-glpk


Namescikit-glpk JSON
Version 0.5.0 PyPI version JSON
download
home_pagehttps://github.com/mckib2/scikit-glpk
SummaryPython linprog interface for GLPK
upload_time2023-01-12 05:07:57
maintainer
docs_urlNone
authorNicholas McKibben
requires_python>=3.8
licenseMIT
keywords glpk linprog scikit
VCS
bugtrack_url
requirements numpy scipy
Travis-CI No Travis.
coveralls test coverage No coveralls.
            sckit-glpk
----------

Proof of concept Python wrappers for GLPK.

Installation
------------

Should be an easy pip installation:

.. code-block::

   pip install scikit-glpk

A Python-compatible C compiler is required to build GLPK from source.  By default a precompiled
wheel is used during pip installation, so you don't have to compile if you don't want to.
Wheels are available for Linux, Mac, and Windows for supported versions of Python.

Usage
-----

There are a few things in this package:

- `glpk()` : the wrappers over the solvers (basically acts like Python-friendly `glpsol`)
- `mpsread()` : convert an MPS file to some matrices
- `mpswrite()` : convert matrices to MPS file
- `lpwrite()` : convert matrices to CPLEX LP file

.. code-block::

   from glpk import glpk, GLPK

   res = glpk(
       c, A_ub, b_ub, A_eq, b_eq, bounds, solver, sense, maxit, timeout,
       basis_fac, message_level, disp, simplex_options, ip_options,
       mip_options)

   from glpk import mpsread, mpswrite, lpwrite

   c, A_ub, b_ub, A_eq, b_eq, bounds = mpsread(
       filename, fmt=GLPK.GLP_MPS_FILE, ret_glp_prob=False)

   success = mpswrite(c, A_ub, b_ub, A_eq, b_eq, bounds, sense, filename, fmt)

   success = lpwrite(c, A_ub, b_ub, A_eq, b_eq, bounds, sense, filename)

There's lots of information in the docstrings for these functions, please check there for a complete listing and explanation.

Notice that `glpk` is the wrapper and `GLPK` acts as a namespace that holds constants.

`bounds` behaves the same as the `scipy.optimize.linprog`  `bounds` argument.  They are converted to GLPK-style bounds first thing.


GLPK stuffs
-----------

GLPK is installed with the module and a `linprog`-like wrapper is provided with a ctypes backend.  A pared-down version of glpk-4.65 is vendored from `here <http://ftp.gnu.org/gnu/glpk/>`_ and compile instructions are scraped from the makefiles.  I'll try my best to support cross-platform pip installations.  Wheels are current being built for Linux/Mac/Windows.


Background
----------

The `GNU Linear Programming Kit (GLPK) <https://www.gnu.org/software/glpk/>`_ has simplex, interior-point, and MIP solvers all callable from a C library.  We would like to be able to use these from within Python and be potentially included as a backend for scipy's `linprog` function.

Note that there are several projects that aim for something like this, but which don't match up for what I'm looking for:

- `python-glpk <https://www.dcc.fc.up.pt/~jpp/code/python-glpk/>`_ : no longer maintained (dead as of ~2013)
- `PyGLPK <http://tfinley.net/software/pyglpk/>`_ : GPL licensed
- `PyMathProg <https://pypi.org/project/pymprog/>`_ : GPL licensed, uses different conventions than that of `linprog`
- `Pyomo <https://github.com/Pyomo/pyomo>`_ : Big, uses different conventions than that of `linprog`
- `CVXOPT <https://cvxopt.org/>`_ : Big, GPL licensed
- `Sage <https://git.sagemath.org/sage.git/tree/README.md>`_ : Big, GPL licensed
- `pulp <https://launchpad.net/pulp-or>`_ : Calls `glpsol` from command line (writes problems, solutions to file instead of shared memory model -- this is actually easy to do)
- `yaposib <https://github.com/coin-or/yaposib>`_ : seems dead? OSI-centric
- `ecyglpki <https://github.com/equaeghe/ecyglpki/tree/0.1.0>`_ : GPL licensed, dead?
- `swiglpk <https://github.com/biosustain/swiglpk>`_ : GPL licensed, low level
- `optlang <https://github.com/biosustain/optlang>`_ : sympy-like, cool project otherwise

Why do we want this?
--------------------

GLPK has a lot of options that the current scipy solvers lack as well as robust MIP support (only basic in HiGHS).  It is also a standard, well known solver in the optimization community.  The only thing that I want that it lacks on an API level is robust support for column generation.  Easy access to GLPK as a backend to `linprog` would be very welcome (to me at least).  I also find access to a linprog LP description (c, A_ub, etc.) to MPS/LP file format convienent for interacting with other solvers such as `HiGHS <https://github.com/ERGO-Code/HiGHS>`_.

Approach
--------

Since the underlying API is quite simple and written in C and only C, `ctypes` is a good fit for this.

GLPK is packaged but I may want to make it so the user can optionally specify where the installation is on a user's computer (i.e., path to the shared library) so GLPK is not packaged with `scikit-glpk` and/or scipy.  `linprog` could then presumably route the problem to the GLPK backend instead of HiGHS or the existing native python solvers.

The `ctypes` wrapper is required for integrating GLPK into the Python runtime.  Instead of using MPS files to communicate problems and reading solutions from files, `scipy.sparse.coo_matrix` and `numpy` arrays can be passed directly to the library.  More information can be extracted from GLPK this way as well (For example, there is no way to get iteration count except by reading directly from the underlying structs.  It is only ever printed to stdout, no other way to get it).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mckib2/scikit-glpk",
    "name": "scikit-glpk",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "glpk linprog scikit",
    "author": "Nicholas McKibben",
    "author_email": "nicholas.bgp@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/df/a2/e2258dd3ba556c8da6c2f7c8bf12d938af4fa99d634a81bb65a627b35084/scikit-glpk-0.5.0.tar.gz",
    "platform": null,
    "description": "sckit-glpk\n----------\n\nProof of concept Python wrappers for GLPK.\n\nInstallation\n------------\n\nShould be an easy pip installation:\n\n.. code-block::\n\n   pip install scikit-glpk\n\nA Python-compatible C compiler is required to build GLPK from source.  By default a precompiled\nwheel is used during pip installation, so you don't have to compile if you don't want to.\nWheels are available for Linux, Mac, and Windows for supported versions of Python.\n\nUsage\n-----\n\nThere are a few things in this package:\n\n- `glpk()` : the wrappers over the solvers (basically acts like Python-friendly `glpsol`)\n- `mpsread()` : convert an MPS file to some matrices\n- `mpswrite()` : convert matrices to MPS file\n- `lpwrite()` : convert matrices to CPLEX LP file\n\n.. code-block::\n\n   from glpk import glpk, GLPK\n\n   res = glpk(\n       c, A_ub, b_ub, A_eq, b_eq, bounds, solver, sense, maxit, timeout,\n       basis_fac, message_level, disp, simplex_options, ip_options,\n       mip_options)\n\n   from glpk import mpsread, mpswrite, lpwrite\n\n   c, A_ub, b_ub, A_eq, b_eq, bounds = mpsread(\n       filename, fmt=GLPK.GLP_MPS_FILE, ret_glp_prob=False)\n\n   success = mpswrite(c, A_ub, b_ub, A_eq, b_eq, bounds, sense, filename, fmt)\n\n   success = lpwrite(c, A_ub, b_ub, A_eq, b_eq, bounds, sense, filename)\n\nThere's lots of information in the docstrings for these functions, please check there for a complete listing and explanation.\n\nNotice that `glpk` is the wrapper and `GLPK` acts as a namespace that holds constants.\n\n`bounds` behaves the same as the `scipy.optimize.linprog`  `bounds` argument.  They are converted to GLPK-style bounds first thing.\n\n\nGLPK stuffs\n-----------\n\nGLPK is installed with the module and a `linprog`-like wrapper is provided with a ctypes backend.  A pared-down version of glpk-4.65 is vendored from `here <http://ftp.gnu.org/gnu/glpk/>`_ and compile instructions are scraped from the makefiles.  I'll try my best to support cross-platform pip installations.  Wheels are current being built for Linux/Mac/Windows.\n\n\nBackground\n----------\n\nThe `GNU Linear Programming Kit (GLPK) <https://www.gnu.org/software/glpk/>`_ has simplex, interior-point, and MIP solvers all callable from a C library.  We would like to be able to use these from within Python and be potentially included as a backend for scipy's `linprog` function.\n\nNote that there are several projects that aim for something like this, but which don't match up for what I'm looking for:\n\n- `python-glpk <https://www.dcc.fc.up.pt/~jpp/code/python-glpk/>`_ : no longer maintained (dead as of ~2013)\n- `PyGLPK <http://tfinley.net/software/pyglpk/>`_ : GPL licensed\n- `PyMathProg <https://pypi.org/project/pymprog/>`_ : GPL licensed, uses different conventions than that of `linprog`\n- `Pyomo <https://github.com/Pyomo/pyomo>`_ : Big, uses different conventions than that of `linprog`\n- `CVXOPT <https://cvxopt.org/>`_ : Big, GPL licensed\n- `Sage <https://git.sagemath.org/sage.git/tree/README.md>`_ : Big, GPL licensed\n- `pulp <https://launchpad.net/pulp-or>`_ : Calls `glpsol` from command line (writes problems, solutions to file instead of shared memory model -- this is actually easy to do)\n- `yaposib <https://github.com/coin-or/yaposib>`_ : seems dead? OSI-centric\n- `ecyglpki <https://github.com/equaeghe/ecyglpki/tree/0.1.0>`_ : GPL licensed, dead?\n- `swiglpk <https://github.com/biosustain/swiglpk>`_ : GPL licensed, low level\n- `optlang <https://github.com/biosustain/optlang>`_ : sympy-like, cool project otherwise\n\nWhy do we want this?\n--------------------\n\nGLPK has a lot of options that the current scipy solvers lack as well as robust MIP support (only basic in HiGHS).  It is also a standard, well known solver in the optimization community.  The only thing that I want that it lacks on an API level is robust support for column generation.  Easy access to GLPK as a backend to `linprog` would be very welcome (to me at least).  I also find access to a linprog LP description (c, A_ub, etc.) to MPS/LP file format convienent for interacting with other solvers such as `HiGHS <https://github.com/ERGO-Code/HiGHS>`_.\n\nApproach\n--------\n\nSince the underlying API is quite simple and written in C and only C, `ctypes` is a good fit for this.\n\nGLPK is packaged but I may want to make it so the user can optionally specify where the installation is on a user's computer (i.e., path to the shared library) so GLPK is not packaged with `scikit-glpk` and/or scipy.  `linprog` could then presumably route the problem to the GLPK backend instead of HiGHS or the existing native python solvers.\n\nThe `ctypes` wrapper is required for integrating GLPK into the Python runtime.  Instead of using MPS files to communicate problems and reading solutions from files, `scipy.sparse.coo_matrix` and `numpy` arrays can be passed directly to the library.  More information can be extracted from GLPK this way as well (For example, there is no way to get iteration count except by reading directly from the underlying structs.  It is only ever printed to stdout, no other way to get it).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python linprog interface for GLPK",
    "version": "0.5.0",
    "split_keywords": [
        "glpk",
        "linprog",
        "scikit"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e58248e6bfc18f1414e7674bec3432f539714a54bfdc8d264f79ad24fb90c0a",
                "md5": "d2361b6d3f6a751a688dd8acfa998a42",
                "sha256": "701eb359917d554cfdcd9f3292e40cb7cccc7593fec29b3f042dca68935a6871"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2361b6d3f6a751a688dd8acfa998a42",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 550875,
            "upload_time": "2023-01-12T05:07:41",
            "upload_time_iso_8601": "2023-01-12T05:07:41.739552Z",
            "url": "https://files.pythonhosted.org/packages/8e/58/248e6bfc18f1414e7674bec3432f539714a54bfdc8d264f79ad24fb90c0a/scikit_glpk-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66ac6e27792c3ca84a0b5eed4b47addf3fe0a0874dbd4ce921f1ae6ca111c3df",
                "md5": "baa3a68b1f727c3d6c35a7dd61b9cf61",
                "sha256": "deaae614f0b7043fb63e7b9e047bd1bd6c437fe00f31a9c24c884369d67997df"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "baa3a68b1f727c3d6c35a7dd61b9cf61",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1698819,
            "upload_time": "2023-01-12T05:07:43",
            "upload_time_iso_8601": "2023-01-12T05:07:43.273480Z",
            "url": "https://files.pythonhosted.org/packages/66/ac/6e27792c3ca84a0b5eed4b47addf3fe0a0874dbd4ce921f1ae6ca111c3df/scikit_glpk-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d589716bf9f0638f04cd33229af2f16ac2adbf50570d487e685de97b222302a2",
                "md5": "3ea358f15ba1e172d45bf839f0971eb8",
                "sha256": "b5e8d30145f99191ed394a6d7ca9b1cb8ba988dd4a2b92a42cd7a32ff53208a9"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3ea358f15ba1e172d45bf839f0971eb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 533313,
            "upload_time": "2023-01-12T05:07:44",
            "upload_time_iso_8601": "2023-01-12T05:07:44.739457Z",
            "url": "https://files.pythonhosted.org/packages/d5/89/716bf9f0638f04cd33229af2f16ac2adbf50570d487e685de97b222302a2/scikit_glpk-0.5.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e97efcb1a27b24fdb1fc19c174fc11cbcf706e12a6bab095789188c44c17f2f9",
                "md5": "727bf8399dc2075a6fd36844d40aaeb6",
                "sha256": "ddf4983af5ded2cc05d9951888ba72e4eb0bc5c91bf053f2d70d72dbaed0f8a2"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "727bf8399dc2075a6fd36844d40aaeb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 550868,
            "upload_time": "2023-01-12T05:07:45",
            "upload_time_iso_8601": "2023-01-12T05:07:45.828529Z",
            "url": "https://files.pythonhosted.org/packages/e9/7e/fcb1a27b24fdb1fc19c174fc11cbcf706e12a6bab095789188c44c17f2f9/scikit_glpk-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d381d281846aca979ba51ee9a5cecfa42ea9d22e6309f72c54d38a91d64f248f",
                "md5": "0ab7c18ad8edf081c6f9a47b7107a9a5",
                "sha256": "88c770dddc5c357f8f94a75ddfdf4386d5b114a7daac6c7fdbc0b2fabee70025"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ab7c18ad8edf081c6f9a47b7107a9a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1698819,
            "upload_time": "2023-01-12T05:07:47",
            "upload_time_iso_8601": "2023-01-12T05:07:47.029472Z",
            "url": "https://files.pythonhosted.org/packages/d3/81/d281846aca979ba51ee9a5cecfa42ea9d22e6309f72c54d38a91d64f248f/scikit_glpk-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "492dbafe52d807e315ffc3ad5374addaf150e1e1ab5400ad810060371142100c",
                "md5": "53776f003de5b80fc2b93912cbf4151c",
                "sha256": "ef84286b4d644a7e6944afa3e8cad97f2a4cd0f6d77b58911381919592013ca3"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "53776f003de5b80fc2b93912cbf4151c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 533313,
            "upload_time": "2023-01-12T05:07:48",
            "upload_time_iso_8601": "2023-01-12T05:07:48.347842Z",
            "url": "https://files.pythonhosted.org/packages/49/2d/bafe52d807e315ffc3ad5374addaf150e1e1ab5400ad810060371142100c/scikit_glpk-0.5.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c53685fd050ac4391cc08bcd2fd23a1b15039fff03723d18f3e1c03a232303c",
                "md5": "bf17a0eed033db296194138133b782b5",
                "sha256": "f04c82095ae50f78ca01e64bbe023cd272f584c19aace2ad46019e160cdc9a36"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf17a0eed033db296194138133b782b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 550848,
            "upload_time": "2023-01-12T05:07:49",
            "upload_time_iso_8601": "2023-01-12T05:07:49.377584Z",
            "url": "https://files.pythonhosted.org/packages/1c/53/685fd050ac4391cc08bcd2fd23a1b15039fff03723d18f3e1c03a232303c/scikit_glpk-0.5.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea4d7c1fe3bafc1907febd41211e49193642b4a911c0f75f595c7d71a0e4cfae",
                "md5": "a612bf79e31407f985d72310a4d188c0",
                "sha256": "f1eaa0d237efe04d1d8bc0d54ae624086855af10759e9709da8bf23a2c785a6a"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a612bf79e31407f985d72310a4d188c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1698819,
            "upload_time": "2023-01-12T05:07:50",
            "upload_time_iso_8601": "2023-01-12T05:07:50.772938Z",
            "url": "https://files.pythonhosted.org/packages/ea/4d/7c1fe3bafc1907febd41211e49193642b4a911c0f75f595c7d71a0e4cfae/scikit_glpk-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aea4132cb7ecd3ae03ec41d1747fa0be0f1100f8e6251392e93b0453e48f263f",
                "md5": "0b64e8db2acf5719b6fcef1fd80f2e63",
                "sha256": "e4c2bca2d1feefcdab86dd45428de9ff11c45c84cea3ca29a86ee625ad8a6b42"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0b64e8db2acf5719b6fcef1fd80f2e63",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 533309,
            "upload_time": "2023-01-12T05:07:51",
            "upload_time_iso_8601": "2023-01-12T05:07:51.823483Z",
            "url": "https://files.pythonhosted.org/packages/ae/a4/132cb7ecd3ae03ec41d1747fa0be0f1100f8e6251392e93b0453e48f263f/scikit_glpk-0.5.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17fc37c002fa0df9a4ef088e67b6bb46fb0f9e092c76fdda8a4fe6cb3f2c7c52",
                "md5": "677a14ae34879e17b4cac64dff4f2da4",
                "sha256": "28ba370b6d32cba1513b1481b6b2d80c1869c89fbe006d6f9a4befdb9d9ba61c"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "677a14ae34879e17b4cac64dff4f2da4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 550851,
            "upload_time": "2023-01-12T05:07:52",
            "upload_time_iso_8601": "2023-01-12T05:07:52.853031Z",
            "url": "https://files.pythonhosted.org/packages/17/fc/37c002fa0df9a4ef088e67b6bb46fb0f9e092c76fdda8a4fe6cb3f2c7c52/scikit_glpk-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21ea3a2986e687cb104456ce35e28708ede25fef16edcce9b88071c2b12f4974",
                "md5": "6c27be6908224f4467e548a9bb52da9b",
                "sha256": "272e79eb33ef8a2f4f54353683e1a691f434bb0d58099f34e47056db901a2f35"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c27be6908224f4467e548a9bb52da9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1698817,
            "upload_time": "2023-01-12T05:07:55",
            "upload_time_iso_8601": "2023-01-12T05:07:55.212643Z",
            "url": "https://files.pythonhosted.org/packages/21/ea/3a2986e687cb104456ce35e28708ede25fef16edcce9b88071c2b12f4974/scikit_glpk-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1ae551f850e2f31ad32d94dff52269787a88ca5f315b12e9fbeec255f376053",
                "md5": "e74b0fda7078bf49f67b67f119c1a8d2",
                "sha256": "d62745be26fdaf57e9fd7909714aeaf1ff24518e9890dbd8ef6462147e25422e"
            },
            "downloads": -1,
            "filename": "scikit_glpk-0.5.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e74b0fda7078bf49f67b67f119c1a8d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 533311,
            "upload_time": "2023-01-12T05:07:56",
            "upload_time_iso_8601": "2023-01-12T05:07:56.297822Z",
            "url": "https://files.pythonhosted.org/packages/a1/ae/551f850e2f31ad32d94dff52269787a88ca5f315b12e9fbeec255f376053/scikit_glpk-0.5.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfa2e2258dd3ba556c8da6c2f7c8bf12d938af4fa99d634a81bb65a627b35084",
                "md5": "44eff14e6d9ab97e2cc6bc0407cefc6a",
                "sha256": "75a8b7f778de892fc61cc6383afd04ba1f7adac4be401a03dbf9165f40b627ff"
            },
            "downloads": -1,
            "filename": "scikit-glpk-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "44eff14e6d9ab97e2cc6bc0407cefc6a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 911424,
            "upload_time": "2023-01-12T05:07:57",
            "upload_time_iso_8601": "2023-01-12T05:07:57.630556Z",
            "url": "https://files.pythonhosted.org/packages/df/a2/e2258dd3ba556c8da6c2f7c8bf12d938af4fa99d634a81bb65a627b35084/scikit-glpk-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-12 05:07:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "mckib2",
    "github_project": "scikit-glpk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.24.1"
                ]
            ]
        },
        {
            "name": "scipy",
            "specs": [
                [
                    ">=",
                    "1.10.0"
                ]
            ]
        }
    ],
    "lcname": "scikit-glpk"
}
        
Elapsed time: 0.02929s