{ "info": { "author": "FICO-Xpress Optimizer dev. team", "author_email": "support@fico.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: Unix", "Programming Language :: C", "Programming Language :: C++", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering", "Topic :: Software Development" ], "description": "Xpress Python interface\n=======================\n\nThe Xpress Python interface is a Python module to create and solve optimization problems using the Python programming language and the [FICO Xpress](http://www.fico.com/en/products/fico-xpress-optimization-suite) Optimizer library. The module allows for\n\n- Creating, handling, solving, and querying optimization problems;\n- Using Python numerical libraries such as NumPy to create optimization problems;\n- Setting and getting the value of parameters (controls and attributes) of a problem; and\n- Using Python functions as callbacks for the Xpress Optimizer and the Xpress Nonlinear solver.\n\nThe Xpress Python interface allows for creating, handling, and solving all problems that can be solved with the FICO-Xpress library: Linear Programming (LP), Quadratic Programming (QP), Second-Order Conic Programming (SOCP), and their mixed-integer extensions: MILP, MIQP, MIQCQP, MISOCP, together with general nonlinear and mixed-integer nonlinear.\n\nExamples\n--------\n\nThe following is a Optimization problem with a quadratic constraint and two variables, one of which integer:\n```\nmin x1^2 + 2 x2\ns.t. x1 + 3 x2 >= 4\n -10 <= x1 <= 10\n x1 in Z\n x2 >= 0\n```\n\nThe program can be input and solved as follows (note that all variables are assumed nonnegative):\n```python\nimport xpress as xp\nx = xp.var(vartype=xp.integer, name='x1', lb=-10, ub=10)\ny = xp.var(name='x2')\np = xp.problem()\np.addVariable(x,y)\np.setObjective(x**2 + 2*y)\np.addConstraint(x + 3*y >= 4)\np.solve()\nprint (\"solution: {0} = {1}; {2} = {3}\".format (x.name, p.getSolution(x), y.name, p.getSolution(y)))\n```\n\nInstallation\n------------\n\nStarting with version 8.5.3, the Xpress Python interface can be downloaded from [PyPI](https://www.pypi.org) and from [Anaconda](https://www.anaconda.com). Run\n```\npip install xpress\n```\n\nto install from PyPI, and\n```\nconda install -c fico-xpress xpress\n```\n\nto install from the Conda repository.\n\nThe downloaded package contains: a folder with several examples of usages of the module, with varying degrees of difficulty; a directory `license` containing the [Xpress Community License](http://subscribe.fico.com/xpress-optimization-community-license); and a directory `doc` with the manual in PDF version---the full HTML documentation for the Xpress Optimizer's library, including the Python interface with its example, is also available at the [FICO Xpress Optimization Help](http://www.fico.com/fico-xpress-optimization/docs/latest/solver/GUID-ACD7E60C-7852-36B7-A78A-CED0EA291CDD.html) page.\n\nIf you do not have any FICO Xpress license, the community license will be recognized by the module and no further action is needed. If you do have a license, for instance located in `/users/johndoe/xpauth.xpr`, make sure to set the global environment variable `XPRESS` to point to the folder containing the `xpauth.xpr` file, i.e. `XPRESS=/user/johndoe`.\n\nLicensing\n---------\n\nThe file `community-xpauth.xpr` license file in the `license` directory allows to solve problems with up to 5000 rows+columns. To obtain an unlimited license, please contact FICO at [support@fico.com](mailto:support@fico.com). Academic licenses are also unlimited and can be obtained via the [Academic Partnership Program](http://subscribe.fico.com/Academic-Partner-Program).\n\nCopyright (C) Fair Isaac 1983-2019\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.fico.com/en/products/fico-xpress-optimization-suite", "keywords": "optimization mip minlp xpress", "license": "", "maintainer": "", "maintainer_email": "", "name": "xpress", "package_url": "https://pypi.org/project/xpress/", "platform": "any", "project_url": "https://pypi.org/project/xpress/", "project_urls": { "Homepage": "http://www.fico.com/en/products/fico-xpress-optimization-suite" }, "release_url": "https://pypi.org/project/xpress/8.7.1/", "requires_dist": [ "numpy (>=1.11)" ], "requires_python": "", "summary": "FICO-Xpress Optimizer Python interface", "version": "8.7.1" }, "last_serial": 5960624, "releases": { "8.5": [ { "comment_text": "", "digests": { "md5": "98577120f49d253e6d953c047cd3e309", "sha256": "0d3251c6e4bd45eeaced786f2feae864105672a7840bb1d8e11202f14ed8157e" }, "downloads": -1, "filename": "xpress-8.5-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "98577120f49d253e6d953c047cd3e309", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 35496027, "upload_time": "2018-08-21T14:25:11", "url": "https://files.pythonhosted.org/packages/64/64/9efc68898f4f5ae06e626ead23b223fb347c3a99aa60ed5bfc369834fb61/xpress-8.5-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ce4363564a6de4451486ea0a48af6f7e", "sha256": "c9e855656e157afa326caa0ff33ef18064985604bd4e1da31949ee66e629bf87" }, "downloads": -1, "filename": "xpress-8.5-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ce4363564a6de4451486ea0a48af6f7e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 43432647, "upload_time": "2018-08-21T22:26:15", "url": "https://files.pythonhosted.org/packages/e6/f1/a10e7d7c497694959fb6d697b6d5f9dabc7908899247a20e44077e8617d3/xpress-8.5-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1a7dfa93eafcf7848de7362aa0ca5c92", "sha256": "70a738069503a39795adf2e78a1ac3fea4b5a9eec4e247fb26cfda2434a700c8" }, "downloads": -1, "filename": "xpress-8.5-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "1a7dfa93eafcf7848de7362aa0ca5c92", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 22330419, "upload_time": "2018-08-21T16:29:21", "url": "https://files.pythonhosted.org/packages/c2/a8/7ab95cf2b482bfb298b51b85d7db74893130d79087afc7d4591737831590/xpress-8.5-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b256cef6362b16deb0a23e5d81680d22", "sha256": "d17ce0475db7dd99838ca3972bb0a13c7bacb1165c8e93611bc5eca2c287194a" }, "downloads": -1, "filename": "xpress-8.5-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "b256cef6362b16deb0a23e5d81680d22", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 41345759, "upload_time": "2018-08-21T17:10:58", "url": "https://files.pythonhosted.org/packages/ab/1b/d5b5c8c60cd2433f94675b53c4d350295ed7a3105b872dc5e4831c9ab212/xpress-8.5-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7d6a4e0611240443eb6976fa11bdfb69", "sha256": "69fb11584c9a8f8d1b07136f3124c160a55820cd216e66201d86577ec7f60640" }, "downloads": -1, "filename": "xpress-8.5-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "7d6a4e0611240443eb6976fa11bdfb69", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 35496840, "upload_time": "2018-08-21T14:25:39", "url": "https://files.pythonhosted.org/packages/18/af/3ef68a0d1665b087bebe569fd8ce385192e37bc512b69f4e1bf884cb10d3/xpress-8.5-cp34-cp34m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9edb38a8c7d26bf8096bcfa9a182f7ce", "sha256": "06e90b5fe799941882a2cec87797d01bdd211b53b77a1747281900ffbdf6b38a" }, "downloads": -1, "filename": "xpress-8.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9edb38a8c7d26bf8096bcfa9a182f7ce", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 43434367, "upload_time": "2018-08-21T22:26:50", "url": "https://files.pythonhosted.org/packages/4d/e0/ac120e8f69384d6bce91098b95400d2684407deec790cb36127e02a3f1df/xpress-8.5-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6511b29b09ab1e70017d6ad088f2c171", "sha256": "3fae2fcec485e01ac35351b149ee4795969661d1bee0ea99c582b315cda7a8e7" }, "downloads": -1, "filename": "xpress-8.5-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "6511b29b09ab1e70017d6ad088f2c171", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 22329840, "upload_time": "2018-08-21T16:29:38", "url": "https://files.pythonhosted.org/packages/b0/46/64b9568cdff6e32596bb00352b2dd6e20e85ef16633cb3d7c3a71491ee06/xpress-8.5-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0e06452000cb51ad204adae464bafcbb", "sha256": "f3b4bdedd493f9904733fcc2690336d932e3adc56174c089c97bf190a5a57135" }, "downloads": -1, "filename": "xpress-8.5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "0e06452000cb51ad204adae464bafcbb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 41345946, "upload_time": "2018-08-21T17:12:27", "url": "https://files.pythonhosted.org/packages/7a/c8/53db8ce6c773b801b62e4a20bcebb01976bd6a07414700d5460416c1df19/xpress-8.5-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c64c425cf81a22bc75773d7926c50d26", "sha256": "974f7a83b90b72acbec35413f8b7360d86eada9af29d4b7293d93c772488c521" }, "downloads": -1, "filename": "xpress-8.5-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "c64c425cf81a22bc75773d7926c50d26", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 35496939, "upload_time": "2018-08-21T14:26:06", "url": "https://files.pythonhosted.org/packages/00/8d/132689c8d55b2b81bcb00ceb04e16822d1e007328d744e69458aa6060106/xpress-8.5-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "808f310f6618bc2d0b355a7f94735cb7", "sha256": "4dca4b2888a8fe6c4e01de6d234f79432c9eb88aeaa38231d320b4754ea7d47a" }, "downloads": -1, "filename": "xpress-8.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "808f310f6618bc2d0b355a7f94735cb7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 43432093, "upload_time": "2018-08-21T22:27:28", "url": "https://files.pythonhosted.org/packages/03/a1/d2f5f9893c9d794b3dd6f4150c1d7ec96339d36d9825de6cd991ceeee4e3/xpress-8.5-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6bdc666715c5b7518d2e89ee233ac470", "sha256": "2984b024ac8c344d0396b0a902954dd6fd42fa0053951b075ddaded8c27ccef7" }, "downloads": -1, "filename": "xpress-8.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6bdc666715c5b7518d2e89ee233ac470", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22327340, "upload_time": "2018-08-21T16:29:57", "url": "https://files.pythonhosted.org/packages/8c/da/7db22d3369482373e2f6f214a70c51f2988edf18bc91c22ba6918a86b6fc/xpress-8.5-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "738dcbb7d9e7aae64d8e50c2571dd299", "sha256": "7291f7d9a248b41cfd5032fc9ac72edbb7bfd062058adbeb7950b3cdef3e1285" }, "downloads": -1, "filename": "xpress-8.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "738dcbb7d9e7aae64d8e50c2571dd299", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 41357822, "upload_time": "2018-08-21T17:13:56", "url": "https://files.pythonhosted.org/packages/53/c1/33029c468e0d3fff2e529e1264ad113392b8e22848bebb653ded09087270/xpress-8.5-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "49d0986bd3ea91ed7bff81ac97b0e471", "sha256": "ae6b292e3b5aeaaacdacf91ba6fcc655fe3d9b1f2dfe447144d637a7d41df22a" }, "downloads": -1, "filename": "xpress-8.5-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "49d0986bd3ea91ed7bff81ac97b0e471", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35496934, "upload_time": "2018-08-21T14:26:34", "url": "https://files.pythonhosted.org/packages/31/2d/9e40b80a096e9b39d9dd8c7da8752e621ce64ad5c730f1e48bdd3b774088/xpress-8.5-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a25551b664e1bb6864fa9956391bbf90", "sha256": "6feeff6370bab0b74a94a365af1415875135f0953a5b3fc087bdf9b9beb1a262" }, "downloads": -1, "filename": "xpress-8.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a25551b664e1bb6864fa9956391bbf90", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 43434453, "upload_time": "2018-08-21T22:28:19", "url": "https://files.pythonhosted.org/packages/58/90/88e789ee4ef40448425db15c11a0292d25ab8ecf15714e2df792498a7eba/xpress-8.5-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8f97293a868349335e93339e6390a49a", "sha256": "037844f2f9121317df543032e67fde086de089992e8c9360a28d261ee4f4b1c0" }, "downloads": -1, "filename": "xpress-8.5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "8f97293a868349335e93339e6390a49a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22327343, "upload_time": "2018-08-21T16:30:08", "url": "https://files.pythonhosted.org/packages/89/9f/ede34988f3b8a00fc71ca4b47aea5b03a82d311b6d2e0671352bb2846144/xpress-8.5-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "413bd06d06ae28cd26f9924ec05f40f2", "sha256": "53b0578208b64722d7d7ae4ad0b6d7b5d272e07768a5edbdf4405386df389519" }, "downloads": -1, "filename": "xpress-8.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "413bd06d06ae28cd26f9924ec05f40f2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 41357815, "upload_time": "2018-08-21T17:15:40", "url": "https://files.pythonhosted.org/packages/ff/ac/d47a00dc3e153855c7bf84bb35c04792080480550d8695fe8e9bf6e746eb/xpress-8.5-cp36-cp36m-win_amd64.whl" } ], "8.5.10": [ { "comment_text": "", "digests": { "md5": "5ba5b32f29b8041b0ee72fa53987fd9b", "sha256": "ebea6b6f1bd8dfaaec54536db837527645b9df08bfa67014ff14b67a6beafdca" }, "downloads": -1, "filename": "xpress-8.5.10-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5ba5b32f29b8041b0ee72fa53987fd9b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 12026268, "upload_time": "2019-02-22T16:02:32", "url": "https://files.pythonhosted.org/packages/ac/28/635557d32340d6503e6862263d32203e4aab14bf156b89392b9471bef1d7/xpress-8.5.10-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "8aa3ff28f5dc8aa14e44a43df5beec08", "sha256": "1b6989c390852d4dc0a6b7d34f43b96c3e219a34ef03a76a89d3dba287b151b6" }, "downloads": -1, "filename": "xpress-8.5.10-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8aa3ff28f5dc8aa14e44a43df5beec08", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 43631412, "upload_time": "2019-02-22T16:07:24", "url": "https://files.pythonhosted.org/packages/07/70/c0513c2336e8e58e1b6cebce0112dd1f64366e8cd77bcdd3e7d05b7aab75/xpress-8.5.10-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "675c3df1120e43ced5214f9d73b1ff77", "sha256": "6fc97b369617fa0fed4ed79902ad84e227c5c84e3e9b5f05fb5c0f479a4e40bc" }, "downloads": -1, "filename": "xpress-8.5.10-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "675c3df1120e43ced5214f9d73b1ff77", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 41398724, "upload_time": "2019-02-22T16:29:51", "url": "https://files.pythonhosted.org/packages/e0/7b/001557a2ddc2030269c4f8988de840917ddfe85bd2bb106a1daf05fa3b03/xpress-8.5.10-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2278a7dd057a8e0316de4372a970b8c4", "sha256": "b2e92660eba4900a76fb1b2fa0b3216d6da3a506d4371f179b86c8c8a5649ffd" }, "downloads": -1, "filename": "xpress-8.5.10-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2278a7dd057a8e0316de4372a970b8c4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 12012744, "upload_time": "2019-02-22T16:02:36", "url": "https://files.pythonhosted.org/packages/9a/ee/681cc1e2f5216bffdfa962bf355e625d93b693ee728dd7b68553ca554234/xpress-8.5.10-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "303bb17deaa4f24540dae6080a7ad4f5", "sha256": "5f9ffead5fd6808ae7b5bb8d574c46e6f64f67b0bcf5a1eb30f690baac41138b" }, "downloads": -1, "filename": "xpress-8.5.10-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "303bb17deaa4f24540dae6080a7ad4f5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 43617488, "upload_time": "2019-02-22T16:07:32", "url": "https://files.pythonhosted.org/packages/51/67/726290ef6af6aa21f353e775e96de86b11d56a280103a4f6a4fb12def0d9/xpress-8.5.10-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b7f1a3b85167a586a0e85ce82324a8a4", "sha256": "f1e2fdf26e0c04bba1a2a0583f5dbf400814a3799b7717a2237a3348e8838dad" }, "downloads": -1, "filename": "xpress-8.5.10-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "b7f1a3b85167a586a0e85ce82324a8a4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 41385395, "upload_time": "2019-02-22T16:30:04", "url": "https://files.pythonhosted.org/packages/58/0e/e6065d61d9f56bf0ebc3597a16c23ee6ffef55e7df94c672d7ce6958d411/xpress-8.5.10-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8e2e9adfc312a3f6004880535a85f5e2", "sha256": "0d8aa3cebc45fe8973ebfeb8a08a824e0f896435be39aeeb3501f2b66a89fee4" }, "downloads": -1, "filename": "xpress-8.5.10-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8e2e9adfc312a3f6004880535a85f5e2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12010343, "upload_time": "2019-02-22T16:02:42", "url": "https://files.pythonhosted.org/packages/8c/2f/ac423c6f57bc54fcd9109b905184a8cdbd81b84f2c95c076a4d7d767b024/xpress-8.5.10-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "4b70a647b9e34c72d0a7ff1c721e3aab", "sha256": "4fd182653fa5bb440cbf39584513debb274351a60ffc62b1c0d475283b2b14b4" }, "downloads": -1, "filename": "xpress-8.5.10-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4b70a647b9e34c72d0a7ff1c721e3aab", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 43615359, "upload_time": "2019-02-22T16:07:41", "url": "https://files.pythonhosted.org/packages/6e/bf/e7c55e30394b0966114bf54fef2d9c05f8b5d64f3a111f65312979cf87a9/xpress-8.5.10-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "19e8ae61d691f3c1aef99967fd45c337", "sha256": "e96a38faedb551fa19e86e5bd48bf7820360af3aef66bbf621acfd9b84481e95" }, "downloads": -1, "filename": "xpress-8.5.10-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "19e8ae61d691f3c1aef99967fd45c337", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22354060, "upload_time": "2019-02-22T16:51:13", "url": "https://files.pythonhosted.org/packages/2d/1c/cfd2efb3276cb646b7547895fb5c3efe59b7bfe408832b17a88a4a6a15d2/xpress-8.5.10-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "dd00b5a348e6b7db69bfdbf5537c381c", "sha256": "986dafd78e57069034e2342332a5280b327ddde747d44772f7d4eb84b03463b0" }, "downloads": -1, "filename": "xpress-8.5.10-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "dd00b5a348e6b7db69bfdbf5537c381c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 41388609, "upload_time": "2019-02-22T16:30:25", "url": "https://files.pythonhosted.org/packages/1b/0a/9d609e0a63d889c753d84e9f9527bb14d8d2af211263477a90d1291d7d7d/xpress-8.5.10-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8de8f49657c5895fec2286d3a762c049", "sha256": "a7cad3a66b0868a93777892fbdce5f6dd5596b4b051dc4d40da3de4c621db248" }, "downloads": -1, "filename": "xpress-8.5.10-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8de8f49657c5895fec2286d3a762c049", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12025660, "upload_time": "2019-02-22T16:02:50", "url": "https://files.pythonhosted.org/packages/2c/7f/a904ad56f031cb0a53ee9bad168a42520f3c5e216508713639ec68e5c40a/xpress-8.5.10-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "f0fbc2a2f2853a49ea2785d5afddefd8", "sha256": "53929fad6996df08f3370101c3a46020b5db0c73109cb5c321715663615d2eaf" }, "downloads": -1, "filename": "xpress-8.5.10-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f0fbc2a2f2853a49ea2785d5afddefd8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 43630677, "upload_time": "2019-02-22T16:07:54", "url": "https://files.pythonhosted.org/packages/31/7d/32eb940b970b1f472c69e519c518a8e4dcfddd94588911baef470d08f1de/xpress-8.5.10-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "50c6d6441bfdaaf0cf496349ecae6e56", "sha256": "0d6f9f2babbc732f2ddee7ab00cccdcfafaf28c41ba15e72237d53ee3665c987" }, "downloads": -1, "filename": "xpress-8.5.10-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "50c6d6441bfdaaf0cf496349ecae6e56", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22374303, "upload_time": "2019-02-22T16:51:18", "url": "https://files.pythonhosted.org/packages/04/7a/19a315997c78d32102674c44083da1b2517501cb0fe916ab2fd0b213eec1/xpress-8.5.10-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "251a5e4ad9a61baf80c4b2f07ef86670", "sha256": "191783cee2569c49ea2527815f0990f4f46982b0cee414d65f41776191511b05" }, "downloads": -1, "filename": "xpress-8.5.10-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "251a5e4ad9a61baf80c4b2f07ef86670", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 41408747, "upload_time": "2019-02-22T16:30:52", "url": "https://files.pythonhosted.org/packages/f7/14/0287365be479b6ac84d8742d4fe1def378b53cda3d908774413ec7d71398/xpress-8.5.10-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "863560718aa543e198aaf79fb5d05e39", "sha256": "304db9aa99d7d93750679ab263a5450abf2dbc5f835bd82503aba1fbf2d39ee8" }, "downloads": -1, "filename": "xpress-8.5.10-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "863560718aa543e198aaf79fb5d05e39", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12025659, "upload_time": "2019-02-22T16:02:58", "url": "https://files.pythonhosted.org/packages/da/93/99e26bdd749c0fbdd9e63254ad4dc25956bfb724478a1650d6e4cf1575c2/xpress-8.5.10-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b56ff3c74c689d2a80d81946b04df3d5", "sha256": "4746e940933d05ae803b90835b86521c8435021b970a07cfc6cc3e7530051b35" }, "downloads": -1, "filename": "xpress-8.5.10-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b56ff3c74c689d2a80d81946b04df3d5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 43630676, "upload_time": "2019-02-22T16:08:15", "url": "https://files.pythonhosted.org/packages/bc/bb/390d82a714186222cc287f4d2b119fe73943d56a121ef171291a6a44a73c/xpress-8.5.10-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "daabb22b3f4555644ae2ee5d2b99153d", "sha256": "b77c21be72f742a59a0719570e19d676bef2cdb5da3ad77dac303904a487e16d" }, "downloads": -1, "filename": "xpress-8.5.10-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "daabb22b3f4555644ae2ee5d2b99153d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22374302, "upload_time": "2019-02-22T16:51:23", "url": "https://files.pythonhosted.org/packages/c1/f4/6fd9ec1ec7a1610a52955eb84793f607f55788ad879518318fa8aa1c6e71/xpress-8.5.10-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "60b4baaf9e85acb8d26cd6009a1df216", "sha256": "fa2d3db4f2e564b598e629066f5b5a405dbc3183fea0f60c5f12a4c2f0df3f6d" }, "downloads": -1, "filename": "xpress-8.5.10-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "60b4baaf9e85acb8d26cd6009a1df216", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 41408745, "upload_time": "2019-02-22T16:31:15", "url": "https://files.pythonhosted.org/packages/5c/2e/0939f05818102385add0aff073a47cedddd460b41462b6aded230b269122/xpress-8.5.10-cp37-cp37m-win_amd64.whl" } ], "8.5.11": [ { "comment_text": "", "digests": { "md5": "f7c74ce2900a506e9334bfb92779bf5a", "sha256": "5e5e4df46d31c57f16c5f0c81ba424e14f23c9af68d5eb71e8f09a116c5c29de" }, "downloads": -1, "filename": "xpress-8.5.11-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f7c74ce2900a506e9334bfb92779bf5a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 43624500, "upload_time": "2019-04-03T13:25:56", "url": "https://files.pythonhosted.org/packages/a3/25/f393fe5fed2cb3ccdbf8f219d9294faeb981862aae9e7403c2b0425f6553/xpress-8.5.11-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6071b2e29f30a1c8e10e95f116c7ebfb", "sha256": "2afdb2c20820d0d5361a5a359edd1d7cd7fc6273496ade54acfcd59476a2b12e" }, "downloads": -1, "filename": "xpress-8.5.11-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "6071b2e29f30a1c8e10e95f116c7ebfb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 41395632, "upload_time": "2019-04-03T14:51:23", "url": "https://files.pythonhosted.org/packages/8f/1d/6faa66272404cf8283e29b53a59506fdb67690c043b5746c3962f83732b8/xpress-8.5.11-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7808932cbb5c92fbf26e05b12e774de0", "sha256": "f86ed400b61499d1078442d1214c8f81457b501196b832d03c3a7ac39c3e0ef0" }, "downloads": -1, "filename": "xpress-8.5.11-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7808932cbb5c92fbf26e05b12e774de0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 43610777, "upload_time": "2019-04-03T13:26:06", "url": "https://files.pythonhosted.org/packages/47/4a/3d48899c3eed032733d00682691dd4008ddb328715d1ce77083f06ce7251/xpress-8.5.11-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b5e35c5427ecb3587b3c05344f050fe4", "sha256": "21f6831b0d33efa8f880223b96eca2868afeec871afaaaf684d4d4b5cb35c2b1" }, "downloads": -1, "filename": "xpress-8.5.11-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "b5e35c5427ecb3587b3c05344f050fe4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 41382351, "upload_time": "2019-04-03T14:51:33", "url": "https://files.pythonhosted.org/packages/b2/a3/e3ff8ec173d14c8b8482a80a0e3015bfdc50981f328e9ff0ee09639cb64d/xpress-8.5.11-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6d716204dcb6ce165a56beaf9ed8e248", "sha256": "665f3601ef4d24ee227a9428a0e96a3fb9e5778e00813a15400372004ede867d" }, "downloads": -1, "filename": "xpress-8.5.11-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6d716204dcb6ce165a56beaf9ed8e248", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 43608461, "upload_time": "2019-04-03T13:26:19", "url": "https://files.pythonhosted.org/packages/fc/00/e47c12ebb81db6e348eefdf28d4e2590eed635979f3a34116f9b5c149ab4/xpress-8.5.11-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7dd75d1fafbdd2b9c70682c020f15211", "sha256": "ce54d7eb8990666b91a098a02c04d0923971f4663ecceaa52725fc904056fb67" }, "downloads": -1, "filename": "xpress-8.5.11-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "7dd75d1fafbdd2b9c70682c020f15211", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22352869, "upload_time": "2019-04-03T14:40:02", "url": "https://files.pythonhosted.org/packages/d3/22/d22b55ed697b68a282427cc4849d5a70965a68029ce6ac6abfda68d8a561/xpress-8.5.11-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "bec95e805dd9fd8d95171a6995359017", "sha256": "8b2475d3f515b1dc333809d08d42709e8e374a84092647baa2d6a6c5c615df26" }, "downloads": -1, "filename": "xpress-8.5.11-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "bec95e805dd9fd8d95171a6995359017", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 41385539, "upload_time": "2019-04-03T14:51:42", "url": "https://files.pythonhosted.org/packages/52/e4/717a6f2e65dfcfdaea0d134792e63c572086f4318678cbaacf26bbdaed38/xpress-8.5.11-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "70afcc3227c805dd206a35fba3780c2b", "sha256": "70701f134553ed880af4f030c97cd97cc2cd19f86d0b4d582e89065d14675410" }, "downloads": -1, "filename": "xpress-8.5.11-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "70afcc3227c805dd206a35fba3780c2b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 43623777, "upload_time": "2019-04-03T13:26:32", "url": "https://files.pythonhosted.org/packages/a3/42/b8ab3c60458ab1f301fc420c6d4f9da74d951ad1f7372c165a4604f5580b/xpress-8.5.11-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a69681f8188d1c2efb03f729763bdc66", "sha256": "095d5faecde7977f5de30a9a35f0c9239896f09c53ac724e067b779469e6ff06" }, "downloads": -1, "filename": "xpress-8.5.11-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "a69681f8188d1c2efb03f729763bdc66", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22373125, "upload_time": "2019-04-03T14:40:09", "url": "https://files.pythonhosted.org/packages/50/82/525900dd0514b23aa8de3279193f442ec07f3b537f364261e45fabe78b7c/xpress-8.5.11-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "012172388a22140089db993c903ace19", "sha256": "7e6ffdd932abc1023f096185a1a8e4abb61eddbd41e66709787cf94fda3cb225" }, "downloads": -1, "filename": "xpress-8.5.11-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "012172388a22140089db993c903ace19", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 41405534, "upload_time": "2019-04-03T14:51:52", "url": "https://files.pythonhosted.org/packages/00/de/7619612d03054b3bc69bd80ad121e7b5100203214e042e0218bb6f7943f2/xpress-8.5.11-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7e007286a523b61fed0751455f65c1cd", "sha256": "8c586347c10a83af81f33f86679daf574895d7b386a2c3d9f0fca756faad911e" }, "downloads": -1, "filename": "xpress-8.5.11-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7e007286a523b61fed0751455f65c1cd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 43623776, "upload_time": "2019-04-03T13:26:48", "url": "https://files.pythonhosted.org/packages/72/f3/9325e4ab6c2635dd396f9766257923c752c0e8a91f88e64b2371152973e8/xpress-8.5.11-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "83269f8c9385dad0dff064720ff1a2bf", "sha256": "518d42bc15cd6db1390e1627ea189b3774427735285cdb13a503d7469225b55d" }, "downloads": -1, "filename": "xpress-8.5.11-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "83269f8c9385dad0dff064720ff1a2bf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22368190, "upload_time": "2019-04-03T14:40:16", "url": "https://files.pythonhosted.org/packages/79/ea/79fecb84da9bddca6796ecd3e5c3e06ea22d41b9a6767e6efc5ff8c420b6/xpress-8.5.11-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2235c866d50deb0a3b8a5ef6e10e0b07", "sha256": "5d87d67d9a0a386dd863526ced289f61e61c0a2b61f619ffb1d44094a9daaf9c" }, "downloads": -1, "filename": "xpress-8.5.11-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2235c866d50deb0a3b8a5ef6e10e0b07", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 41405530, "upload_time": "2019-04-03T14:52:01", "url": "https://files.pythonhosted.org/packages/d6/ca/5b1b32faf28cded5850251b562c859f41165ce9f5d245e9092e68539a2a6/xpress-8.5.11-cp37-cp37m-win_amd64.whl" } ], "8.5.13": [ { "comment_text": "", "digests": { "md5": "ec68853e0cfd2dabc1d9ea1f8cd77b15", "sha256": "0a217626ae6fa31192883a35ecb8fd38c4cbbb9366486f999df29b6c1ae2850c" }, "downloads": -1, "filename": "xpress-8.5.13-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "ec68853e0cfd2dabc1d9ea1f8cd77b15", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 35929872, "upload_time": "2019-07-16T19:40:35", "url": "https://files.pythonhosted.org/packages/00/fe/2b8274174f47580c7c7e9b3dd5b861a7b19aeccaadf2e527861cfec116ec/xpress-8.5.13-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e6232899b4c06874d3797183e11690f0", "sha256": "e5f5511bf586eeddd1f2dba8d464a1d670ccb0ef58dafa175743e516ac97fe57" }, "downloads": -1, "filename": "xpress-8.5.13-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e6232899b4c06874d3797183e11690f0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 43626137, "upload_time": "2019-07-10T18:11:13", "url": "https://files.pythonhosted.org/packages/de/eb/da14f37777294aee9f5e812d06d42fcc94adcef1a8fd81a7b1114cdcf417/xpress-8.5.13-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f494df2b766bfb60c937ad6e500a219c", "sha256": "494d929a7f708f5d8e222ec148e8a30b7d86a0281bbcadfc80a89aa7f75f6c43" }, "downloads": -1, "filename": "xpress-8.5.13-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "f494df2b766bfb60c937ad6e500a219c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 41397380, "upload_time": "2019-07-10T18:13:11", "url": "https://files.pythonhosted.org/packages/e5/35/790165e80952ac1f92dff1b2374392fdaca4dcba8e382533a184f852965c/xpress-8.5.13-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "78584c0fe1e8d05d22e7d96fbae2c1df", "sha256": "659f3b96d7844af2a83f829c5077dc8c0b7f81e28675a9054d363d1b6ca2c58e" }, "downloads": -1, "filename": "xpress-8.5.13-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "78584c0fe1e8d05d22e7d96fbae2c1df", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 35930796, "upload_time": "2019-07-16T19:40:43", "url": "https://files.pythonhosted.org/packages/71/dc/f230092d2a8751587eed0327b7be2fe4c34d4809424527834d831a3217c9/xpress-8.5.13-cp34-cp34m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cd98f4a9e4c4e7dbbcadeb6cf3a04568", "sha256": "85fc4496b3b997c5b6e59926d6faf1e49f9882e7d555655c2309254da3c5999e" }, "downloads": -1, "filename": "xpress-8.5.13-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cd98f4a9e4c4e7dbbcadeb6cf3a04568", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 43625416, "upload_time": "2019-07-10T18:11:24", "url": "https://files.pythonhosted.org/packages/c6/a0/b9b7ad03011bb0a3dceb5e65f8d09598e30f185c7927853eacc254dda80e/xpress-8.5.13-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7250fe9838e90f4c3878a7a81413df35", "sha256": "574be696999d594d7069ba1447987c389df241905b5b3b812fec1cb9dded9b82" }, "downloads": -1, "filename": "xpress-8.5.13-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "7250fe9838e90f4c3878a7a81413df35", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 41396950, "upload_time": "2019-07-10T18:13:29", "url": "https://files.pythonhosted.org/packages/ff/ea/f500b567a3d432a536fb9a856e2bb42f80b8e3987ff3027e12d709575756/xpress-8.5.13-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "364dcd46af2c3dfaf25f9084f3ea9adf", "sha256": "8b0e4ebb1a1cf7068b8bfee4af0c9ca73bd72acfa417b86fd45fddf1f231dd2c" }, "downloads": -1, "filename": "xpress-8.5.13-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "364dcd46af2c3dfaf25f9084f3ea9adf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 35930862, "upload_time": "2019-07-16T19:40:51", "url": "https://files.pythonhosted.org/packages/0a/bc/ab064d78b2857825777390fd5111979edcfd1396eef711b6fb59b0e4e979/xpress-8.5.13-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "36afc61062976fb0b28e1900c53ad7b6", "sha256": "3bf85acfcb1f498da372512470eb891b69ca656aa59953be2ffdd3e7add6416e" }, "downloads": -1, "filename": "xpress-8.5.13-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "36afc61062976fb0b28e1900c53ad7b6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 43625540, "upload_time": "2019-07-10T18:11:34", "url": "https://files.pythonhosted.org/packages/44/73/9d90d4bfbdb4a817dd786172618cd17ec6a840169925670434bb4ea664a0/xpress-8.5.13-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f7baa557fb065ad1bcfce1c2a32c8332", "sha256": "401d16415b90a84a3f7e294cb2ed70b9982f16225d4b93527a7be26cabead7eb" }, "downloads": -1, "filename": "xpress-8.5.13-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f7baa557fb065ad1bcfce1c2a32c8332", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 41401745, "upload_time": "2019-07-10T18:13:46", "url": "https://files.pythonhosted.org/packages/a0/74/2ad4eebef42a3dafbcbaf5777c26d8303d3e12617e369ed194fefab7d53f/xpress-8.5.13-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6e3cf22a3557bca6d44b08c97080c5ba", "sha256": "47d41b2929fd8fd13dedd4f8697e080ee8aa415997a9c853dffff0b34a355452" }, "downloads": -1, "filename": "xpress-8.5.13-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "6e3cf22a3557bca6d44b08c97080c5ba", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35930903, "upload_time": "2019-07-16T19:41:03", "url": "https://files.pythonhosted.org/packages/0d/c7/b477bbf1380fce4d0167c758138b81d3eea06cf0693a4fc8c80296cf98df/xpress-8.5.13-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a9177854d8dbb687f4d7d6de2726e0bf", "sha256": "dec8a7e4ba47d2296a8ea6fc4b19c14bee605549f1f99cdcd86eeba3bf07c63d" }, "downloads": -1, "filename": "xpress-8.5.13-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a9177854d8dbb687f4d7d6de2726e0bf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 43625544, "upload_time": "2019-07-10T18:11:43", "url": "https://files.pythonhosted.org/packages/6f/67/e2d4da6792f3aa1433d70045f6ff01d1af0b29614e24c6bddce4e90aa243/xpress-8.5.13-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "add64f3cdc78dabbe93b43ebbc7ee694", "sha256": "7c9b7766926650b3f3d70d16437f89a8a1545d574e9bddd5e499d9ca088a90bc" }, "downloads": -1, "filename": "xpress-8.5.13-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "add64f3cdc78dabbe93b43ebbc7ee694", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 41406240, "upload_time": "2019-07-10T18:13:58", "url": "https://files.pythonhosted.org/packages/93/f0/aaae443718eefd2515c06ce57cb55f1399d05348df257dbbfb34c8c2d8fa/xpress-8.5.13-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7b39c896730e468f283fd4bb3841efcb", "sha256": "fbe99e291db51a6995db0772044a308bee1298ab2ef1390d77a6642e342aca11" }, "downloads": -1, "filename": "xpress-8.5.13-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "7b39c896730e468f283fd4bb3841efcb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35930902, "upload_time": "2019-07-16T19:41:12", "url": "https://files.pythonhosted.org/packages/ce/c0/39dc65a7946227178ec30b6e805e1a97ed8efa1ae58f428c4f3d48494084/xpress-8.5.13-cp37-cp37m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8f1f6377f39a5d09303be12cfb3a743f", "sha256": "8c7781165b495eb30443110bcbd1aeb2c392cf0b7d0b420645ffac9107fbcede" }, "downloads": -1, "filename": "xpress-8.5.13-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8f1f6377f39a5d09303be12cfb3a743f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 43625543, "upload_time": "2019-07-10T18:11:53", "url": "https://files.pythonhosted.org/packages/8c/ff/377e00e322dde74a06a21f7cb8eda4049de1aab3e29eb9e34fe75c58f0c5/xpress-8.5.13-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6fdce48122e3894c5f8237dd73f22217", "sha256": "29b2d2ecf5d1a16861186386763bad2630c15c8443e924d92eb3dc337bcb2b92" }, "downloads": -1, "filename": "xpress-8.5.13-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6fdce48122e3894c5f8237dd73f22217", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 41406239, "upload_time": "2019-07-10T18:14:08", "url": "https://files.pythonhosted.org/packages/63/7c/cd2cd700d9d5e91a8962a2ca83e751d9187d3a5acfde465fc9caf1aee680/xpress-8.5.13-cp37-cp37m-win_amd64.whl" } ], "8.5.4": [ { "comment_text": "", "digests": { "md5": "b02a6abef6fb4b6f6db12779a3383a2a", "sha256": "1dbb325f72cd30569a78498bed2a226240111e7fe852921eb475eee4e33ee467" }, "downloads": -1, "filename": "xpress-8.5.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b02a6abef6fb4b6f6db12779a3383a2a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 43521136, "upload_time": "2018-09-06T11:05:57", "url": "https://files.pythonhosted.org/packages/4c/0a/bb9f8002bf3f3d38d485a83dd0738d9eb2175ae7b40f7b3f34042f6764e5/xpress-8.5.4-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "57d61836fb2caf58ce5e659e9331d5cd", "sha256": "3b4ec1e3184f948f6d1b99d5bff4452070b517f061a1455fb875796bc7cb007a" }, "downloads": -1, "filename": "xpress-8.5.4-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "57d61836fb2caf58ce5e659e9331d5cd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 22340831, "upload_time": "2018-09-06T13:28:22", "url": "https://files.pythonhosted.org/packages/ff/cb/0c1ce8b6c4e39fdaf3807c3ec27f3ec574e1c36b04f01c0b3f4cd210b498/xpress-8.5.4-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1061d45266c8264cd9e2665d39473b0a", "sha256": "1718460a9618476f1a0259c9ff4b9624e11adb04ad3190c4c6935557977ea229" }, "downloads": -1, "filename": "xpress-8.5.4-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "1061d45266c8264cd9e2665d39473b0a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 41350709, "upload_time": "2018-09-06T13:31:05", "url": "https://files.pythonhosted.org/packages/6c/20/e6f3378df098597ab6e1845522a9710052eb30c242490ea7bacaffeec687/xpress-8.5.4-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5863d3fdcbc73cac1ffe259b5f7ed896", "sha256": "4eb78c6cc39994084375518f3c8502e400a2e6a4079a0ca29c25962bf2034c87" }, "downloads": -1, "filename": "xpress-8.5.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5863d3fdcbc73cac1ffe259b5f7ed896", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 43520572, "upload_time": "2018-09-06T11:07:01", "url": "https://files.pythonhosted.org/packages/6f/86/f7e24472db6e0146b91de348e18b88de3936c6c2ad311f6441aaba48086f/xpress-8.5.4-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "999106e520e1a366b2b8da50e511be8f", "sha256": "f28a63923a7cbf329316fea7025c6cef1e8c3dbee524840e1d9b628c0f4fcdc7" }, "downloads": -1, "filename": "xpress-8.5.4-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "999106e520e1a366b2b8da50e511be8f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 22340006, "upload_time": "2018-09-06T13:28:37", "url": "https://files.pythonhosted.org/packages/74/db/896837003d6e5f51b0ad3f16276da5f99e4c4b2fb00597d37bcfb12ce043/xpress-8.5.4-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e85cf24609b5cb54857c8a31000c3c59", "sha256": "e66193ceddff915d66fc197dc18e06d8676d5b40222348788ba773110c8d8cd4" }, "downloads": -1, "filename": "xpress-8.5.4-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "e85cf24609b5cb54857c8a31000c3c59", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 41350804, "upload_time": "2018-09-06T13:31:50", "url": "https://files.pythonhosted.org/packages/9b/df/07b175a9cbe320491c045e537cf31d84283d8b00e282d4b4423d22644719/xpress-8.5.4-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "42c02d5aac6d882407cfaf64bd37b80d", "sha256": "5808f509a8bbe2598558589edbacb0cdcdc31b774eb15903ebc65b75d07cfcf9" }, "downloads": -1, "filename": "xpress-8.5.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "42c02d5aac6d882407cfaf64bd37b80d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 43520853, "upload_time": "2018-09-06T11:07:42", "url": "https://files.pythonhosted.org/packages/86/da/7962d14fd633fcb7107459d451595c8e86ae78d54ef2a90dd459173a5dc8/xpress-8.5.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6d3097f7189efa71c0a68b6ff68b11ae", "sha256": "e2b05b19747d1b00a0cab167d0fec9967d2754314adc16cf11f183b0c0c5a4eb" }, "downloads": -1, "filename": "xpress-8.5.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6d3097f7189efa71c0a68b6ff68b11ae", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22337631, "upload_time": "2018-09-06T13:28:53", "url": "https://files.pythonhosted.org/packages/f1/52/2811fb22c9629c2e29a4c67e86070154fa75a8f640e6e10ad7113e26d2ae/xpress-8.5.4-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d7483b35fdd51ed2e8c85c77f8c0c503", "sha256": "0cde192274c6556d2cfe6c18c17d84080b832a3c5f3bb3c64233e8fbaa2fe2a5" }, "downloads": -1, "filename": "xpress-8.5.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d7483b35fdd51ed2e8c85c77f8c0c503", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 41362835, "upload_time": "2018-09-06T13:32:20", "url": "https://files.pythonhosted.org/packages/30/68/62a0d44e4acf44d18a56a31cea9522b67e7be93aaa859124b5a09795f665/xpress-8.5.4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c38be2a2f3254ebbd9eaa523e09a2379", "sha256": "4cfe8b55657bfb3dc67114c2344fc18e0a3a1c044514a529cb574d2e74f4e6dd" }, "downloads": -1, "filename": "xpress-8.5.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c38be2a2f3254ebbd9eaa523e09a2379", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 43520850, "upload_time": "2018-09-06T11:08:27", "url": "https://files.pythonhosted.org/packages/b0/5c/7fd3bcac747fee58efd00a290910c07255bcd6fea1ba74676d6f2205fe85/xpress-8.5.4-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d9d2580e5d3501e76c7663ad087fbc0d", "sha256": "52de96f312f6cbe30f0130aa8f9406e370edd1d0e4c907059bff3eab1c6bad94" }, "downloads": -1, "filename": "xpress-8.5.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "d9d2580e5d3501e76c7663ad087fbc0d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22337628, "upload_time": "2018-09-06T13:29:16", "url": "https://files.pythonhosted.org/packages/e9/18/6e4676331851af9da90833a83b5e8c341eab64f105dd85bb89c369383b8f/xpress-8.5.4-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "f25f51f476d7ec9a46338cf2ba8c1584", "sha256": "896035ecf03debe0a46349523217fca6d3926365f044389b5c22e6a5aa538614" }, "downloads": -1, "filename": "xpress-8.5.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f25f51f476d7ec9a46338cf2ba8c1584", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 41362826, "upload_time": "2018-09-06T13:33:01", "url": "https://files.pythonhosted.org/packages/f3/27/e8702d017732af8af8a8f6b5915cb50895250c0020245fe65c6d94e5cdf0/xpress-8.5.4-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8f1e0314464b45e815bd567f9ae73ca8", "sha256": "e2df05c6ef02d8ed2004c2ca8604e1fc7fefd42f1d55732138162eea53031318" }, "downloads": -1, "filename": "xpress-8.5.4-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "8f1e0314464b45e815bd567f9ae73ca8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35524529, "upload_time": "2019-04-26T22:12:00", "url": "https://files.pythonhosted.org/packages/66/99/ca4d7683c48b4248663eedc2f6d9fc30d2795e43a31d582a64895ed5dcef/xpress-8.5.4-cp37-cp37m-macosx_10_7_x86_64.whl" } ], "8.5.7": [ { "comment_text": "", "digests": { "md5": "f672b5572c959f19f397105871ce6a2a", "sha256": "9c512965a5d21a29eb002318b22d69a2f38610be6a442a761743c2f0d24b62ea" }, "downloads": -1, "filename": "xpress-8.5.7-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f672b5572c959f19f397105871ce6a2a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 55197091, "upload_time": "2018-10-15T14:19:46", "url": "https://files.pythonhosted.org/packages/86/87/02ec2aec6b0b857403259e2788245d589f115a7f58fe6f83fee48c9ede99/xpress-8.5.7-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3f7115b187aed59dcb3a341a47b9c6df", "sha256": "43a07c2072cb852a0f1688098654d31995bd1d3c3d2724eb7096b4c7ffdd8eb2" }, "downloads": -1, "filename": "xpress-8.5.7-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "3f7115b187aed59dcb3a341a47b9c6df", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 22334646, "upload_time": "2018-10-18T18:19:25", "url": "https://files.pythonhosted.org/packages/cd/13/e5358a854147146fe34c2d4ba6816868d185bddd8e519e683addb1777a00/xpress-8.5.7-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5fc405c7f80c46c4e3b48e345edb01b6", "sha256": "2500292426ebb4f6d839ba60d2c6b5b4844de10c1d9153cb375574dab847bb72" }, "downloads": -1, "filename": "xpress-8.5.7-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "5fc405c7f80c46c4e3b48e345edb01b6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 41352705, "upload_time": "2018-10-15T11:41:39", "url": "https://files.pythonhosted.org/packages/47/da/4e7914c5caf5d1abc5151021fa8f65fa81abf046ce2e794ba04c94ba21ea/xpress-8.5.7-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "86c09512e1428e1df3b0d024db65988e", "sha256": "64323f9121d4ecd2f3960fbb4639367c9ceefaf4f5cd0f36d69f07f00a784353" }, "downloads": -1, "filename": "xpress-8.5.7-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "86c09512e1428e1df3b0d024db65988e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 55196487, "upload_time": "2018-10-15T14:21:51", "url": "https://files.pythonhosted.org/packages/ce/3b/562da421302881ba39f92f1528982985ac08ee0d95a0509e325f16b6da25/xpress-8.5.7-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "02d0b8caccbf8d879a7ce2e8af63c857", "sha256": "78b560ba379a75b188cd3012057416b7a3601b78d9c76cb10e2a5ce8eade090c" }, "downloads": -1, "filename": "xpress-8.5.7-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "02d0b8caccbf8d879a7ce2e8af63c857", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 22333780, "upload_time": "2018-10-18T18:19:30", "url": "https://files.pythonhosted.org/packages/21/d7/689af265fe300f7d20c56d369597a9543aa2dab33e401b9cc0f176c3c281/xpress-8.5.7-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "98eacde3af67b4c17a9bfe0c505f83c8", "sha256": "2d1ce5aa14d0012c5d1ad555bff0ba8b662104a473d7bf652943251c40fbff2c" }, "downloads": -1, "filename": "xpress-8.5.7-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "98eacde3af67b4c17a9bfe0c505f83c8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 41352768, "upload_time": "2018-10-15T11:41:45", "url": "https://files.pythonhosted.org/packages/ae/44/3e5dd176f5353659d0513df91d02ae3e661be749197d10395b9a249726c0/xpress-8.5.7-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2139bc2598b56882604d083d8d1c4638", "sha256": "f24e5bbac2aafc52ac3ddf6779cf4458bd375ea041f1af12ef97f51b600a6d07" }, "downloads": -1, "filename": "xpress-8.5.7-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2139bc2598b56882604d083d8d1c4638", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 55196779, "upload_time": "2018-10-15T14:23:13", "url": "https://files.pythonhosted.org/packages/63/8c/23505e3e8e8509e197b1d61b65bdca12cd956c2e7124e1f5a29aa139f667/xpress-8.5.7-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "02ab9896a2bd62c8a911391f86655567", "sha256": "e7bc0b19119d7dbaf4354ee2144c188058a877d840707a110b9f3091be4969d9" }, "downloads": -1, "filename": "xpress-8.5.7-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "02ab9896a2bd62c8a911391f86655567", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22331528, "upload_time": "2018-10-18T18:19:34", "url": "https://files.pythonhosted.org/packages/7a/25/a9cb2cdef212a6c7fed40ff7bb8f0e25e19646be17cf4c3ab4319bd56006/xpress-8.5.7-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2d032db8d782aa53dc32ece9f110c5f2", "sha256": "e77c93804d9f61ad9b358c963223d515af600d59d7006215ad384362245d52d7" }, "downloads": -1, "filename": "xpress-8.5.7-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "2d032db8d782aa53dc32ece9f110c5f2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 41364876, "upload_time": "2018-10-15T11:41:50", "url": "https://files.pythonhosted.org/packages/fd/ce/2f6fd689d938fae9976d347c61563bf453b23f347ab7d4a179bdefe57258/xpress-8.5.7-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "84d42eb56e3facd642a19700ad04a872", "sha256": "8aa0c68de5d7256521afcb435df2691692792d586dca570b3d13a096f0d979ed" }, "downloads": -1, "filename": "xpress-8.5.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "84d42eb56e3facd642a19700ad04a872", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 55196771, "upload_time": "2018-10-15T14:24:29", "url": "https://files.pythonhosted.org/packages/16/6f/6cdab6249b254881a92a61a8eaac0e4523077ff81274536a94f894830f7f/xpress-8.5.7-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fd48fe440aed48abc7d9c49e52c76fc3", "sha256": "35d63c00fe7d6fcc79e958934e8763626dcdb467e9bafc6ebeac8cb2cc468a75" }, "downloads": -1, "filename": "xpress-8.5.7-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "fd48fe440aed48abc7d9c49e52c76fc3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22331521, "upload_time": "2018-10-18T18:19:38", "url": "https://files.pythonhosted.org/packages/30/88/d59cf3155f9814aad6edc1ef9b35fc4e0103596946e0901a09bf7a008261/xpress-8.5.7-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "82b06bf54f40c38079632d420f065d99", "sha256": "fe85e0e1c0d4aaccb82bc37bd09de2b5a3c0447541bea3c97109fd0c6dd71689" }, "downloads": -1, "filename": "xpress-8.5.7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "82b06bf54f40c38079632d420f065d99", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 41364875, "upload_time": "2018-10-15T11:41:56", "url": "https://files.pythonhosted.org/packages/d2/9f/43c90d93dbf52f24434a240d9965ca0259e585fe8bca01bab51c80d74371/xpress-8.5.7-cp36-cp36m-win_amd64.whl" } ], "8.5.7.1": [ { "comment_text": "", "digests": { "md5": "d6de97c4c787d1e26099679c7703487b", "sha256": "6a756d4d7646d3c9928426ed9f97c659ec4a7fb4241f14aafe61a24af1571963" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "d6de97c4c787d1e26099679c7703487b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 35507885, "upload_time": "2018-10-29T15:02:05", "url": "https://files.pythonhosted.org/packages/4b/ba/725a055dcc906f840132b376a93f3114a4faab67e9bc4532b3a87bb5400a/xpress-8.5.7.1-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "75b07d6f0f31e53ad5f8852bc322e71d", "sha256": "8259a4caf4e9329c5111c38e734c74253506291c3ec3c82c77bb96e61cb3f2ab" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "75b07d6f0f31e53ad5f8852bc322e71d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 55048865, "upload_time": "2018-10-25T14:58:36", "url": "https://files.pythonhosted.org/packages/11/47/89f6d5875ae9e46a7956bfbb92c48325b79f938300fd1b03cc250cc31112/xpress-8.5.7.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c46441e2037dda289617031cc85210fb", "sha256": "8320256ed9d593683ee22e547b4f6d6d9a3831b2050868be5999dc035b90073b" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "c46441e2037dda289617031cc85210fb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 22342134, "upload_time": "2018-10-25T15:08:12", "url": "https://files.pythonhosted.org/packages/1d/e4/48ebaa903c6d94d459ec152f0374e73eaafd63ea0d24d0b6ed14f5721579/xpress-8.5.7.1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "94fb841ae1aa7b42a4919bca61467489", "sha256": "13082f39644c6b891533a60f9dd5725c7e09c1e63b9c6f0ccfdd548daf5d7b92" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "94fb841ae1aa7b42a4919bca61467489", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 41361083, "upload_time": "2018-10-25T17:41:30", "url": "https://files.pythonhosted.org/packages/42/bd/9736e852acf775f970e7645382ff878b61a85cf3005626a52af5679d81be/xpress-8.5.7.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c2d2fa0524efbbd1ca875908d3d5a225", "sha256": "f5c62c196729395c47e840a0d3cfe8106d2d4f299706eb4ae12d6829d764838f" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "c2d2fa0524efbbd1ca875908d3d5a225", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 35508912, "upload_time": "2018-10-29T15:02:12", "url": "https://files.pythonhosted.org/packages/b4/73/efd38ae6c540801725695fa9eaeace229e822ef6bf06e5bf3c159d933497/xpress-8.5.7.1-cp34-cp34m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a75ff9f5e432dd7c1251231e6fabe893", "sha256": "6ab894106c2caa20afca42f93edb329b82bcf038fdc593484075fd02a3bfbffb" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a75ff9f5e432dd7c1251231e6fabe893", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 55048123, "upload_time": "2018-10-25T14:58:46", "url": "https://files.pythonhosted.org/packages/f6/e4/abefe07878e41146b879b67b48af45acf840eb2999edee4b0d26f24bd914/xpress-8.5.7.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "40ab1473d91293f622b07dd0b7c11739", "sha256": "e8a6169dd4f27c4bc18c7fa4eed2109795fd05171464d587221668b91d32e57b" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "40ab1473d91293f622b07dd0b7c11739", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 22341384, "upload_time": "2018-10-25T15:08:17", "url": "https://files.pythonhosted.org/packages/dd/bc/db987c39a18c0635a66d7698f4c404fd7131fb11dcd81daf953c2453bb41/xpress-8.5.7.1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "634c22f5e04f41f96ea553c36ee1063a", "sha256": "f8ffcf48a41c956ba50dfa7f3d86b03ddbf279cd31e488bfd86d340624d399ff" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "634c22f5e04f41f96ea553c36ee1063a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 41360918, "upload_time": "2018-10-25T17:41:36", "url": "https://files.pythonhosted.org/packages/85/7a/885379297dda43f1e1070de3cd8f5e0e00d2fdf88e91e07c8742b07295b5/xpress-8.5.7.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "406fefb718abec944c9973e43d3fd805", "sha256": "e858c468f1f576c63ea9625b6901dff54218ec50ad38cf882cc5d06007f0f30d" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "406fefb718abec944c9973e43d3fd805", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 35509014, "upload_time": "2018-10-29T15:02:19", "url": "https://files.pythonhosted.org/packages/2a/aa/d6f98501db3ab7a7b3b18e58416cb2de6f3ae0c98f727dcc4b744eb6612d/xpress-8.5.7.1-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a338ae2966390081255c5642bc723c86", "sha256": "bcc8594b7b9f408599b9577e2d7cb51ce53f355cdb48b91f84fec3d578ba947e" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a338ae2966390081255c5642bc723c86", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 55048469, "upload_time": "2018-10-25T14:58:57", "url": "https://files.pythonhosted.org/packages/95/b9/9e57ab9989c5e9be2f01bc4ac99636c50be5da38fff1cbb3f4f2b7912d6a/xpress-8.5.7.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ce028b1a78683c09431e24676ab907c0", "sha256": "6165531ba992e31abcf83702c444dc59270c6a62bd68fe0e7630f557f59d0df8" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ce028b1a78683c09431e24676ab907c0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22339374, "upload_time": "2018-10-25T15:08:22", "url": "https://files.pythonhosted.org/packages/b3/07/66134788f6e048b2bcf5855015233b5a5bbef318400d1666a506946e5518/xpress-8.5.7.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "72cab71a85213b1b65d0c3a042be86b0", "sha256": "7e168fe4e4e4ee1ad2d2e9461351eb8ef591d7eda734513ecc8b54e0060a0b55" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "72cab71a85213b1b65d0c3a042be86b0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 41372894, "upload_time": "2018-10-25T17:41:41", "url": "https://files.pythonhosted.org/packages/ce/e8/aec517ce6a11845d1a36458402107ef9aa1bd9b4e2ed14495d488619ce16/xpress-8.5.7.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7a202ca4cdfa85954ae0b9d7af7a4e98", "sha256": "9131443074757df246964293bb2eba05b8d2e26ef7fb8370287d3098c9052e8f" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "7a202ca4cdfa85954ae0b9d7af7a4e98", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35509009, "upload_time": "2018-10-29T15:02:26", "url": "https://files.pythonhosted.org/packages/02/55/965ff63970f0b45a9ed5bb3950981e6cf2a3ead7d0d0fb91ac4c8fac613d/xpress-8.5.7.1-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ea8c726d7cf86f8f45d88af90966e972", "sha256": "2642a981e8bfd37623e91cf45f3226e781b40618b8d401f7c5ca5b5e848afae6" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ea8c726d7cf86f8f45d88af90966e972", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 55048468, "upload_time": "2018-10-25T14:59:15", "url": "https://files.pythonhosted.org/packages/0a/a4/b6c98cdebc862b1f851c1ecd826758e4263c79062b3212d13876202d14f7/xpress-8.5.7.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "25aa3b68e5cf0ceb89bc39b3a029b160", "sha256": "1c62b48b2082f501ec1f5e801465520d7e5991ad86106bd09c891633cd492a89" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "25aa3b68e5cf0ceb89bc39b3a029b160", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22339375, "upload_time": "2018-10-25T15:08:27", "url": "https://files.pythonhosted.org/packages/b8/18/8d6a539b347198cdccb3114e377023b48bc848bdd1fd5d64243a29e12f97/xpress-8.5.7.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0ddb0f585de0aab3c05fa1312c3b44d4", "sha256": "332348313c4d5a0c1200164763170b045d32ead9139e6ff489c8d8ffd984a877" }, "downloads": -1, "filename": "xpress-8.5.7.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0ddb0f585de0aab3c05fa1312c3b44d4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 41372887, "upload_time": "2018-10-25T17:41:47", "url": "https://files.pythonhosted.org/packages/fa/a3/fc97f84e44e9af6242e1ba0308d211becdd85a6a1aa56f5ffc9e9224fa5d/xpress-8.5.7.1-cp36-cp36m-win_amd64.whl" } ], "8.5.8": [ { "comment_text": "", "digests": { "md5": "beeee0d9eea1767bb85338e4e04d3808", "sha256": "01285cdbd517eeb310e6192674f49107916a153d3dc5d2d8ebd5a01e0c35da5c" }, "downloads": -1, "filename": "xpress-8.5.8-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "beeee0d9eea1767bb85338e4e04d3808", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 43536782, "upload_time": "2018-11-15T22:36:13", "url": "https://files.pythonhosted.org/packages/4b/24/3c205688ebb278f3b90163771098687c5e5fd6326c236fac2c99ed2613cb/xpress-8.5.8-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "908a07473828b14a84d1a7b9ed95f8eb", "sha256": "2f68b14c816ad10afab99a350f836b1d4776d22b4c49498fdce4aefc7243b850" }, "downloads": -1, "filename": "xpress-8.5.8-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "908a07473828b14a84d1a7b9ed95f8eb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 41363670, "upload_time": "2018-11-15T16:30:19", "url": "https://files.pythonhosted.org/packages/cd/a6/d0ffaa6f85bee37e3fbcfa32a782e05b3826a8116bdd8af2b04c94b0cf8c/xpress-8.5.8-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4687517b4ef9778e40add89a1900f763", "sha256": "7d31275dc47fa162e8d93866e85cf303d63a01ad0c2f901b35cd41825ed470ad" }, "downloads": -1, "filename": "xpress-8.5.8-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4687517b4ef9778e40add89a1900f763", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 43536297, "upload_time": "2018-11-15T22:36:41", "url": "https://files.pythonhosted.org/packages/66/ba/6331f0b2729bd7e4daa32081638399140a7e120601a4a835196c3c8f9c25/xpress-8.5.8-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f83c3a3e3d2ac16dc107d4b1e6d7b616", "sha256": "98cfc588b320af4e1ac51c38ac65821c9c3cdbc52202caa6d451d06c4788594a" }, "downloads": -1, "filename": "xpress-8.5.8-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "f83c3a3e3d2ac16dc107d4b1e6d7b616", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 41363138, "upload_time": "2018-11-15T16:30:26", "url": "https://files.pythonhosted.org/packages/79/be/156349042f723730272279597ae764a2d736de7fbd09aee2f60c4336d7e7/xpress-8.5.8-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "756657990b94f0cd730e5404eedb6b00", "sha256": "b8b442f730a740ca7390b887e68b74de30fa53659936564a895c8a69d46ca78f" }, "downloads": -1, "filename": "xpress-8.5.8-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "756657990b94f0cd730e5404eedb6b00", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 43536444, "upload_time": "2018-11-15T22:37:29", "url": "https://files.pythonhosted.org/packages/24/7c/8126c41dcc813f37cf74f9032dd57fa6713c4e82e675e6a63fda665aff24/xpress-8.5.8-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ae0358987cbe0832488ac083aaf44116", "sha256": "27a012aa1efe42d220b61756fffcb2bdcc0ff86a6a27942a05464deede72b323" }, "downloads": -1, "filename": "xpress-8.5.8-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "ae0358987cbe0832488ac083aaf44116", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 41375486, "upload_time": "2018-11-15T16:30:32", "url": "https://files.pythonhosted.org/packages/19/55/4f7f48b5f0357797ff715a5f2b1e1ee3396d0a0adcaa2f31866de712f88b/xpress-8.5.8-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "772c3d30f8ffe855147a431da8937ab4", "sha256": "6cea266007eec59e882140d9155ee4af533b861be05ef65040332025cb5e49cb" }, "downloads": -1, "filename": "xpress-8.5.8-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "772c3d30f8ffe855147a431da8937ab4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 43536446, "upload_time": "2018-11-15T22:37:53", "url": "https://files.pythonhosted.org/packages/68/a8/8a44d1c4607995061299a28c8dc444c843fb1a6d3b7149714ddfe1270809/xpress-8.5.8-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "542b3268519f987b8540f88be386940d", "sha256": "284d36a9d4ec34c227d8ca6038a6170c7597fd4f056569a2f460fb6ba38e9d3c" }, "downloads": -1, "filename": "xpress-8.5.8-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "542b3268519f987b8540f88be386940d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 41375480, "upload_time": "2018-11-15T16:30:38", "url": "https://files.pythonhosted.org/packages/81/b1/b6ead6b5732eb447260fc136f6f9935d9c6233ec6ea920d11e44914f6893/xpress-8.5.8-cp36-cp36m-win_amd64.whl" } ], "8.5.9": [ { "comment_text": "", "digests": { "md5": "5b43122a79de01390e1cc63150e665d6", "sha256": "174610f192da4141cd3484e0eae7c1ee508ad3ef08add2378481faa18c2280a9" }, "downloads": -1, "filename": "xpress-8.5.9-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5b43122a79de01390e1cc63150e665d6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 43622191, "upload_time": "2019-01-18T19:13:24", "url": "https://files.pythonhosted.org/packages/63/4a/12e58db03abc02afea9743ee0d69f1e259031a1eebb9c22283c53cc28de8/xpress-8.5.9-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4140ec749cb74562231504c75d8aa194", "sha256": "19850fd44dff1dc2db5f21742fbe3ad3159bcdaa301a2f270ab32485aa3249f2" }, "downloads": -1, "filename": "xpress-8.5.9-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "4140ec749cb74562231504c75d8aa194", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 41389908, "upload_time": "2019-01-18T19:23:30", "url": "https://files.pythonhosted.org/packages/3c/15/a8050294c4041f4479c2441fcca86ae9d5cbbf6bd23de5d128ee4879eca4/xpress-8.5.9-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5ccfe7964c2fa9b8031650b64d35f0e6", "sha256": "d1c4e56c7dddf64addeea150af890ca11b806f409403cdb75bf2fc5f57ffce11" }, "downloads": -1, "filename": "xpress-8.5.9-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5ccfe7964c2fa9b8031650b64d35f0e6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 43608267, "upload_time": "2019-01-18T19:13:43", "url": "https://files.pythonhosted.org/packages/5d/75/8c36682fd96a37de43e4d1e5851f1c427f6e9e0d18f0799949ca7f814baa/xpress-8.5.9-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2691c12b244862e702ab5b6f532eb75f", "sha256": "e4f01104f51845f85827026073286c578966c6ea19c0eb45129ab2ffe3531742" }, "downloads": -1, "filename": "xpress-8.5.9-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "2691c12b244862e702ab5b6f532eb75f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 41376586, "upload_time": "2019-01-18T19:23:38", "url": "https://files.pythonhosted.org/packages/e7/eb/279532a1998aba38b42079eb072b93211e9d6d71dff51909d8463926fafa/xpress-8.5.9-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "92b87d84cf05324e60d6e5ae15536d04", "sha256": "df99f7a5e79c3b3f6da2e0b1af3e96786ad08a2b27752d49594be1f9c412c1ac" }, "downloads": -1, "filename": "xpress-8.5.9-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "92b87d84cf05324e60d6e5ae15536d04", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 43606139, "upload_time": "2019-01-18T19:13:52", "url": "https://files.pythonhosted.org/packages/06/f3/dc8e6b1705d98aa6366b56946b1f07abc39452afcafd0c6e67b21e1c9116/xpress-8.5.9-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fdbd5b63fe905a4c73f50aeca7ed3cdf", "sha256": "ceba96b705b6abb0df459005b77ab17a6d1a1a021cb4c789d7bd0afcb7ca75c4" }, "downloads": -1, "filename": "xpress-8.5.9-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "fdbd5b63fe905a4c73f50aeca7ed3cdf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 41379796, "upload_time": "2019-01-18T19:23:48", "url": "https://files.pythonhosted.org/packages/49/6a/067a432055fa8f4b3b81ac652fe321c212a3f435852f06551076e1fb70be/xpress-8.5.9-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2fad1973977e3dc0911cfc15855750f1", "sha256": "2036a92e9ee2ee41079de33e421ac7e36649cb83e4bcff4d3b5674014af25687" }, "downloads": -1, "filename": "xpress-8.5.9-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2fad1973977e3dc0911cfc15855750f1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 43621453, "upload_time": "2019-01-18T19:14:10", "url": "https://files.pythonhosted.org/packages/47/87/c7a32e1234402991361bb1236f5d05e46f484c2073d6479541df0121ff1c/xpress-8.5.9-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "50200bc84c7dcbf09e21582822219b58", "sha256": "a979215dc125e90a1f95dfc520338af1815fb4b66fe32a67dc62e88d31f76e29" }, "downloads": -1, "filename": "xpress-8.5.9-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "50200bc84c7dcbf09e21582822219b58", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 41399932, "upload_time": "2019-01-18T19:23:56", "url": "https://files.pythonhosted.org/packages/df/aa/53a221542a526af56a44d4bf7c8f1b58e400c973217bdff0ace7c4957b07/xpress-8.5.9-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b2898dce940f01e5353e6a986156216e", "sha256": "2256a9b27bc176c2a98c8cbcb71dd0258c576a0107c59badf7de2c7e39389fd0" }, "downloads": -1, "filename": "xpress-8.5.9-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b2898dce940f01e5353e6a986156216e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 43621450, "upload_time": "2019-01-18T19:14:21", "url": "https://files.pythonhosted.org/packages/c0/25/34bfb2325c85004cc554679178862d9f09c24d0be2f684b68585148efa68/xpress-8.5.9-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "feacb5df676f638854cb306e60dace72", "sha256": "888c955ff79ba48484b32b2f990c4e9244231b2d75870f1cac300ea55e57da8b" }, "downloads": -1, "filename": "xpress-8.5.9-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "feacb5df676f638854cb306e60dace72", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 41399930, "upload_time": "2019-01-18T19:24:20", "url": "https://files.pythonhosted.org/packages/65/42/4130cb91eb3543df70d3fe49259401cc1a3eb2cf3a9ff4f037e82d045540/xpress-8.5.9-cp37-cp37m-win_amd64.whl" } ], "8.6.0": [ { "comment_text": "", "digests": { "md5": "4f1a145372f98510a64074b297825b9a", "sha256": "0e49c27bc8b5e9c0e2c63bab7bceda42086ffa94a7ee7430c027d3ae107e1ec8" }, "downloads": -1, "filename": "xpress-8.6.0-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "4f1a145372f98510a64074b297825b9a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 31344307, "upload_time": "2019-06-10T16:25:19", "url": "https://files.pythonhosted.org/packages/49/ba/cbe94655dfe0976e3a065102684ec9ab44ca1a125d067d5afb245c320283/xpress-8.6.0-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5bc9f917cd75da19aba91eb2a3f7d4ed", "sha256": "28e64cbe3015eea7acd0a8b6002b6a7288e07c289d4920218ed23af250306307" }, "downloads": -1, "filename": "xpress-8.6.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5bc9f917cd75da19aba91eb2a3f7d4ed", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 12531764, "upload_time": "2019-06-10T17:29:18", "url": "https://files.pythonhosted.org/packages/c2/5e/0e361e110801a0e17e5fe1a2484398702f6d8d201e2a901762d3ed2af394/xpress-8.6.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "893ab0253bb83055d9dd83405e9d178a", "sha256": "d7efc48d85c08e26de5fa83876e5eba4b31dfcd1486aa3f52db0acb586cb14e7" }, "downloads": -1, "filename": "xpress-8.6.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "893ab0253bb83055d9dd83405e9d178a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 38406777, "upload_time": "2019-06-10T17:30:21", "url": "https://files.pythonhosted.org/packages/7b/91/b75deb1c84db4e87bb213bc0827686294c132a9fdee9462e9867c9cf009e/xpress-8.6.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "50212c284be5ab10ea2fbc38d5ad27ad", "sha256": "e86b0efae2d492a96629599aa5d37cdaf6152419c3102316bd1afb0ff55a54c5" }, "downloads": -1, "filename": "xpress-8.6.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "50212c284be5ab10ea2fbc38d5ad27ad", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 38310493, "upload_time": "2019-06-10T16:50:13", "url": "https://files.pythonhosted.org/packages/5b/3c/e9d440823f7387ab9befc544f67cefb0ce28bbc1302bc5b97ee35498cf04/xpress-8.6.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ea79b7df885e505afdd1d10b5bad027b", "sha256": "650aa0b39154b5e62ad55e43e34c59481f68b3e348f077fe106acf886efb3c84" }, "downloads": -1, "filename": "xpress-8.6.0-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "ea79b7df885e505afdd1d10b5bad027b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 31344943, "upload_time": "2019-06-12T12:01:45", "url": "https://files.pythonhosted.org/packages/6d/d0/c7fae8d33d7947f8c23e5ee3d9cdcfd6f02658ee45924a2d90bb3f621195/xpress-8.6.0-cp34-cp34m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1b54a8005fecf5dbe919b323fed6ff75", "sha256": "8c166a4cfc5eea251f9ea74d2b37126550b1f5e827971c1a795f59ffbe0eeb18" }, "downloads": -1, "filename": "xpress-8.6.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1b54a8005fecf5dbe919b323fed6ff75", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 12531441, "upload_time": "2019-06-12T12:01:16", "url": "https://files.pythonhosted.org/packages/f7/05/624e5a49319d0c93896aa5ec8f16d96c096339381df813cafe6868b7eba8/xpress-8.6.0-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "cd42fa499827ac01f46829c61db737f4", "sha256": "22b2bd89f756f55bb5df55f35b07b2251201c9aeb09c6b9a92b2bcee8f50bb88" }, "downloads": -1, "filename": "xpress-8.6.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cd42fa499827ac01f46829c61db737f4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 38405960, "upload_time": "2019-06-12T12:00:42", "url": "https://files.pythonhosted.org/packages/56/5d/35615c31d8a6faafec27433c49ff1ea972f7996421e53ac52efa93b9d563/xpress-8.6.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "77a3e538337a76b1229b8715570f99d8", "sha256": "04bf0b27fed6be3585ea3784acf5b85e4bc9ec56f6d256d982daf3edcfc93664" }, "downloads": -1, "filename": "xpress-8.6.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "77a3e538337a76b1229b8715570f99d8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 38305009, "upload_time": "2019-06-12T12:02:40", "url": "https://files.pythonhosted.org/packages/47/6c/7379553b7f8f06b7c416d24ddd04dbf93d31c06792f93741d4db89e8933e/xpress-8.6.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f5110987abda27f4911253347a9d1417", "sha256": "5ab3d473fff0a8c9b9548ed833d78d83863372923fe0643cc7a5b19cfbbc415c" }, "downloads": -1, "filename": "xpress-8.6.0-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "f5110987abda27f4911253347a9d1417", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 31329697, "upload_time": "2019-06-10T16:18:55", "url": "https://files.pythonhosted.org/packages/8b/5f/21bb8ee1b7ff5b6aa5232fbf9c22fb08a130668a066672bb2e0c4ca42cf3/xpress-8.6.0-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b288b737d94a079c05e4a07621b3b4a0", "sha256": "0ad807f6caa6960f19200ca4e700bd05c03199c71badd8006e8cafe8e776eb64" }, "downloads": -1, "filename": "xpress-8.6.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b288b737d94a079c05e4a07621b3b4a0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12516115, "upload_time": "2019-06-10T17:29:07", "url": "https://files.pythonhosted.org/packages/69/8c/097a6a0046009e972b11456851f3aa10b97221ee6834c4c767628d03bf5f/xpress-8.6.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "9dee1057c348d6e664738f29bf07cc38", "sha256": "a703fbf582f140bd5ec21425fa9cf17a76e36651b94aca5cd6e6d942ad94f3eb" }, "downloads": -1, "filename": "xpress-8.6.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9dee1057c348d6e664738f29bf07cc38", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38391113, "upload_time": "2019-06-10T14:32:58", "url": "https://files.pythonhosted.org/packages/a0/e0/d3005379ee7cd289cd041e458a8b75f12d4d6afabf95752b7799073b2f08/xpress-8.6.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "099c1f784aface3fe1eff0ff45ad17d9", "sha256": "0dc1b72d50508908a49370a618f1aadc30309a4a088895c5c6a97e5cf9b2fa14" }, "downloads": -1, "filename": "xpress-8.6.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "099c1f784aface3fe1eff0ff45ad17d9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22715906, "upload_time": "2019-06-10T15:42:03", "url": "https://files.pythonhosted.org/packages/ba/94/ce77073d1046182c65eae705867217d758057203fc2ab7291c8a6e697e51/xpress-8.6.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "de50d3f96c1820bec70b43dc4bb9121d", "sha256": "15edbc4834b0db28ec1f5793ffd9fc643c1421f7eebd636dea617dbd96538e5c" }, "downloads": -1, "filename": "xpress-8.6.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "de50d3f96c1820bec70b43dc4bb9121d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38295984, "upload_time": "2019-06-10T16:43:49", "url": "https://files.pythonhosted.org/packages/8b/f1/2d7fa243308e0ef42beda8c534875cd1b53554c3cff4693a6cd11809b703/xpress-8.6.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e04e0797a88592abf1c857463b9470d2", "sha256": "2c4198e6cd3edd0ecc2028ab0f9dd9d7a8dd69c7163c64e1d6bcb3f66b760b0c" }, "downloads": -1, "filename": "xpress-8.6.0-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "e04e0797a88592abf1c857463b9470d2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 31345033, "upload_time": "2019-06-12T12:01:59", "url": "https://files.pythonhosted.org/packages/a9/f3/0b2becd4ab490a2b7f916dff6c00cceab9b9caddd9e57f246915d88c2e9f/xpress-8.6.0-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "af4b53c17d25c9ed96ececed2ee432ff", "sha256": "28e4addfe3a9610553546e9689a67e454743cba5d671d7db3a790802e94dfa71" }, "downloads": -1, "filename": "xpress-8.6.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "af4b53c17d25c9ed96ececed2ee432ff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12531447, "upload_time": "2019-06-12T12:01:26", "url": "https://files.pythonhosted.org/packages/e1/94/e290f065f8fd43c80b551fdd1732faa040a7027c217daf74acb982923cf2/xpress-8.6.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b83c010621e0248c3420151f80c57f82", "sha256": "0a708793ea28109a9280f3390fbacb4edeb6bd447bc6a3467b89dc57b021f03c" }, "downloads": -1, "filename": "xpress-8.6.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b83c010621e0248c3420151f80c57f82", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38406434, "upload_time": "2019-06-12T12:00:58", "url": "https://files.pythonhosted.org/packages/cd/7c/39c50369df380e9d2017ea92b28757426bb05b28f423ed25d017843e8e88/xpress-8.6.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a382d0c31c125b75f6f3c0bbccf86f07", "sha256": "ae846237871754e430fe9f101f4f74a941f3ae4ad33594d81c067f8716773948" }, "downloads": -1, "filename": "xpress-8.6.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "a382d0c31c125b75f6f3c0bbccf86f07", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22742742, "upload_time": "2019-06-10T15:42:21", "url": "https://files.pythonhosted.org/packages/94/6a/fb1a6097853c35b31f1d814d220e846e200625d2f489157a597eeef33701/xpress-8.6.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b59f26ea0261b581bb08fec65969e9b4", "sha256": "3c6e4cf3f492c12a5ca286ed42cade3bfb21001314fbaf7c231bfd6d20dc2830" }, "downloads": -1, "filename": "xpress-8.6.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b59f26ea0261b581bb08fec65969e9b4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38323936, "upload_time": "2019-06-12T12:02:56", "url": "https://files.pythonhosted.org/packages/18/2d/d902b0061673d5ee7a09718fae1fd7395126f010c53253481dfa76368030/xpress-8.6.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ed7041fbc2f451e38b983c013d5c9f01", "sha256": "a894c515e69148682f8a5239c38f59ec82541c7e220a244a3dd9b07f2025bf89" }, "downloads": -1, "filename": "xpress-8.6.0-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "ed7041fbc2f451e38b983c013d5c9f01", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 31345033, "upload_time": "2019-06-12T12:02:07", "url": "https://files.pythonhosted.org/packages/aa/1d/dacb8aa106a7d40becdceef4e9c113a50116414e5e313db1e451dc400809/xpress-8.6.0-cp37-cp37m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fddf89b68f60362b0b23214db67475bb", "sha256": "c25d41054c14dac67118be2369ef542e2f2fe99044aa7b7075319fbb1437f939" }, "downloads": -1, "filename": "xpress-8.6.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fddf89b68f60362b0b23214db67475bb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12531426, "upload_time": "2019-06-12T12:01:31", "url": "https://files.pythonhosted.org/packages/bc/bb/ffc4019bdae84fdb050d8355c701a8203a8fceff43d6bf2c0b6427fa1496/xpress-8.6.0-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5f003f85767d08dda2fd31d1981194ff", "sha256": "a923ad8feff7dff82cc93ff6dd7c06b59720a34d62f41bb4ce74755b7d70b21a" }, "downloads": -1, "filename": "xpress-8.6.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5f003f85767d08dda2fd31d1981194ff", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38406434, "upload_time": "2019-06-12T12:01:07", "url": "https://files.pythonhosted.org/packages/c9/79/246fb045200df3f238238bcc52ced0be401ceabf5cd3ff226001f56238ef/xpress-8.6.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f7f5e0c9b773a8230c62c76af126a404", "sha256": "061d9b81d8afb485ffb91f27aeb8b8ded5a0d1a1f19013fb9ce0b4daa9df0768" }, "downloads": -1, "filename": "xpress-8.6.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "f7f5e0c9b773a8230c62c76af126a404", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22731237, "upload_time": "2019-06-12T12:02:25", "url": "https://files.pythonhosted.org/packages/03/1b/c4406fa7c8a6a256dedcdee8e855d4ca715c838bf72ea40628cb2c248c8e/xpress-8.6.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4de6889536a27700acab761ee284f54f", "sha256": "1e913bcc60582ca28e10ecc7794ca8c5d1edc15675eb0129dafb4e16293f5d87" }, "downloads": -1, "filename": "xpress-8.6.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "4de6889536a27700acab761ee284f54f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38323936, "upload_time": "2019-06-12T12:03:05", "url": "https://files.pythonhosted.org/packages/37/54/4f5672333ade7be9ba9175cdc7eda81a5ef886538f6f78ee71a4469fdea2/xpress-8.6.0-cp37-cp37m-win_amd64.whl" } ], "8.6.1": [ { "comment_text": "", "digests": { "md5": "e39685235bfea379f281279735102395", "sha256": "1ae6568e55bc36506f5f9722509283310a5a765ee3663d79e84fa130a2fc1700" }, "downloads": -1, "filename": "xpress-8.6.1-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "e39685235bfea379f281279735102395", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 31361727, "upload_time": "2019-07-17T20:27:44", "url": "https://files.pythonhosted.org/packages/2f/b4/a2d8f8ed25c841b3bb4c26a03a779ecafe464deef6c0c41a0a900d124f21/xpress-8.6.1-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b7440efbe8b2f76918f95f09136ec3fb", "sha256": "157a6b85ee12d4de9ce9e2e03f79f2f540282994de48da979cad6bc3e540f444" }, "downloads": -1, "filename": "xpress-8.6.1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b7440efbe8b2f76918f95f09136ec3fb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 12545063, "upload_time": "2019-07-17T18:58:24", "url": "https://files.pythonhosted.org/packages/72/e9/d6b88f7fc3ad0eb3be42b75cd12b78c2f88c33d495621e3abd4b0c952794/xpress-8.6.1-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "03da0392f0eb2948cea44e805031b269", "sha256": "8b093be7f1d316fddbbd103545d8c1fde0b31a1967545df9afe06cad161f48d6" }, "downloads": -1, "filename": "xpress-8.6.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "03da0392f0eb2948cea44e805031b269", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 38410922, "upload_time": "2019-07-17T18:55:54", "url": "https://files.pythonhosted.org/packages/2c/8e/6eb381f4c3bce68ddd3a1a2521301b6dc8e88741cfb696e22888959413be/xpress-8.6.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d7bbd76f594757443477d06fe9956b3f", "sha256": "abd7f413fdd26cf0962440aa57f4f71fa1f660662156f21afc33fc609129de2b" }, "downloads": -1, "filename": "xpress-8.6.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "d7bbd76f594757443477d06fe9956b3f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 38331802, "upload_time": "2019-07-17T18:17:59", "url": "https://files.pythonhosted.org/packages/5f/b7/4ca9401bddc18f654cf7074029deb46d2c18faf8a45287d395d9781d3303/xpress-8.6.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e5f912cbe4e3dcc586657128d92c9be7", "sha256": "77e1d9a1d9e97b01b76fcfe090a0ec885625901a84697166487ec2f2cd4a3419" }, "downloads": -1, "filename": "xpress-8.6.1-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "e5f912cbe4e3dcc586657128d92c9be7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 31362473, "upload_time": "2019-07-17T20:28:49", "url": "https://files.pythonhosted.org/packages/a8/5b/834976652ab0537f2e3464627188339edb44b1206393b62c627152e10a7a/xpress-8.6.1-cp34-cp34m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8d1ffb61d443b6624385fbc6ea49a7c7", "sha256": "c7463879bdd96f919b4528a1edf1b188ae7909e195aa06c9023dde9a595de44c" }, "downloads": -1, "filename": "xpress-8.6.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8d1ffb61d443b6624385fbc6ea49a7c7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 12544774, "upload_time": "2019-07-17T18:58:37", "url": "https://files.pythonhosted.org/packages/61/97/6cc74b8f073850738deed4dd8f08f597b29ff901a5eefdc55465e8a61092/xpress-8.6.1-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "62f76d2e1599901d6045ada1e6db6f0e", "sha256": "b249ddcc3e847970dd8902f5ba978c927daefde967d59b972abe68746ede263b" }, "downloads": -1, "filename": "xpress-8.6.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "62f76d2e1599901d6045ada1e6db6f0e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 38410112, "upload_time": "2019-07-17T18:56:16", "url": "https://files.pythonhosted.org/packages/93/06/2edfce223637759da5266edc5faadb683a227340bf67ce3cfa67f5537ffc/xpress-8.6.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6218d50ad1ca116e3ce6cecf056114a8", "sha256": "4075507a37c2d707e2ffe4b8151d988df7d86419073d8848fab4fcbd83799d15" }, "downloads": -1, "filename": "xpress-8.6.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "6218d50ad1ca116e3ce6cecf056114a8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 38326242, "upload_time": "2019-07-17T18:20:11", "url": "https://files.pythonhosted.org/packages/7b/80/d0fd2187895c26b9572f570add0f7db41eb3a9392973795ed9934d56ac8b/xpress-8.6.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2aa054af836dd5a7a10bfc922dea1cbf", "sha256": "3f88228ad05b6fdf536fad7b920aba31121efe739465df2f9ba2eda37ab08267" }, "downloads": -1, "filename": "xpress-8.6.1-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "2aa054af836dd5a7a10bfc922dea1cbf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 31362534, "upload_time": "2019-07-17T20:26:19", "url": "https://files.pythonhosted.org/packages/bf/2a/c313a926dd5717a62aafe7096552e8efad90dfa1e93f83362cb59b355550/xpress-8.6.1-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6ed9be7a15b41722f12ae3825cd858d4", "sha256": "cecf189951b2c786a46fd4f37e5d3bbcaf22b5abda6e49b3c30f57acb990b32b" }, "downloads": -1, "filename": "xpress-8.6.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6ed9be7a15b41722f12ae3825cd858d4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12544754, "upload_time": "2019-07-17T18:58:11", "url": "https://files.pythonhosted.org/packages/f5/0c/9ef8e3b80ff3eb265e17de42b199b46ccb8b9063236a8715919654613929/xpress-8.6.1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "8c7739fbe3020fb3fc62ecaed0585289", "sha256": "ac23b82368940d0c0a4fae453bb08653b7b86808ce591ff20f7c22a40254ccbe" }, "downloads": -1, "filename": "xpress-8.6.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8c7739fbe3020fb3fc62ecaed0585289", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38410515, "upload_time": "2019-07-17T18:55:30", "url": "https://files.pythonhosted.org/packages/e7/83/165552b1ac13cd89d3f22a4bc67915c1c5a036f05c19840b330eeb064e5d/xpress-8.6.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "886a617945d0be25f06d665112688b17", "sha256": "fdf17dec73b9f258a1bc03573eb813f4f558e1b9721048920ebe45e9753f0558" }, "downloads": -1, "filename": "xpress-8.6.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "886a617945d0be25f06d665112688b17", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 22736062, "upload_time": "2019-07-17T17:14:30", "url": "https://files.pythonhosted.org/packages/7a/78/a043b7b33c0cbb6b1fe3079af5b7f44d99a03b4fb3e0bf6b3927222e2e43/xpress-8.6.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8554dcd73858466aec55f9e1b5ad9dcf", "sha256": "b126df6cfa13e8114f67d27f79e08dd9d56de0a2a1580019af0fcfd845d88a43" }, "downloads": -1, "filename": "xpress-8.6.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8554dcd73858466aec55f9e1b5ad9dcf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38332551, "upload_time": "2019-07-17T18:17:28", "url": "https://files.pythonhosted.org/packages/6f/4b/e668e4fd64a6eb7db50ef5d41669b4f276512381b4b3779785345d1ec004/xpress-8.6.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "25ded243b213f1b956084e124d3a9d85", "sha256": "3613e5927365ed7061f10854aff2d3e0128052f3076c5210c94ff8f7599110df" }, "downloads": -1, "filename": "xpress-8.6.1-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "25ded243b213f1b956084e124d3a9d85", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 31362516, "upload_time": "2019-07-17T20:30:29", "url": "https://files.pythonhosted.org/packages/0b/42/dd1983fb2224fc0b4134c92fe3cde53f9c7ce1f5ce105c3c069bbc966332/xpress-8.6.1-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e75392d423f08150428ae8aa3c89e79a", "sha256": "c661b8aa166358b85928a51773fe54d4106a156f04becfd1a2d199b54eca1a25" }, "downloads": -1, "filename": "xpress-8.6.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e75392d423f08150428ae8aa3c89e79a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12544756, "upload_time": "2019-07-17T18:58:52", "url": "https://files.pythonhosted.org/packages/b6/11/7ba749b568facfe499852c69560216cf3f6ab924d1c56f07c2fc5ae15c11/xpress-8.6.1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5e4617f2706ed9f527043d84f06536a2", "sha256": "c8daaad6ff0027acdea18cdcba73e4c5074e7aff8fccfdeaacc06471749890c6" }, "downloads": -1, "filename": "xpress-8.6.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5e4617f2706ed9f527043d84f06536a2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38410514, "upload_time": "2019-07-17T18:56:37", "url": "https://files.pythonhosted.org/packages/a2/3c/9d4392a832b4b5f1e46f8ff49e6e8b238b0017596d3aeedd4181479a2865/xpress-8.6.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "835549dd2bc48f7cedf023d3b48227a2", "sha256": "0399585c0b2798aa0d832c2eeb2dae645e2a2179af7a14e375c142563b00ad02" }, "downloads": -1, "filename": "xpress-8.6.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "835549dd2bc48f7cedf023d3b48227a2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22747655, "upload_time": "2019-07-17T17:14:57", "url": "https://files.pythonhosted.org/packages/6f/2f/d467f969f02ca73b3b072229f77a433163a3bef8a7f29521f23c6cb5ccc7/xpress-8.6.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c6642536f883a6a3c7cf58c7f3254d49", "sha256": "f4fd2bf52e73f26bb6a67bd71b2bb105f6c950dd4c02ba8b57a9c19918cb4cd4" }, "downloads": -1, "filename": "xpress-8.6.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c6642536f883a6a3c7cf58c7f3254d49", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38345119, "upload_time": "2019-07-17T18:20:35", "url": "https://files.pythonhosted.org/packages/ce/7f/473f893bc936c6de3b2d487bd93a33b802f11df8f41b2a809f48d6340606/xpress-8.6.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ed5f399f193153d7eba8f56902e29964", "sha256": "5a14eaaf225fdd9db194f50634e8f575e0daa4cec825bf4356c7711f5e2cc757" }, "downloads": -1, "filename": "xpress-8.6.1-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "ed5f399f193153d7eba8f56902e29964", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 31362515, "upload_time": "2019-07-17T20:32:39", "url": "https://files.pythonhosted.org/packages/f9/a4/e61a0ecc9086a00845b11b42d5fc759f3d8a26efd26152a0579ff2e8e7da/xpress-8.6.1-cp37-cp37m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "59f015d63bde5433724b20fb22096028", "sha256": "432cb6ada5f02384f632bbbce0930abebb2f704368cd3d7276b289876831c5bc" }, "downloads": -1, "filename": "xpress-8.6.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "59f015d63bde5433724b20fb22096028", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12544727, "upload_time": "2019-07-17T18:59:04", "url": "https://files.pythonhosted.org/packages/61/a0/2efec11e70d7b4171416ee1e7e76117e6ea18bd1c6dea30c8966acefba4a/xpress-8.6.1-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "79e4679782b06c1286419107b8c627f8", "sha256": "8e3d7419f9a47f98ee592558fdf46d0f887e1eb10d138191d8782e5052b21e02" }, "downloads": -1, "filename": "xpress-8.6.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "79e4679782b06c1286419107b8c627f8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38410514, "upload_time": "2019-07-17T18:57:06", "url": "https://files.pythonhosted.org/packages/17/9c/840a39b8d94fc524c08f3513af15959cbb2106b9a199f64d1fc29f3e236d/xpress-8.6.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7c2865bab2e4f21b0faedb5fcb904bc4", "sha256": "cae577ea7eb37e7b5da4ea680b56b4bdf9ce0b775462f2078409d78f99311754" }, "downloads": -1, "filename": "xpress-8.6.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "7c2865bab2e4f21b0faedb5fcb904bc4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22736064, "upload_time": "2019-07-17T18:31:17", "url": "https://files.pythonhosted.org/packages/84/44/923b8c34856dcb8dff4ae105addbcca1896a60f6f93c86a3c9c69488f51a/xpress-8.6.1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b9b817c9f6445da950a18864ccdb915c", "sha256": "f01138acf250f953ede76860d94d80e721376179c07892af4219817da7a5c26f" }, "downloads": -1, "filename": "xpress-8.6.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b9b817c9f6445da950a18864ccdb915c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38345117, "upload_time": "2019-07-17T18:21:06", "url": "https://files.pythonhosted.org/packages/f6/7f/a6f5e4adb7a20c30f49c137a524c843dc8b91548c0e2a1bd5914df4cc03e/xpress-8.6.1-cp37-cp37m-win_amd64.whl" } ], "8.6.3": [ { "comment_text": "", "digests": { "md5": "ea9ad5ae9cce014a33f00a32250c1f29", "sha256": "0706e48328b2769b3c6a1435211391d5eaab3f7a4a0c9477752d6af2f4f7fd9f" }, "downloads": -1, "filename": "xpress-8.6.3-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "ea9ad5ae9cce014a33f00a32250c1f29", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 31366577, "upload_time": "2019-09-06T21:48:53", "url": "https://files.pythonhosted.org/packages/8b/f2/00e6189797e7944da448d2be9d6817edaf58952c5fb86b7ae2cc32822352/xpress-8.6.3-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "88c235222f46c04382aec5b65d9959fd", "sha256": "c171ba6eb818a05d7be1c290956e5680addbc7264637caad74d9437a48bf6bc5" }, "downloads": -1, "filename": "xpress-8.6.3-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "88c235222f46c04382aec5b65d9959fd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 12547899, "upload_time": "2019-09-07T00:31:13", "url": "https://files.pythonhosted.org/packages/37/56/2222edad13e63551a149f8ee4c9175e387fdbcc529277636058f8a7bff50/xpress-8.6.3-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7114985c42b0913c1eb91ce1dd8b1542", "sha256": "51a22d70578704f626030bcdaec932579280f0516b4e22468459c04eae7b41e2" }, "downloads": -1, "filename": "xpress-8.6.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7114985c42b0913c1eb91ce1dd8b1542", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 38420255, "upload_time": "2019-09-07T00:27:28", "url": "https://files.pythonhosted.org/packages/9f/70/ab6527826a53a762c836ced066b7c5241da7d455cf5ee2a482d5507455ee/xpress-8.6.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "32e55cbd9329296fec530337c90dd92c", "sha256": "57e893d6288c23a80d8de93913530abc63db8021c3b0d4d82acc519db0ae3a8e" }, "downloads": -1, "filename": "xpress-8.6.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "32e55cbd9329296fec530337c90dd92c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 38332849, "upload_time": "2019-09-06T22:34:33", "url": "https://files.pythonhosted.org/packages/a7/4f/9f745ad1cb485214f466099eb3d3a982b8463df89cdece958f919c25166c/xpress-8.6.3-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "aa15e034c3731416a9a6eb0783342527", "sha256": "83a12521f64d4b54bdb0d39946595a7e7f22ae25015062b1b5f0bf54373cb078" }, "downloads": -1, "filename": "xpress-8.6.3-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "aa15e034c3731416a9a6eb0783342527", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 31367446, "upload_time": "2019-09-06T21:49:13", "url": "https://files.pythonhosted.org/packages/84/c7/6e698657ee35bb13e39dff9807819f9012ea998d6b349fdf83bc2013d4e9/xpress-8.6.3-cp34-cp34m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "094b9e3bc759bd5f059206dc8bc824d8", "sha256": "db4b692e84c70b221dd15285fee8e57e84748dc421ad251f2fe6982971b0011d" }, "downloads": -1, "filename": "xpress-8.6.3-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "094b9e3bc759bd5f059206dc8bc824d8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 12547538, "upload_time": "2019-09-07T00:31:27", "url": "https://files.pythonhosted.org/packages/57/33/f8fd1f48c0e491290909de997782cd91b35848f411fb885df8c3de452377/xpress-8.6.3-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "006adf359593f7bc5dd44c1b7b124187", "sha256": "c82b7bc7bb89a60cb49c181101cdacf4cf7055a29898e631f93cd36899dbb9b7" }, "downloads": -1, "filename": "xpress-8.6.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "006adf359593f7bc5dd44c1b7b124187", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 38419421, "upload_time": "2019-09-07T00:27:49", "url": "https://files.pythonhosted.org/packages/c0/64/2682b098cd9d6769420d6783a4794a84f60834444ce05f5640c1cde0b0e4/xpress-8.6.3-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c80a77a992b78710908a340828e0b900", "sha256": "6c0c6b855659026984e3f0bfd90d1bd32afe2355feefd5862ccec6e41dcf1a2b" }, "downloads": -1, "filename": "xpress-8.6.3-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "c80a77a992b78710908a340828e0b900", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 38326357, "upload_time": "2019-09-06T22:36:26", "url": "https://files.pythonhosted.org/packages/b4/fd/656aeb6c53dca8b208f6f3b03761a926b4328276121d24ca22cd45e9139d/xpress-8.6.3-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cd8e7f674f30f772ddc868e9390fb47e", "sha256": "fda86e274ba3aecd9cfe8bcd76b4b4a4ceb16275136fd5164eb8299d76b955d8" }, "downloads": -1, "filename": "xpress-8.6.3-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "cd8e7f674f30f772ddc868e9390fb47e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 31367498, "upload_time": "2019-09-06T21:48:31", "url": "https://files.pythonhosted.org/packages/d0/39/b5467ab8c18782f3ee8f8761ad8e7101c82b2b9ca0843a8b795b4ca6a031/xpress-8.6.3-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8568b15ec43c7cc1161c731527f2c79e", "sha256": "dec7ba3ed67518e8b108d4abc66c79cb79726b1edeffad0ee2b6569e37e22278" }, "downloads": -1, "filename": "xpress-8.6.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8568b15ec43c7cc1161c731527f2c79e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12547542, "upload_time": "2019-09-07T00:30:59", "url": "https://files.pythonhosted.org/packages/be/bf/be8a376f5475f168c7e35d8e1b36f137bd36d3c6afba01c083b09a6e54be/xpress-8.6.3-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "73399c16b6ff120f56dec9d0ca683e73", "sha256": "397cb46123da5c1f2c046a518b29f38b23bb0400979ed080d1f755998b3455ae" }, "downloads": -1, "filename": "xpress-8.6.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "73399c16b6ff120f56dec9d0ca683e73", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38419593, "upload_time": "2019-09-07T00:27:06", "url": "https://files.pythonhosted.org/packages/c9/af/730de50f11232e4f7456ed78c1a0f07fdc397aa2fdff3aad165c0309fee9/xpress-8.6.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "57297d858ff2567771241eec093e7b4d", "sha256": "418c008e13bb52ff205116cc32a236645a73aefa6ca4e74854f36801ba7f03c3" }, "downloads": -1, "filename": "xpress-8.6.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "57297d858ff2567771241eec093e7b4d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38324492, "upload_time": "2019-09-06T22:34:07", "url": "https://files.pythonhosted.org/packages/8c/17/bc00707e0ce5ec9d8a8107dec3b56270bab99cf3c016581da4f9cce81d84/xpress-8.6.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d973a3dfd87b5d3f407ef6c4f7e49d2a", "sha256": "1047bc40c324c8b222c1456902013461942b7720ff58b87ece7ec514a9768faa" }, "downloads": -1, "filename": "xpress-8.6.3-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "d973a3dfd87b5d3f407ef6c4f7e49d2a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 31367480, "upload_time": "2019-09-06T21:49:33", "url": "https://files.pythonhosted.org/packages/a4/7f/9608ca274b2a63798560f89bbb19ca68fb5c5a1fd301cdebdd10611eedf7/xpress-8.6.3-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d53433ca5f19b14445b1c7d6e89f15ca", "sha256": "dbeb086519b695966773944c76d9da6fbbccdac2435911dbc6b5761941ab7bc6" }, "downloads": -1, "filename": "xpress-8.6.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d53433ca5f19b14445b1c7d6e89f15ca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12547542, "upload_time": "2019-09-07T00:31:41", "url": "https://files.pythonhosted.org/packages/63/8c/39683ed812fa20517a062820a0bf5fce41d2aa4d444eeb431cf29493a1f1/xpress-8.6.3-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "d5600fe06ebed6e9a9b1b089c34a6e91", "sha256": "cf539dcdf3cbb62153998837a34114a6d1a63064ea510ee8d3dad696b81dd44c" }, "downloads": -1, "filename": "xpress-8.6.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d5600fe06ebed6e9a9b1b089c34a6e91", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38419594, "upload_time": "2019-09-07T00:28:12", "url": "https://files.pythonhosted.org/packages/c5/43/63d298d522d63ddb13d37d749d797dbbd84c91a2e2048a2b0d5a9a721a60/xpress-8.6.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0eccdf255f3a5e353c931eecb643352f", "sha256": "b95229ddf60718c1a0b413666714966d0305afa9c1c9d75bdacf407bbd9c3fe0" }, "downloads": -1, "filename": "xpress-8.6.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0eccdf255f3a5e353c931eecb643352f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38341681, "upload_time": "2019-09-06T22:36:49", "url": "https://files.pythonhosted.org/packages/c8/20/699c519e1528c6c5cf6f52d217453d4d9f1e8cf9a4cb344df96062126c93/xpress-8.6.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "191c21ecf3813e4d0cc58017f1c278fc", "sha256": "79d21dbbee89f6f7a2781f43e2fd9083a12b74d7e0cfd3e99f1c609fd4f9c670" }, "downloads": -1, "filename": "xpress-8.6.3-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "191c21ecf3813e4d0cc58017f1c278fc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 31367479, "upload_time": "2019-09-06T21:49:55", "url": "https://files.pythonhosted.org/packages/d8/bb/5a7963bbbe7ceff1b17396459100e8d46fab4c2a05b427d56abdb80aa442/xpress-8.6.3-cp37-cp37m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "44bdcc02518f516deeaa2f9d4e04dc91", "sha256": "9feb6ece70799c9ab5db758e3342322737022e7ee94f8ef320660dd2ca23fbb4" }, "downloads": -1, "filename": "xpress-8.6.3-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "44bdcc02518f516deeaa2f9d4e04dc91", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12547526, "upload_time": "2019-09-07T00:31:54", "url": "https://files.pythonhosted.org/packages/6b/79/084f29d0eac99e4ce5d299923d404dc3a646c430f838cc5824cbd17126c4/xpress-8.6.3-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "4e9f31a4aff1c3f5c66c13d631e74037", "sha256": "34f5b9f62f9065ff9a1593ec1659c18684a8dfe291183f69ce1a5c65e426f0cb" }, "downloads": -1, "filename": "xpress-8.6.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4e9f31a4aff1c3f5c66c13d631e74037", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38419593, "upload_time": "2019-09-07T00:29:47", "url": "https://files.pythonhosted.org/packages/3e/57/9ad73c901582b3177cb42a0e223da433b9c648b36dfc5ced689fee543a8e/xpress-8.6.3-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "642b725df159bf8c69841de03e76acf6", "sha256": "b19ac0ba6948ad5db863ec22b059c5d2144fbd712ae463897238f072484f8cac" }, "downloads": -1, "filename": "xpress-8.6.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "642b725df159bf8c69841de03e76acf6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38341677, "upload_time": "2019-09-06T22:37:11", "url": "https://files.pythonhosted.org/packages/d7/92/56b39373869cf8a064655810cc55fedae4994862f6ad65ebaadc3252039e/xpress-8.6.3-cp37-cp37m-win_amd64.whl" } ], "8.7.1": [ { "comment_text": "", "digests": { "md5": "24a5747f81f5988111ef6473c0b83e37", "sha256": "dfbf1698206beec4daaf86535e2a6c3ecb9bb5de22ead1d8c064642dbce1ebcd" }, "downloads": -1, "filename": "xpress-8.7.1-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "24a5747f81f5988111ef6473c0b83e37", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 31367816, "upload_time": "2019-10-11T13:17:43", "url": "https://files.pythonhosted.org/packages/6f/a4/212159e473fcbc0941303b03cf233ae5ea4f24a8f2ea052cb6cb803da93b/xpress-8.7.1-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9fe0b4e7aa2dc00e3eab2386b8d6333e", "sha256": "b439e5a448be27491fbfeb3c410e0045eaa7efd985c62e4a256a33a3b37d2c3b" }, "downloads": -1, "filename": "xpress-8.7.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9fe0b4e7aa2dc00e3eab2386b8d6333e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 38418768, "upload_time": "2019-10-11T13:24:11", "url": "https://files.pythonhosted.org/packages/a1/36/c8f46858a4a92d428fe8ff2adc0a7a52e9d217b2ca754a0021d4717847d1/xpress-8.7.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8ea33ca5bd6a9a32b8675ebfe5550a88", "sha256": "bc505f58984559075af5d27796cd59624e5ff985d2025bb2b18e7b24f2bb4a8f" }, "downloads": -1, "filename": "xpress-8.7.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "8ea33ca5bd6a9a32b8675ebfe5550a88", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 38333449, "upload_time": "2019-10-11T14:45:30", "url": "https://files.pythonhosted.org/packages/fa/ce/000879268f38355b45322aa9e3d5dfb178dae17123d0c7da2c763b709215/xpress-8.7.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7ee5763a54f38dbac77d461eb98be98d", "sha256": "45b323d51b47cb61141a1d6e8a741d90a3e4c48c0fc1273b9f97d4493693c72b" }, "downloads": -1, "filename": "xpress-8.7.1-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "7ee5763a54f38dbac77d461eb98be98d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 31368683, "upload_time": "2019-10-11T13:18:03", "url": "https://files.pythonhosted.org/packages/4c/6d/817f1a0384492170fa9caf7dea886b857273ddf5baf619696aa6fc1d6b72/xpress-8.7.1-cp34-cp34m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7373dcbdebe5fa94d36d04deaa88f46e", "sha256": "21ee66f04e3ca9532f9087824d6be5715a5e4e58b8e2b3e8d5d0839d1c90849c" }, "downloads": -1, "filename": "xpress-8.7.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7373dcbdebe5fa94d36d04deaa88f46e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 38417934, "upload_time": "2019-10-11T13:26:07", "url": "https://files.pythonhosted.org/packages/8e/ca/4498a59cb38c100f42e227861bd92a77d6521e78422146b943e65e7cf4ac/xpress-8.7.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e77fea15ad8fcc72790e78ce085a52b5", "sha256": "a841a9c01be68f53c359880e83d800a5536a50e9273a8547889f03d9a7892c49" }, "downloads": -1, "filename": "xpress-8.7.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "e77fea15ad8fcc72790e78ce085a52b5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 38326959, "upload_time": "2019-10-11T14:47:29", "url": "https://files.pythonhosted.org/packages/e6/b4/a7b92b87985973a8339224133c1f6d23e254148796e6c9c94835d4f3e4ec/xpress-8.7.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5b12a2c79069b1e63fda78ea43d3e95b", "sha256": "0d1a3d28ce30ba1b3afe390a6bef09cc05281c41f6abbbc354f717c45de97c6a" }, "downloads": -1, "filename": "xpress-8.7.1-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "5b12a2c79069b1e63fda78ea43d3e95b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 31368736, "upload_time": "2019-10-11T13:17:22", "url": "https://files.pythonhosted.org/packages/43/9b/3cf3f5860687a3456f9b056cdecf187e6f53ea8b1e610d8937e09decdf67/xpress-8.7.1-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8629bb0fc0d01477370340593bb34c0a", "sha256": "7944083277986951c5217120790cc63aadbb1405fa7a1bab64abe3f27d92cc5e" }, "downloads": -1, "filename": "xpress-8.7.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8629bb0fc0d01477370340593bb34c0a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38418110, "upload_time": "2019-10-11T13:23:49", "url": "https://files.pythonhosted.org/packages/f8/e4/83d0459f6f97da0a675fd609d51a48f315cdb93d612622f7b8d0487db614/xpress-8.7.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7a78c7aaa867309702a30cd89682fbce", "sha256": "a5b04ced2343c9f48104aec70604365901a88565c62e89ce7231618f1caa73b7" }, "downloads": -1, "filename": "xpress-8.7.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "7a78c7aaa867309702a30cd89682fbce", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38325079, "upload_time": "2019-10-11T14:45:03", "url": "https://files.pythonhosted.org/packages/cd/ef/0cefc0a5973a6dc3ee4871223913514c2a396f5c5fa27dca6a8b11a44a4e/xpress-8.7.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7469d46ede6ec5e48ecc04ccafa2d255", "sha256": "1ab2e5d3454ab27f98f69d9d1a7bfee8eed9b7948e7c4295af3eee44556197e5" }, "downloads": -1, "filename": "xpress-8.7.1-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "7469d46ede6ec5e48ecc04ccafa2d255", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 31368719, "upload_time": "2019-10-11T13:18:23", "url": "https://files.pythonhosted.org/packages/76/e4/879405164c7c6bdf829b261407132cfb4182cd6afc1def54550271f5cf18/xpress-8.7.1-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c0c3ceda0e386bfb570d0a4482452ad0", "sha256": "bdfef731cae194e4aadf6f3cb319aba1a4fd6aa10e16c2c50a4715823f36e195" }, "downloads": -1, "filename": "xpress-8.7.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c0c3ceda0e386bfb570d0a4482452ad0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38418108, "upload_time": "2019-10-11T13:26:29", "url": "https://files.pythonhosted.org/packages/6e/12/2fc8031ba72c1d85ff4e90a72abb2c69f6ede6dab82577bca90d12bea34e/xpress-8.7.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a6c8d85cc556b0243750d1e1f67260f2", "sha256": "d3b574a42fad64bbb9697e8541db6f4bb2cc66d6bc904f24207abbb583f50047" }, "downloads": -1, "filename": "xpress-8.7.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a6c8d85cc556b0243750d1e1f67260f2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38342275, "upload_time": "2019-10-11T14:47:52", "url": "https://files.pythonhosted.org/packages/86/82/f650c2c4a414ec3f5c201a7a878129d4912b32532ee4adc6b4adf17cedb0/xpress-8.7.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c5e5d72fe0a5aedb3d14a4b39e2893ee", "sha256": "fb21f3e96b9176c31397847847d1b410d70f15ffd80062a98988acef38cf52b3" }, "downloads": -1, "filename": "xpress-8.7.1-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c5e5d72fe0a5aedb3d14a4b39e2893ee", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 31368718, "upload_time": "2019-10-11T13:18:44", "url": "https://files.pythonhosted.org/packages/65/a2/276c467920b433cdc9fd54b9dab710c580146c55c8de19db35618422da87/xpress-8.7.1-cp37-cp37m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f686ce43b903c65c93b76312f0fb02a0", "sha256": "4bffb0474a7372f64030544b4d902f8f82a09882cadead73f43774f6c940c62c" }, "downloads": -1, "filename": "xpress-8.7.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f686ce43b903c65c93b76312f0fb02a0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38418108, "upload_time": "2019-10-11T13:26:49", "url": "https://files.pythonhosted.org/packages/9d/9b/2445894af87e09fc2e0406a664b22cd87dc950fc18bb7b0470563624098b/xpress-8.7.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "939bb0ebb32c5777dcc3321b37e8e03d", "sha256": "857799454c2dd1828c69adb920105534aa5575f86f4a0a8913b1ec3ff542d9b4" }, "downloads": -1, "filename": "xpress-8.7.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "939bb0ebb32c5777dcc3321b37e8e03d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38342272, "upload_time": "2019-10-11T14:48:16", "url": "https://files.pythonhosted.org/packages/b2/ad/369cb97d49e0d2fe21646cbd5e9c49b1e16360fb7167dc9eb7f0864989f2/xpress-8.7.1-cp37-cp37m-win_amd64.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "24a5747f81f5988111ef6473c0b83e37", "sha256": "dfbf1698206beec4daaf86535e2a6c3ecb9bb5de22ead1d8c064642dbce1ebcd" }, "downloads": -1, "filename": "xpress-8.7.1-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "24a5747f81f5988111ef6473c0b83e37", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 31367816, "upload_time": "2019-10-11T13:17:43", "url": "https://files.pythonhosted.org/packages/6f/a4/212159e473fcbc0941303b03cf233ae5ea4f24a8f2ea052cb6cb803da93b/xpress-8.7.1-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9fe0b4e7aa2dc00e3eab2386b8d6333e", "sha256": "b439e5a448be27491fbfeb3c410e0045eaa7efd985c62e4a256a33a3b37d2c3b" }, "downloads": -1, "filename": "xpress-8.7.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9fe0b4e7aa2dc00e3eab2386b8d6333e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 38418768, "upload_time": "2019-10-11T13:24:11", "url": "https://files.pythonhosted.org/packages/a1/36/c8f46858a4a92d428fe8ff2adc0a7a52e9d217b2ca754a0021d4717847d1/xpress-8.7.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8ea33ca5bd6a9a32b8675ebfe5550a88", "sha256": "bc505f58984559075af5d27796cd59624e5ff985d2025bb2b18e7b24f2bb4a8f" }, "downloads": -1, "filename": "xpress-8.7.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "8ea33ca5bd6a9a32b8675ebfe5550a88", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 38333449, "upload_time": "2019-10-11T14:45:30", "url": "https://files.pythonhosted.org/packages/fa/ce/000879268f38355b45322aa9e3d5dfb178dae17123d0c7da2c763b709215/xpress-8.7.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7ee5763a54f38dbac77d461eb98be98d", "sha256": "45b323d51b47cb61141a1d6e8a741d90a3e4c48c0fc1273b9f97d4493693c72b" }, "downloads": -1, "filename": "xpress-8.7.1-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "7ee5763a54f38dbac77d461eb98be98d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 31368683, "upload_time": "2019-10-11T13:18:03", "url": "https://files.pythonhosted.org/packages/4c/6d/817f1a0384492170fa9caf7dea886b857273ddf5baf619696aa6fc1d6b72/xpress-8.7.1-cp34-cp34m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7373dcbdebe5fa94d36d04deaa88f46e", "sha256": "21ee66f04e3ca9532f9087824d6be5715a5e4e58b8e2b3e8d5d0839d1c90849c" }, "downloads": -1, "filename": "xpress-8.7.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7373dcbdebe5fa94d36d04deaa88f46e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 38417934, "upload_time": "2019-10-11T13:26:07", "url": "https://files.pythonhosted.org/packages/8e/ca/4498a59cb38c100f42e227861bd92a77d6521e78422146b943e65e7cf4ac/xpress-8.7.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e77fea15ad8fcc72790e78ce085a52b5", "sha256": "a841a9c01be68f53c359880e83d800a5536a50e9273a8547889f03d9a7892c49" }, "downloads": -1, "filename": "xpress-8.7.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "e77fea15ad8fcc72790e78ce085a52b5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 38326959, "upload_time": "2019-10-11T14:47:29", "url": "https://files.pythonhosted.org/packages/e6/b4/a7b92b87985973a8339224133c1f6d23e254148796e6c9c94835d4f3e4ec/xpress-8.7.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5b12a2c79069b1e63fda78ea43d3e95b", "sha256": "0d1a3d28ce30ba1b3afe390a6bef09cc05281c41f6abbbc354f717c45de97c6a" }, "downloads": -1, "filename": "xpress-8.7.1-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "5b12a2c79069b1e63fda78ea43d3e95b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 31368736, "upload_time": "2019-10-11T13:17:22", "url": "https://files.pythonhosted.org/packages/43/9b/3cf3f5860687a3456f9b056cdecf187e6f53ea8b1e610d8937e09decdf67/xpress-8.7.1-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8629bb0fc0d01477370340593bb34c0a", "sha256": "7944083277986951c5217120790cc63aadbb1405fa7a1bab64abe3f27d92cc5e" }, "downloads": -1, "filename": "xpress-8.7.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8629bb0fc0d01477370340593bb34c0a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38418110, "upload_time": "2019-10-11T13:23:49", "url": "https://files.pythonhosted.org/packages/f8/e4/83d0459f6f97da0a675fd609d51a48f315cdb93d612622f7b8d0487db614/xpress-8.7.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7a78c7aaa867309702a30cd89682fbce", "sha256": "a5b04ced2343c9f48104aec70604365901a88565c62e89ce7231618f1caa73b7" }, "downloads": -1, "filename": "xpress-8.7.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "7a78c7aaa867309702a30cd89682fbce", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38325079, "upload_time": "2019-10-11T14:45:03", "url": "https://files.pythonhosted.org/packages/cd/ef/0cefc0a5973a6dc3ee4871223913514c2a396f5c5fa27dca6a8b11a44a4e/xpress-8.7.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7469d46ede6ec5e48ecc04ccafa2d255", "sha256": "1ab2e5d3454ab27f98f69d9d1a7bfee8eed9b7948e7c4295af3eee44556197e5" }, "downloads": -1, "filename": "xpress-8.7.1-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "7469d46ede6ec5e48ecc04ccafa2d255", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 31368719, "upload_time": "2019-10-11T13:18:23", "url": "https://files.pythonhosted.org/packages/76/e4/879405164c7c6bdf829b261407132cfb4182cd6afc1def54550271f5cf18/xpress-8.7.1-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c0c3ceda0e386bfb570d0a4482452ad0", "sha256": "bdfef731cae194e4aadf6f3cb319aba1a4fd6aa10e16c2c50a4715823f36e195" }, "downloads": -1, "filename": "xpress-8.7.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c0c3ceda0e386bfb570d0a4482452ad0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38418108, "upload_time": "2019-10-11T13:26:29", "url": "https://files.pythonhosted.org/packages/6e/12/2fc8031ba72c1d85ff4e90a72abb2c69f6ede6dab82577bca90d12bea34e/xpress-8.7.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a6c8d85cc556b0243750d1e1f67260f2", "sha256": "d3b574a42fad64bbb9697e8541db6f4bb2cc66d6bc904f24207abbb583f50047" }, "downloads": -1, "filename": "xpress-8.7.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a6c8d85cc556b0243750d1e1f67260f2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38342275, "upload_time": "2019-10-11T14:47:52", "url": "https://files.pythonhosted.org/packages/86/82/f650c2c4a414ec3f5c201a7a878129d4912b32532ee4adc6b4adf17cedb0/xpress-8.7.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c5e5d72fe0a5aedb3d14a4b39e2893ee", "sha256": "fb21f3e96b9176c31397847847d1b410d70f15ffd80062a98988acef38cf52b3" }, "downloads": -1, "filename": "xpress-8.7.1-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c5e5d72fe0a5aedb3d14a4b39e2893ee", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 31368718, "upload_time": "2019-10-11T13:18:44", "url": "https://files.pythonhosted.org/packages/65/a2/276c467920b433cdc9fd54b9dab710c580146c55c8de19db35618422da87/xpress-8.7.1-cp37-cp37m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f686ce43b903c65c93b76312f0fb02a0", "sha256": "4bffb0474a7372f64030544b4d902f8f82a09882cadead73f43774f6c940c62c" }, "downloads": -1, "filename": "xpress-8.7.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f686ce43b903c65c93b76312f0fb02a0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38418108, "upload_time": "2019-10-11T13:26:49", "url": "https://files.pythonhosted.org/packages/9d/9b/2445894af87e09fc2e0406a664b22cd87dc950fc18bb7b0470563624098b/xpress-8.7.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "939bb0ebb32c5777dcc3321b37e8e03d", "sha256": "857799454c2dd1828c69adb920105534aa5575f86f4a0a8913b1ec3ff542d9b4" }, "downloads": -1, "filename": "xpress-8.7.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "939bb0ebb32c5777dcc3321b37e8e03d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38342272, "upload_time": "2019-10-11T14:48:16", "url": "https://files.pythonhosted.org/packages/b2/ad/369cb97d49e0d2fe21646cbd5e9c49b1e16360fb7167dc9eb7f0864989f2/xpress-8.7.1-cp37-cp37m-win_amd64.whl" } ] }