{ "info": { "author": "G. Sagnol, M. Stahlberg", "author_email": "incoming+picos-api/picos@incoming.gitlab.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Scientific/Engineering :: Mathematics" ], "description": "A Python Interface to Conic Optimization Solvers\n================================================\n\nPICOS is a user friendly Python API to several conic and integer programming\nsolvers, very much like [YALMIP](http://users.isy.liu.se/johanl/yalmip/) or\n[CVX](http://cvxr.com/cvx/) under [MATLAB](http://www.mathworks.com/).\n\nPICOS allows you to enter a mathematical optimization problem as a **high level\nmodel**, with painless support for **(complex) vector and matrix variables** and\n**multidemensional algebra**. Your model will be transformed to the standard\nform understood by an appropriate solver that is available at runtime. This\nmakes your application **portable** as users have the choice between several\ncommercial and open source solvers.\n\nFeatures\n--------\n\nPICOS runs under both **Python 2** and **Python 3** and supports the following\nsolvers and problem types. To use a solver, you need to seperately install it\nalong with the Python interface listed here.\n\n| Solver | Interface | [LP](https://en.wikipedia.org/wiki/Linear_programming) | [SOCP](https://en.wikipedia.org/wiki/Second-order_cone_programming) | [SDP](https://en.wikipedia.org/wiki/Semidefinite_programming) | [QCQP](https://en.wikipedia.org/wiki/Quadratically_constrained_quadratic_program) | [EXP](https://docs.mosek.com/modeling-cookbook/expo.html) | [MIP](https://en.wikipedia.org/wiki/Integer_programming) | License |\n| --------------------------------------------------------- | ---------------------------------------------------------- | --- | --- | --- | --- | --- | --- | -------- |\n| [CPLEX](https://www.ibm.com/analytics/cplex-optimizer) | included | Yes | Yes | | Yes | | Yes | non-free |\n| [CVXOPT](https://cvxopt.org/) | native | Yes | Yes | Yes | Yes | Yes\u00b9| | [GPL-3](https://www.gnu.org/licenses/gpl-3.0.html) |\n| [ECOS](https://www.embotech.com/ECOS) | [ecos-python](https://github.com/embotech/ecos-python) | Yes | Yes | | Yes | Yes | Yes | [GPL-3](https://www.gnu.org/licenses/gpl-3.0.html) |\n| [GLPK](https://www.gnu.org/software/glpk/) | [swiglpk](https://github.com/biosustain/swiglpk) | Yes | | | | | Yes | [GPL-3](https://www.gnu.org/licenses/gpl-3.0.html) |\n| [Gurobi](http://www.gurobi.com/products/gurobi-optimizer) | included | Yes | Yes | | Yes | | Yes | non-free |\n| [MOSEK](https://www.mosek.com/) | included | Yes | Yes | Yes | Yes | | Yes | non-free |\n| [SMCP](http://smcp.readthedocs.io/en/latest/) | native | Yes\u00b2| Yes\u00b2| Yes | Yes\u00b2| | | [GPL-3](https://www.gnu.org/licenses/gpl-3.0.html) |\n| [SCIP](http://scip.zib.de/) | [PySCIPOpt](https://github.com/SCIP-Interfaces/PySCIPOpt/) | Yes | Yes | | Yes | | Yes | [ZIB](https://scip.zib.de/academic.txt)/[MIT](https://github.com/SCIP-Interfaces/PySCIPOpt/blob/master/LICENSE) |\n\n\u00b9 only [geometric programming](https://en.wikipedia.org/wiki/Geometric_programming),\n\u00b2 experimental\n\n### Example\n\nThis is what it looks like to solve a multidimensional mixed integer program\nwith PICOS:\n\n```python\n>>> import picos\n>>> P = picos.Problem()\n>>> x = P.add_variable(\"x\", 2, vtype=\"integer\")\n>>> C = P.add_constraint(x <= 5.5)\n>>> P.set_objective(\"max\", 1|x) # 1|x is the sum over x\n>>> solution = P.solve(verbose = 0)\n>>> print(solution[\"status\"])\n'integer optimal solution'\n>>> print(P.obj_value())\n10.0\n>>> print(x)\n[ 5.00e+00]\n[ 5.00e+00]\n>>> print(C.slack)\n[ 5.00e-01]\n[ 5.00e-01]\n```\n\n### Documentation & Source\n\n- The full documentation can be browsed\n[online](https://picos-api.gitlab.io/picos/)\nor downloaded\n[in PDF form](https://gitlab.com/picos-api/picos/-/jobs/artifacts/master/raw/picos.pdf?job=pdfdoc).\n- The API documentation without the tutorial and examples is also available as a\n[separate PDF](https://gitlab.com/picos-api/picos/-/jobs/artifacts/master/raw/picos-api.pdf?job=pdfdoc).\n- The source code lives on [GitLab](https://gitlab.com/picos-api/picos).\n\nInstallation\n------------\n\n### Via pip\n\nIf you are using [pip](https://pypi.org/project/pip/) you can run\n``pip install picos`` to get the latest version.\n\n### Via Anaconda\n\nIf you are using [Anaconda](https://anaconda.org/) you can run\n``conda install -c picos picos`` to get the latest version.\n\n### Via your system's package manager\n\nOn **Arch Linux**, there are seperate packages in the AUR for the\n[latest version](https://aur.archlinux.org/packages/python-picos-git/) and the\n[latest release](https://aur.archlinux.org/packages/python-picos/). Both are\nsplit packages that ship both Python 2 and Python 3 versions of PICOS.\n\nIf you are packaging PICOS for additional systems, please tell us so we can list\nyour package here!\n\n### From source\n\nIf you are installing PICOS manually, you can choose between a number of\n[development versions](https://gitlab.com/picos-api/picos/branches) and\n[source releases](https://gitlab.com/picos-api/picos/tags).\nYou will need to have at least the following Python packages installed:\n\n- [NumPy](http://www.numpy.org/)\n- [CVXOPT](https://cvxopt.org/)\n\nCredits\n-------\n\n### Developers\n\n- [Guillaume Sagnol](http://page.math.tu-berlin.de/~sagnol/) is PICOS' initial\n author and primary developer since 2012.\n- [Maximilian Stahlberg](about:blank) is extending and maintaining PICOS since\n 2017.\n\n### Contributors\n\nFor an up-to-date list of all code contributors, please refer to the\n[contributors page](https://gitlab.com/picos-api/picos/graphs/master).\nShould a reference from before 2019 be unclear, you can refer to the\n[old contributors page](https://github.com/gsagnol/picos/graphs/contributors)\non GitHub as well.\n\nLicense\n-------\n\nPICOS is free and open source software and available to you under the terms of\nthe [GNU GPL v3](https://gitlab.com/picos-api/picos/raw/master/LICENSE.txt).", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://gitlab.com/picos-api/picos/tags/v1.2.0", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://gitlab.com/picos-api/picos", "keywords": "conic optimization,convex optimizationlinear programming,quadratic programming,second order cone programming,semidefinite programming,exponential cone programming", "license": "", "maintainer": "", "maintainer_email": "", "name": "PICOS", "package_url": "https://pypi.org/project/PICOS/", "platform": "", "project_url": "https://pypi.org/project/PICOS/", "project_urls": { "Download": "https://gitlab.com/picos-api/picos/tags/v1.2.0", "Homepage": "https://gitlab.com/picos-api/picos" }, "release_url": "https://pypi.org/project/PICOS/1.2.0.post32/", "requires_dist": null, "requires_python": "", "summary": "A Python interface to conic optimization solvers.", "version": "1.2.0.post32" }, "last_serial": 5534811, "releases": { "0.1.0": [], "0.1.1": [], "0.1.2": [], "0.1.3": [], "1.0.0": [], "1.0.1": [], "1.0.1.dev": [], "1.0.2": [], "1.1.0": [ { "comment_text": "", "digests": { "md5": "8ddca7661821a67c5ef1a0456b2bac4e", "sha256": "bd584c40d5a60004f7106e3d211bbcf44c56cab9de82f9025ad0ac90138ad612" }, "downloads": -1, "filename": "PICOS-1.1.0.post2.tar.gz", "has_sig": false, "md5_digest": "8ddca7661821a67c5ef1a0456b2bac4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204986, "upload_time": "2015-04-15T13:08:46", "url": "https://files.pythonhosted.org/packages/2e/5b/36dfb2584122bd2e60980d6d74c1f678c13a30317df8dcb64bc260239e68/PICOS-1.1.0.post2.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "5298bc1ac067de6ee16e798af1556636", "sha256": "69800ca429563f7b7c9bdbac1ca6fc7c615a634e71ff24f107119fade42f51e3" }, "downloads": -1, "filename": "PICOS-1.1.1.tar.gz", "has_sig": false, "md5_digest": "5298bc1ac067de6ee16e798af1556636", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 207314, "upload_time": "2015-08-31T10:43:19", "url": "https://files.pythonhosted.org/packages/30/2d/3a7ffc9d5c234cd6883aa6482cb7818285c40df88a5d306472b126c42b87/PICOS-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "e5f7996a70b9ee5bbc5f28347c52a2df", "sha256": "69683304159e2e16b9ee96d1ab237f12265171fef72db846dcb6677347058f28" }, "downloads": -1, "filename": "PICOS-1.1.2.tar.gz", "has_sig": false, "md5_digest": "e5f7996a70b9ee5bbc5f28347c52a2df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 214041, "upload_time": "2016-08-31T10:27:05", "url": "https://files.pythonhosted.org/packages/a9/73/8919cd1d653b33742abb6a3d54b300b8a8b498e95bcbfc112a2f4b6d6ed3/PICOS-1.1.2.tar.gz" } ], "1.1.2.post110": [ { "comment_text": "", "digests": { "md5": "abcdd01fdbf3edd6ad5f6e24cb446bb7", "sha256": "abdfa8d6e44903ab4e8b17b654524ffbd05288ee510f63ebb81075f457de55b7" }, "downloads": -1, "filename": "PICOS-1.1.2.post110.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "abcdd01fdbf3edd6ad5f6e24cb446bb7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 283311, "upload_time": "2018-08-28T15:12:01", "url": "https://files.pythonhosted.org/packages/1a/1f/76cd5c8ae7eb93b4495895e8904ec5c1b305c589c0b584662a862e2a2506/PICOS-1.1.2.post110.linux-x86_64.tar.gz" } ], "1.1.2.post111": [ { "comment_text": "", "digests": { "md5": "8126983b414b5a0f5f3238084af3a92b", "sha256": "3a6c3a43bb18e0778c79563d2b920e6fe660101f1e69f21e4f515e51c3048f27" }, "downloads": -1, "filename": "PICOS-1.1.2.post111.tar.gz", "has_sig": false, "md5_digest": "8126983b414b5a0f5f3238084af3a92b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129312, "upload_time": "2018-08-28T15:39:08", "url": "https://files.pythonhosted.org/packages/bd/e8/0b3420c3222f9df49c17c48103b859e8a694966ff39395e13a2568605e2e/PICOS-1.1.2.post111.tar.gz" } ], "1.1.2.post112": [ { "comment_text": "", "digests": { "md5": "d5c186875fc652aa21cff714d55b46d2", "sha256": "99a4c562797f731fa81f014b548a54c790fb21f3030d85b582a7c5fbc9138346" }, "downloads": -1, "filename": "PICOS-1.1.2.post112.tar.gz", "has_sig": false, "md5_digest": "d5c186875fc652aa21cff714d55b46d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131444, "upload_time": "2018-08-28T16:13:36", "url": "https://files.pythonhosted.org/packages/34/32/8fdb689976f0ed4a45b71e0d3aae64404250adf42c9a6573fbac9b1854f6/PICOS-1.1.2.post112.tar.gz" } ], "1.1.2.post113": [ { "comment_text": "", "digests": { "md5": "ca1bb67037836c85689eed1886f19dc9", "sha256": "2b53a8aa9d0168d9bb3d2773543d7ac6d2f0158383ed3595e3c6d1c343dcad65" }, "downloads": -1, "filename": "PICOS-1.1.2.post113.tar.gz", "has_sig": false, "md5_digest": "ca1bb67037836c85689eed1886f19dc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131484, "upload_time": "2018-09-02T12:51:18", "url": "https://files.pythonhosted.org/packages/dc/cb/3c05f003f298b551171a7b4323482f3aa7b8197c01ad36b73b2631b714a2/PICOS-1.1.2.post113.tar.gz" } ], "1.1.2.post114": [ { "comment_text": "", "digests": { "md5": "0b3f932e0bf65d3a82b1110a165393db", "sha256": "6739b5536a65618c1af7a8431b5f0c719a2ee24d4e78fdc0d5ab95c44e5dd82f" }, "downloads": -1, "filename": "PICOS-1.1.2.post114.tar.gz", "has_sig": false, "md5_digest": "0b3f932e0bf65d3a82b1110a165393db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131487, "upload_time": "2018-09-10T09:55:03", "url": "https://files.pythonhosted.org/packages/11/79/a81e52adb6a80d7cb46651da61b2d3777505438face944950b08f9e6695c/PICOS-1.1.2.post114.tar.gz" } ], "1.1.2.post115": [ { "comment_text": "", "digests": { "md5": "03387a61050284e38fbe488ef8e0455f", "sha256": "ce7ce6ed68d0a00030dddd26468504fc9be5305b5d0f2b5e5443408a249d5f77" }, "downloads": -1, "filename": "PICOS-1.1.2.post115.tar.gz", "has_sig": false, "md5_digest": "03387a61050284e38fbe488ef8e0455f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131450, "upload_time": "2018-09-17T12:29:29", "url": "https://files.pythonhosted.org/packages/2c/be/89629e666f6703881b031d69fff76c4f7deff02504a7d6c87aa5db956685/PICOS-1.1.2.post115.tar.gz" } ], "1.1.2.post116": [ { "comment_text": "", "digests": { "md5": "08021b0626f5f9c08d5034cbfec4d91c", "sha256": "e5b020dd0aeff911294222e50e88d8e7b023f4dd1c37bd90bae0f7c94aff6614" }, "downloads": -1, "filename": "PICOS-1.1.2.post116.tar.gz", "has_sig": false, "md5_digest": "08021b0626f5f9c08d5034cbfec4d91c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131450, "upload_time": "2018-09-19T19:58:05", "url": "https://files.pythonhosted.org/packages/3c/88/672239970c8dd97f6c19d34a12ceb988d696e7119229bbaa0c8f6a43a11e/PICOS-1.1.2.post116.tar.gz" } ], "1.1.2.post127": [ { "comment_text": "", "digests": { "md5": "6f2caea93e7b5a091c6088f2edacacf3", "sha256": "5941f302353f03ff0b404f38d6c804f6cd5d31dcdd2d0c516a0f4d05e5da927a" }, "downloads": -1, "filename": "PICOS-1.1.2.post127.tar.gz", "has_sig": false, "md5_digest": "6f2caea93e7b5a091c6088f2edacacf3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131715, "upload_time": "2018-10-05T12:56:59", "url": "https://files.pythonhosted.org/packages/77/4a/bfaba2d9c1fa76be68766523b88ea8f6e2271b9efb002016ddf89a82630a/PICOS-1.1.2.post127.tar.gz" } ], "1.1.2.post128": [ { "comment_text": "", "digests": { "md5": "78300892a14bd19b6cc797552c30da3f", "sha256": "d70c9bf811a14ef6bbd76aef8e2cfc60c8bcef49176ffd20b80614ebb284fd16" }, "downloads": -1, "filename": "PICOS-1.1.2.post128.tar.gz", "has_sig": false, "md5_digest": "78300892a14bd19b6cc797552c30da3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131971, "upload_time": "2018-10-05T13:47:29", "url": "https://files.pythonhosted.org/packages/23/a1/9414a0bf618a6d72247b7488ff0dce8f9cd93c00104701ca31ff6cde6237/PICOS-1.1.2.post128.tar.gz" } ], "1.1.2.post129": [ { "comment_text": "", "digests": { "md5": "3a0fddfecf987ce4291c826645a83438", "sha256": "bc6bd5506dcb9bb8363d38704c8b141bccf4cd30eb873a71e2cf7b37b68893a4" }, "downloads": -1, "filename": "PICOS-1.1.2.post129.tar.gz", "has_sig": false, "md5_digest": "3a0fddfecf987ce4291c826645a83438", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131985, "upload_time": "2018-10-05T14:21:00", "url": "https://files.pythonhosted.org/packages/8a/b6/6f14670f62e41e01341432a386b6398478beb8e079078999aa04c70cea96/PICOS-1.1.2.post129.tar.gz" } ], "1.1.2.post131": [ { "comment_text": "", "digests": { "md5": "b8ef6eb0a455adcd463fc4736b97a8dd", "sha256": "cec6e7e57486fed57ae78ca9640bacd02fed22b949fa86a5c1afdc7807b7fcfd" }, "downloads": -1, "filename": "PICOS-1.1.2.post131.tar.gz", "has_sig": false, "md5_digest": "b8ef6eb0a455adcd463fc4736b97a8dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 131989, "upload_time": "2018-10-05T15:15:33", "url": "https://files.pythonhosted.org/packages/07/b6/f864561d7c9568e34a8b414bf00f8f3431e3284845b2b64e078c154d94c1/PICOS-1.1.2.post131.tar.gz" } ], "1.1.2.post132": [ { "comment_text": "", "digests": { "md5": "34455fadbed179e251b3aa991db4e28f", "sha256": "32513b0649c9eb00332da19b1b8a2c19b76fb3825b068c593d0c62e3ceacf342" }, "downloads": -1, "filename": "PICOS-1.1.2.post132.tar.gz", "has_sig": false, "md5_digest": "34455fadbed179e251b3aa991db4e28f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129592, "upload_time": "2018-10-05T15:25:38", "url": "https://files.pythonhosted.org/packages/78/cd/747736af9eacefbdfbb8c797a115940fdd3bb0c822a7086ea43446b2cc11/PICOS-1.1.2.post132.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "e900a94ef56452b78c9f9233b4a0e0d3", "sha256": "d7dc54498fb0b014c46015cdcd1c96aacbb62f174d43b0c9c4645950a396c8e8" }, "downloads": -1, "filename": "PICOS-1.1.3.tar.gz", "has_sig": false, "md5_digest": "e900a94ef56452b78c9f9233b4a0e0d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129547, "upload_time": "2018-10-05T15:36:04", "url": "https://files.pythonhosted.org/packages/fe/42/aad995cc0267d16edefc80a1abb06936a67220ae01da26bc3c6f7842a33b/PICOS-1.1.3.tar.gz" } ], "1.1.3.post1": [ { "comment_text": "", "digests": { "md5": "4f059f5587d63bb0483d7a4dd2fc79dc", "sha256": "b906c922eb919777592c84467f65488b7ff5a6169520a4b14c0a9406c59df732" }, "downloads": -1, "filename": "PICOS-1.1.3.post1.tar.gz", "has_sig": false, "md5_digest": "4f059f5587d63bb0483d7a4dd2fc79dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129749, "upload_time": "2018-10-20T11:19:39", "url": "https://files.pythonhosted.org/packages/5a/08/706853df08e4b850010f85a7d12419a812b6ee473fb350425b209ea6fb6f/PICOS-1.1.3.post1.tar.gz" } ], "1.1.3.post3": [ { "comment_text": "", "digests": { "md5": "ce3436d56ddd60c06563530bde01ab9c", "sha256": "f01f720c2f2731eaeecc98e07dbe75b3b83c66ac2f0c77fe7c99ae1a1f9b89b7" }, "downloads": -1, "filename": "PICOS-1.1.3.post3.tar.gz", "has_sig": false, "md5_digest": "ce3436d56ddd60c06563530bde01ab9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129730, "upload_time": "2018-11-02T12:23:33", "url": "https://files.pythonhosted.org/packages/68/11/1acc22d611d39ec79c4f64ef56076aa37f914ff4c2094e21490a0242c936/PICOS-1.1.3.post3.tar.gz" } ], "1.1.3.post7": [ { "comment_text": "", "digests": { "md5": "24b5fdd7815866ee76969c150802e7eb", "sha256": "6c5d067b6ceeba530cbb467c2a8127cd24986a5d9f47080a022a72a77e05a90b" }, "downloads": -1, "filename": "PICOS-1.1.3.post7.tar.gz", "has_sig": false, "md5_digest": "24b5fdd7815866ee76969c150802e7eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129730, "upload_time": "2018-11-06T20:38:07", "url": "https://files.pythonhosted.org/packages/d4/ad/9658e573dda40faaf3e99a3dd72cf17ce685b16a1b5cdff3b17f0cb10dcd/PICOS-1.1.3.post7.tar.gz" } ], "1.1.3.post8": [ { "comment_text": "", "digests": { "md5": "a8030664ba9a5fb508edebbad6114b25", "sha256": "1f024f06935cad078114ed740edc35d0e6b29d949c1ed8fdb3f826f07348c8e3" }, "downloads": -1, "filename": "PICOS-1.1.3.post8.tar.gz", "has_sig": false, "md5_digest": "a8030664ba9a5fb508edebbad6114b25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129736, "upload_time": "2018-11-20T16:43:50", "url": "https://files.pythonhosted.org/packages/26/62/8e44f5fee151a55f918d3b87acd3174386493e402f1fb1a253589b30deed/PICOS-1.1.3.post8.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "da869167e9839c48e375b9ca25cdb007", "sha256": "0a2d05ae43fcd22de87adda405fd576c4e9ae18bffeb424e8a5450358bd6984d" }, "downloads": -1, "filename": "PICOS-1.2.0.tar.gz", "has_sig": false, "md5_digest": "da869167e9839c48e375b9ca25cdb007", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152671, "upload_time": "2019-01-11T19:16:38", "url": "https://files.pythonhosted.org/packages/14/7b/e9365549657be1bc78dbf36cb0cd676c79e89b8b6aa2fb63b5c4edc3e15c/PICOS-1.2.0.tar.gz" } ], "1.2.0.post1": [ { "comment_text": "", "digests": { "md5": "19a8076c02510ad1f0ded2558c69b9e6", "sha256": "ead59b89fc78fc769924ad1b42d9f3570f69050c90ed1800c7cc812721d235de" }, "downloads": -1, "filename": "PICOS-1.2.0.post1.tar.gz", "has_sig": false, "md5_digest": "19a8076c02510ad1f0ded2558c69b9e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152704, "upload_time": "2019-01-11T19:42:53", "url": "https://files.pythonhosted.org/packages/0a/86/9e252b431e5eab5e8d2683d5524e4afac849259666a652ae7039d1da35d6/PICOS-1.2.0.post1.tar.gz" } ], "1.2.0.post11": [ { "comment_text": "", "digests": { "md5": "97da71f6501abb38a4d79eb8c2f44950", "sha256": "ea4f822d214c2e1a92066579cc2c7eebe51608b4a3c73155481675588b54c9fc" }, "downloads": -1, "filename": "PICOS-1.2.0.post11.tar.gz", "has_sig": false, "md5_digest": "97da71f6501abb38a4d79eb8c2f44950", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153145, "upload_time": "2019-02-23T11:08:17", "url": "https://files.pythonhosted.org/packages/84/8f/d3ce76bdd682ce7e2326b4e402a68407a688d55ded6b317297920467ff91/PICOS-1.2.0.post11.tar.gz" } ], "1.2.0.post12": [ { "comment_text": "", "digests": { "md5": "f761aa2ab04d23286faa4662b5217e75", "sha256": "0c5f379f8389fdd85982a356d7b2cfc9cf0f5ee3c30f5e97a4de2ebc19ee3d27" }, "downloads": -1, "filename": "PICOS-1.2.0.post12.tar.gz", "has_sig": false, "md5_digest": "f761aa2ab04d23286faa4662b5217e75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153149, "upload_time": "2019-02-23T11:32:45", "url": "https://files.pythonhosted.org/packages/1b/8b/11292a6a574a83484dc45d3f93b9b7921dd3cf5a18e4e3548d23954aef56/PICOS-1.2.0.post12.tar.gz" } ], "1.2.0.post13": [ { "comment_text": "", "digests": { "md5": "b9c84e6ad529f57e4c8f3cbd680863c7", "sha256": "02d1545b28f6cde5995c1e947ce07c0f4ee37890b59f2438c1c6f868226a8e07" }, "downloads": -1, "filename": "PICOS-1.2.0.post13.tar.gz", "has_sig": false, "md5_digest": "b9c84e6ad529f57e4c8f3cbd680863c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153149, "upload_time": "2019-02-23T11:45:45", "url": "https://files.pythonhosted.org/packages/93/91/81e42de09169331a9f9c86c6e8b331ec1a3ab014d1a0388f3c2fae02f38b/PICOS-1.2.0.post13.tar.gz" } ], "1.2.0.post14": [ { "comment_text": "", "digests": { "md5": "f2ee4095d5bb440b6ec92fbd833df1e2", "sha256": "27a8a40a84739c299a1ef680f0a5e329622901ce3951c4f6c6bd6abac84703b8" }, "downloads": -1, "filename": "PICOS-1.2.0.post14.tar.gz", "has_sig": false, "md5_digest": "f2ee4095d5bb440b6ec92fbd833df1e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153164, "upload_time": "2019-03-12T11:45:31", "url": "https://files.pythonhosted.org/packages/b6/5c/42caed2133df2f84f1b40f702789b51ea2cdcee02424894c8a0d8115173a/PICOS-1.2.0.post14.tar.gz" } ], "1.2.0.post15": [ { "comment_text": "", "digests": { "md5": "dd1264f26771e8712edfa49adf0b45d6", "sha256": "45d9e617e14ed31a31eec34c6521de957715cc4029ca285f307b07c5515cbc01" }, "downloads": -1, "filename": "PICOS-1.2.0.post15.tar.gz", "has_sig": false, "md5_digest": "dd1264f26771e8712edfa49adf0b45d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153168, "upload_time": "2019-04-17T15:57:07", "url": "https://files.pythonhosted.org/packages/c7/35/3c899dbcb6d02804dd0f36887942cb3590ae0dcbe8e42f278b6d9f26452f/PICOS-1.2.0.post15.tar.gz" } ], "1.2.0.post16": [ { "comment_text": "", "digests": { "md5": "65bfd903c93baa1234fd4b6d8533a301", "sha256": "213254e0a279f503a54f1d508af5b80a6a70af2e869ef9af978aa7767eda0a8d" }, "downloads": -1, "filename": "PICOS-1.2.0.post16.tar.gz", "has_sig": false, "md5_digest": "65bfd903c93baa1234fd4b6d8533a301", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153163, "upload_time": "2019-04-18T09:34:12", "url": "https://files.pythonhosted.org/packages/75/6c/81c6a37a556d8746217fb8cfd8f34b478a204011a06fab1b8a80d5ed75d1/PICOS-1.2.0.post16.tar.gz" } ], "1.2.0.post17": [ { "comment_text": "", "digests": { "md5": "9d7fed20f2641afc46f3e72b7a649ad0", "sha256": "c0fe5a0eebfccf050ecef94584f44ec52fd29d2c9da37fdfcdd88bf81f9535e5" }, "downloads": -1, "filename": "PICOS-1.2.0.post17.tar.gz", "has_sig": false, "md5_digest": "9d7fed20f2641afc46f3e72b7a649ad0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153147, "upload_time": "2019-04-29T08:46:25", "url": "https://files.pythonhosted.org/packages/62/10/f46b4cd2488b58a9b6d97b335b0f206ad966ed81b65e600ce53616233447/PICOS-1.2.0.post17.tar.gz" } ], "1.2.0.post21": [ { "comment_text": "", "digests": { "md5": "195dd0c1ba9eed8fd1eb7256066aa6be", "sha256": "299192d1f1723a7af3f988c3827962a174e3c79df1809e61a5a50f6e9c755e9a" }, "downloads": -1, "filename": "PICOS-1.2.0.post21.tar.gz", "has_sig": false, "md5_digest": "195dd0c1ba9eed8fd1eb7256066aa6be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153706, "upload_time": "2019-05-07T19:18:30", "url": "https://files.pythonhosted.org/packages/3c/0d/0d1bdd436dca29d8f854ab8b58e2972631c89e4292b411db0f70d2d58c90/PICOS-1.2.0.post21.tar.gz" } ], "1.2.0.post22": [ { "comment_text": "", "digests": { "md5": "de7d7525b2aff11b66bab2647369bcb6", "sha256": "62be9b515f97ff6b2f2631c0071ee7df7dd5095c0f9d2170362070bf2189ad94" }, "downloads": -1, "filename": "PICOS-1.2.0.post22.tar.gz", "has_sig": false, "md5_digest": "de7d7525b2aff11b66bab2647369bcb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153711, "upload_time": "2019-05-18T07:36:28", "url": "https://files.pythonhosted.org/packages/41/7a/4cd41ee67047208e5b32d512f32e942e3e044de2cc93d0787059b9f4c9c9/PICOS-1.2.0.post22.tar.gz" } ], "1.2.0.post23": [ { "comment_text": "", "digests": { "md5": "25d19c721549ac748ce869f9657fd3c3", "sha256": "55165c742a2980513805d657570ca48a71adf7c9853366d811a13a0f22eb27ce" }, "downloads": -1, "filename": "PICOS-1.2.0.post23.tar.gz", "has_sig": false, "md5_digest": "25d19c721549ac748ce869f9657fd3c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153711, "upload_time": "2019-06-05T11:22:24", "url": "https://files.pythonhosted.org/packages/da/5d/ee7f47f071ef8a300dfe037975db221a454a1561ed17a12621c495d5935d/PICOS-1.2.0.post23.tar.gz" } ], "1.2.0.post24": [ { "comment_text": "", "digests": { "md5": "7ac4f68985aac1e39a0cd12d92d874ec", "sha256": "d28024545c2c35617dd7cfdf893fe25d1296686447b15085c4a91ac25eadb0d0" }, "downloads": -1, "filename": "PICOS-1.2.0.post24.tar.gz", "has_sig": false, "md5_digest": "7ac4f68985aac1e39a0cd12d92d874ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 153826, "upload_time": "2019-06-19T17:35:39", "url": "https://files.pythonhosted.org/packages/cb/f8/1e1133e606270e860feab49010c103eb2899f850e0efa053be34e518a800/PICOS-1.2.0.post24.tar.gz" } ], "1.2.0.post25": [ { "comment_text": "", "digests": { "md5": "eb06ee9a85206aafb5c2fac27316d6c1", "sha256": "f338bacb821acb552f483508c828433aeef4c24246178238c826088ed4d39b43" }, "downloads": -1, "filename": "PICOS-1.2.0.post25.tar.gz", "has_sig": false, "md5_digest": "eb06ee9a85206aafb5c2fac27316d6c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154034, "upload_time": "2019-06-24T10:03:11", "url": "https://files.pythonhosted.org/packages/01/92/2f898b9be1692046236bb45d7ca9826f75e503beccb5270e1ccbfe730326/PICOS-1.2.0.post25.tar.gz" } ], "1.2.0.post32": [ { "comment_text": "", "digests": { "md5": "141da530ee5035b03a22bfce053b639a", "sha256": "91857e8049435f48ad22d689192d7fd9e629fee9ba2d9b3fd0051e35c22cf483" }, "downloads": -1, "filename": "PICOS-1.2.0.post32.tar.gz", "has_sig": false, "md5_digest": "141da530ee5035b03a22bfce053b639a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154609, "upload_time": "2019-07-15T12:54:42", "url": "https://files.pythonhosted.org/packages/0b/ad/144eceb754105337dfcfc47308ef343df27162e7bcb05c525615c840955f/PICOS-1.2.0.post32.tar.gz" } ], "1.2.0.post4": [ { "comment_text": "", "digests": { "md5": "e11f5900283b2c96a0e1592575625204", "sha256": "44d8a02cf09552bf94b7c5ff40c15fa344a07befa3e4ed70c473ffea971ab18e" }, "downloads": -1, "filename": "PICOS-1.2.0.post4.tar.gz", "has_sig": false, "md5_digest": "e11f5900283b2c96a0e1592575625204", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152859, "upload_time": "2019-01-16T10:32:35", "url": "https://files.pythonhosted.org/packages/48/7a/682a1901596792c35feb1af2a6ec57953fe26f0866c43b2b728a9712379a/PICOS-1.2.0.post4.tar.gz" } ], "1.2.0.post5": [ { "comment_text": "", "digests": { "md5": "d99dfd0d1bccb5e685e260d0901bfea1", "sha256": "4c6ed3697b995919fd7e898c656dbd9b0e55d66bf125207847147e5325c3a159" }, "downloads": -1, "filename": "PICOS-1.2.0.post5.tar.gz", "has_sig": false, "md5_digest": "d99dfd0d1bccb5e685e260d0901bfea1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152852, "upload_time": "2019-01-16T14:31:15", "url": "https://files.pythonhosted.org/packages/d0/1f/e89b7e3230bc519c656b3817b0fb55709c9ca6601bbede8df8cf494da8fc/PICOS-1.2.0.post5.tar.gz" } ], "1.2.0.post6": [ { "comment_text": "", "digests": { "md5": "9704fcbe6f54896098c9a9412f6c4b0a", "sha256": "1c99f670369c6aa45d9d2f68f9c7c3d04bd0c97c95b79e9d5b40aa12c9680633" }, "downloads": -1, "filename": "PICOS-1.2.0.post6.tar.gz", "has_sig": false, "md5_digest": "9704fcbe6f54896098c9a9412f6c4b0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152935, "upload_time": "2019-01-17T07:54:35", "url": "https://files.pythonhosted.org/packages/e5/60/00771482b8a0725b53c23cc6c2163d58c32052807933b65cdb893f21e001/PICOS-1.2.0.post6.tar.gz" } ], "1.2.0.post7": [ { "comment_text": "", "digests": { "md5": "ff55d7501928332e75ce0df68a8fde6c", "sha256": "e0057d4822d17bb1c81d34235a91b24fe72039b47474c7bee6c8d3cf3a2d9079" }, "downloads": -1, "filename": "PICOS-1.2.0.post7.tar.gz", "has_sig": false, "md5_digest": "ff55d7501928332e75ce0df68a8fde6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152930, "upload_time": "2019-01-17T19:02:17", "url": "https://files.pythonhosted.org/packages/2b/8d/a668e03ad2e2836ca51a1231a5ded946c185d2ee7413d04df76b69b51d84/PICOS-1.2.0.post7.tar.gz" } ], "1.2.0.post8": [ { "comment_text": "", "digests": { "md5": "8c03d85bd72acf03d9961d5c2dea3e98", "sha256": "0455b7a67386c00cf6d454ac471e8c30d2a896bd059c848f7036c00e1d7a8de5" }, "downloads": -1, "filename": "PICOS-1.2.0.post8.tar.gz", "has_sig": false, "md5_digest": "8c03d85bd72acf03d9961d5c2dea3e98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152940, "upload_time": "2019-01-18T19:57:45", "url": "https://files.pythonhosted.org/packages/ab/58/974b83b3e34cac45d1dfcb11fd4b38b7ae23eb3444dfdd21724015474edb/PICOS-1.2.0.post8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "141da530ee5035b03a22bfce053b639a", "sha256": "91857e8049435f48ad22d689192d7fd9e629fee9ba2d9b3fd0051e35c22cf483" }, "downloads": -1, "filename": "PICOS-1.2.0.post32.tar.gz", "has_sig": false, "md5_digest": "141da530ee5035b03a22bfce053b639a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154609, "upload_time": "2019-07-15T12:54:42", "url": "https://files.pythonhosted.org/packages/0b/ad/144eceb754105337dfcfc47308ef343df27162e7bcb05c525615c840955f/PICOS-1.2.0.post32.tar.gz" } ] }