mpspy


Namempspy JSON
Version 0.1.3 PyPI version JSON
download
home_pageNone
SummaryNone
upload_time2024-05-24 15:40:23
maintainerNone
docs_urlNone
authorYour Name
requires_python<3.13,>=3.9
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # mpspy

A simple implementation to read MPS files containing the definitions
of mixed-integer programs such as found in
[MIPLIB](https://miplib.zib.de/index.html).

## Usage:

```python
import mpspy

# Read instance
instance = mpspy.read_mps('instance.mps')

# Access instance

print(instance.var_lb)
print(instance.var_ub)
print(instance.coeffs)

```

Note: This implementation is designed to read MIPLIB instances only.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "mpspy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Your Name",
    "author_email": "you@example.com",
    "download_url": "https://files.pythonhosted.org/packages/d8/81/9f28e15262b38d3c7ec67b44357c00492c6315e29d19997e8b7e08d7cdb6/mpspy-0.1.3.tar.gz",
    "platform": null,
    "description": "# mpspy\n\nA simple implementation to read MPS files containing the definitions\nof mixed-integer programs such as found in\n[MIPLIB](https://miplib.zib.de/index.html).\n\n## Usage:\n\n```python\nimport mpspy\n\n# Read instance\ninstance = mpspy.read_mps('instance.mps')\n\n# Access instance\n\nprint(instance.var_lb)\nprint(instance.var_ub)\nprint(instance.coeffs)\n\n```\n\nNote: This implementation is designed to read MIPLIB instances only.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": null,
    "version": "0.1.3",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "609340eaca3e805bb302a4c8f7c9a50e932eeafaf23be3fa6b2a705822ced5cf",
                "md5": "47c9ae2ffa7b37684b4a331cba499f98",
                "sha256": "14c456529320fcf406063d7d8fa0740db103fb16e16dcd4c70fa7adec9b9821a"
            },
            "downloads": -1,
            "filename": "mpspy-0.1.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "47c9ae2ffa7b37684b4a331cba499f98",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.9",
            "size": 17142,
            "upload_time": "2024-05-24T15:40:22",
            "upload_time_iso_8601": "2024-05-24T15:40:22.123026Z",
            "url": "https://files.pythonhosted.org/packages/60/93/40eaca3e805bb302a4c8f7c9a50e932eeafaf23be3fa6b2a705822ced5cf/mpspy-0.1.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8819f28e15262b38d3c7ec67b44357c00492c6315e29d19997e8b7e08d7cdb6",
                "md5": "5b349240e7c3f799ab5b934ead947d01",
                "sha256": "24f12fcb79525cd39cdcf38d3c52df83a9391cd9d81516db244dd666fb7249c9"
            },
            "downloads": -1,
            "filename": "mpspy-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "5b349240e7c3f799ab5b934ead947d01",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.9",
            "size": 16238,
            "upload_time": "2024-05-24T15:40:23",
            "upload_time_iso_8601": "2024-05-24T15:40:23.196430Z",
            "url": "https://files.pythonhosted.org/packages/d8/81/9f28e15262b38d3c7ec67b44357c00492c6315e29d19997e8b7e08d7cdb6/mpspy-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-24 15:40:23",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "mpspy"
}
        
Elapsed time: 3.83884s