{ "info": { "author": "Sebastian Mueller", "author_email": "info@geostat-framework.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering", "Topic :: Utilities" ], "description": "# Welcome to pentapy\n\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2587158.svg)](https://doi.org/10.5281/zenodo.2587158)\n[![PyPI version](https://badge.fury.io/py/pentapy.svg)](https://badge.fury.io/py/pentapy)\n[![Build Status](https://travis-ci.org/GeoStat-Framework/pentapy.svg?branch=master)](https://travis-ci.org/GeoStat-Framework/pentapy)\n[![Build status](https://ci.appveyor.com/api/projects/status/yyfgn9dgxcoolp97/branch/master?svg=true)](https://ci.appveyor.com/project/GeoStat-Framework/pentapy/branch/master)\n[![Coverage Status](https://coveralls.io/repos/github/GeoStat-Framework/pentapy/badge.svg?branch=master)](https://coveralls.io/github/GeoStat-Framework/pentapy?branch=master)\n[![Documentation Status](https://readthedocs.org/projects/pentapy/badge/?version=latest)](https://geostat-framework.readthedocs.io/projects/pentapy/en/latest/?badge=latest)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)\n\n\n## Purpose\n\npentapy is a toolbox to deal with pentadiagonal matrices in Python.\n\nPentadiagonal linear equation systems arise in many areas of science and engineering:\ne.g. when solving differential equations, in interpolation problems, or in numerical schemes like finite difference.\n\n\n## Installation\n\nThe package can be installed via [pip][pip_link].\nOn Windows you can install [WinPython][winpy_link] to get Python and pip running.\n\n pip install pentapy\n\nThere are pre-built wheels for Linux, MacOS and Windows for most Python versions (2.7, 3.4-3.7).\n\nIf your system is not supported and you want to have the Cython routines of\npentapy installed, you have to provide a c-compiler and run:\n\n pip install numpy cython\n pip install pentapy\n\nTo get the scipy solvers running, you have to install scipy or you can use the\nfollowing extra argument:\n\n pip install pentapy[all]\n\nInstead of \"all\" you can also typ \"scipy\" or \"umfpack\" to get one of these specific packages.\n\n\n## References\n\nThe solver is based on the algorithms PTRANS-I and PTRANS-II\npresented by [Askar et al. 2015][ref_link].\n\n\n## Documentation and Examples\n\nYou can find the documentation under [geostat-framework.readthedocs.io][doc_link].\n\n### Solving a pentadiagonal linear equation system\n\nThis is an example of how to solve a LES with a pentadiagonal matrix.\n\n```python\nimport numpy as np\nimport pentapy as pp\n\nsize = 1000\n# create a flattened pentadiagonal matrix\nM_flat = (np.random.random((5, size)) - 0.5) * 1e-5\nV = np.random.random(size) * 1e5\n# solve the LES with M_flat as row-wise flattened matrix\nX = pp.solve(M_flat, V, is_flat=True)\n\n# create the corresponding matrix for checking\nM = pp.create_full(M_flat, col_wise=False)\n# calculate the error\nprint(np.max(np.abs(np.dot(M, X) - V)))\n```\n\nThis should give something like:\n```python\n4.257890395820141e-08\n```\n\n### Performance\n\nIn the following a couple of solvers for pentadiagonal systems are compared:\n\n* Solver 1: Standard linear algebra solver of Numpy [``np.linalg.solve``](https://www.numpy.org/devdocs/reference/generated/numpy.linalg.solve.html)\n* Solver 2: [``scipy.sparse.linalg.spsolve``](http://scipy.github.io/devdocs/generated/scipy.sparse.linalg.spsolve.html)\n* Solver 3: Scipy banded solver [``scipy.linalg.solve_banded``](scipy.github.io/devdocs/generated/scipy.linalg.solve_banded.html)\n* Solver 4: pentapy.solve with ``solver=1``\n* Solver 5: pentapy.solve with ``solver=2``\n\n

\n\"Performance\"\n

\n\nThe implementations of pentapy are almost one order of magnitude faster than the\nscipy algorithms for banded or sparse matrices.\n\nThe performance plot was created with [``perfplot``](https://github.com/nschloe/perfplot).\nHave a look at the script: [``examples/04_perform_simple.py``](https://github.com/GeoStat-Framework/pentapy/blob/master/examples/04_perform_simple.py).\n\n\n\n## Requirements:\n\n- [NumPy >= 1.14.5](https://www.numpy.org)\n\n### Optional\n\n- [SciPy](https://www.scipy.org/)\n- [scikit-umfpack](https://github.com/scikit-umfpack/scikit-umfpack)\n\n## Contact\n\nYou can contact us via .\n\n\n## License\n\n[MIT][licence_link] \u00a9 2019\n\n[ref_link]: http://dx.doi.org/10.1155/2015/232456\n[pip_link]: https://pypi.org/project/pentapy\n[winpy_link]: https://winpython.github.io/\n[licence_link]: https://github.com/GeoStat-Framework/pentapy/blob/master/LICENSE\n[doc_link]: https://geostat-framework.readthedocs.io/projects/pentapy/en/latest/\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/GeoStat-Framework/pentapy", "keywords": "", "license": "MIT", "maintainer": "Sebastian Mueller", "maintainer_email": "info@geostat-framework.org", "name": "pentapy", "package_url": "https://pypi.org/project/pentapy/", "platform": "Windows", "project_url": "https://pypi.org/project/pentapy/", "project_urls": { "Homepage": "https://github.com/GeoStat-Framework/pentapy" }, "release_url": "https://pypi.org/project/pentapy/1.0.2/", "requires_dist": [ "numpy (>=1.14.5)", "scipy; extra == 'all'", "scikit-umfpack; extra == 'all'", "scipy; extra == 'scipy'", "scikit-umfpack; extra == 'umfpack'" ], "requires_python": "", "summary": "pentapy: A toolbox for pentadiagonal matrizes.", "version": "1.0.2" }, "last_serial": 5917376, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "66d6ef3eaf6f74dfb33d10d312644da3", "sha256": "1974f45d0d113aba67ef590b88c288f065cf86a86a8dee578ac9996ebd65e146" }, "downloads": -1, "filename": "pentapy-0.1.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "66d6ef3eaf6f74dfb33d10d312644da3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 285971, "upload_time": "2019-03-07T19:52:32", "url": "https://files.pythonhosted.org/packages/dd/fa/38a47146bd764f74869f6f344c5380e3182309706ce67b4377dd499756be/pentapy-0.1.0-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "fbb44628217ae1258d7bb36d675f5b8e", "sha256": "e3a5be00e92dd3a195594528b288f516938120fa11ddb95e8a2b0408e0f38d57" }, "downloads": -1, "filename": "pentapy-0.1.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fbb44628217ae1258d7bb36d675f5b8e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 388217, "upload_time": "2019-03-07T19:56:42", "url": "https://files.pythonhosted.org/packages/b4/37/5a45f52346a56839cf7c8e478f68dd9d1dfe4d72f20626f11aab8240713a/pentapy-0.1.0-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "404dc5f16b941c5cf544689e18995793", "sha256": "485da0439ab197c6784ed6a908c8845264115650c68ae2378d1bbcffbc3cd366" }, "downloads": -1, "filename": "pentapy-0.1.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "404dc5f16b941c5cf544689e18995793", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 406739, "upload_time": "2019-03-07T19:56:44", "url": "https://files.pythonhosted.org/packages/d7/35/e9709bdf5831cc6f943f7fb3d4b715d34eac7b191b7030c7a09ea6716a49/pentapy-0.1.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c438fa2956b277f12cb543574a0a21c0", "sha256": "6995e79c6e2b57c512c5b730d841c7009ff9a798571211044a5b0768568d90db" }, "downloads": -1, "filename": "pentapy-0.1.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c438fa2956b277f12cb543574a0a21c0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 388227, "upload_time": "2019-03-07T19:56:45", "url": "https://files.pythonhosted.org/packages/85/dc/84acdb2378f92e2bf0d8191fabb6925b4091ee40a30a7a3b512c0a0c4e5b/pentapy-0.1.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5ccf629358451fc969b7d5acdf3104ca", "sha256": "de493fda47ad7a7c175ebc50f87f70fa533912f3fc4da005f0cd01fc1cf5349e" }, "downloads": -1, "filename": "pentapy-0.1.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5ccf629358451fc969b7d5acdf3104ca", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 406772, "upload_time": "2019-03-07T19:56:47", "url": "https://files.pythonhosted.org/packages/29/48/c6c2c6703d7a72eb86fc19d24f7e86fba490ad9f6104fb43c10ea53c4de6/pentapy-0.1.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1740cd864d5fbbfc177f68d83cda56a3", "sha256": "7a203d44f998b2081beaaf878e2fe147bb9206e616d051420e8b23f0671460a1" }, "downloads": -1, "filename": "pentapy-0.1.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "1740cd864d5fbbfc177f68d83cda56a3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 189679, "upload_time": "2019-03-07T19:53:41", "url": "https://files.pythonhosted.org/packages/ad/cb/0971cde506384240c547192050d286320a52d7ae1fa1cbf7780a1a47ddca/pentapy-0.1.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "39a8fb5f84ca95250de41ebae769dd5b", "sha256": "b7b1058815ecb81075c1b3d0d1a187c5b01dc93ab69cf0e752cca89fe01955f4" }, "downloads": -1, "filename": "pentapy-0.1.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "39a8fb5f84ca95250de41ebae769dd5b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 201118, "upload_time": "2019-03-07T19:53:42", "url": "https://files.pythonhosted.org/packages/89/da/9215c6e504aa23aa2c48eee7c8305b22067f638664d4f7960a86e399b093/pentapy-0.1.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f6d2d73ae30ba3be5125b080d0fee9ad", "sha256": "97f659e1e4d7e46de5b39e687a5d5447a9682f350781467db428a9cd18dddc75" }, "downloads": -1, "filename": "pentapy-0.1.0-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "f6d2d73ae30ba3be5125b080d0fee9ad", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 275520, "upload_time": "2019-03-07T19:55:11", "url": "https://files.pythonhosted.org/packages/d8/7d/3a99e1154801b9031274c665b49c7683e26f26049cd51558449ce491cb46/pentapy-0.1.0-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "a6beadcdfcd82f567ae9418026b1e703", "sha256": "3bdc8b6a24327773aa3cdef310fe10ca87045b528497565de09a3a662bdf34c2" }, "downloads": -1, "filename": "pentapy-0.1.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a6beadcdfcd82f567ae9418026b1e703", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 388328, "upload_time": "2019-03-07T19:55:32", "url": "https://files.pythonhosted.org/packages/bc/45/408fe8188ece2165a24efdc0d7c141603e879e4860923f17ab4b76a3e5bc/pentapy-0.1.0-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "2dfa20c7f8a781b9416cd97c9465da68", "sha256": "eb5afc5baeeb3e667e56688eb326e660b66dc3f94b2888ad63e256b0a485c1e3" }, "downloads": -1, "filename": "pentapy-0.1.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2dfa20c7f8a781b9416cd97c9465da68", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 407969, "upload_time": "2019-03-07T19:55:34", "url": "https://files.pythonhosted.org/packages/8f/e3/377344dc6d688e46d651b5c3f1c5fea3003a3e709c1c7fe227445e616c79/pentapy-0.1.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "42992d2d4efd4942c62b399c1779ba2a", "sha256": "ce30d3e88490b1ed0934939bbe3478fada8d2ee89cf7690c2f28c100ed614220" }, "downloads": -1, "filename": "pentapy-0.1.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "42992d2d4efd4942c62b399c1779ba2a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 186692, "upload_time": "2019-03-07T19:53:43", "url": "https://files.pythonhosted.org/packages/51/fa/3e4335ede823ee5069fe21c4f0e0227dc00848b45f4293c5735369fb179f/pentapy-0.1.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5c6e249a3caa3ba9c1601491d1fcfdc8", "sha256": "d39914fc4493f713eed3de64d545fcc77e2920e329bedc72855d59d3aa6563fb" }, "downloads": -1, "filename": "pentapy-0.1.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "5c6e249a3caa3ba9c1601491d1fcfdc8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 194681, "upload_time": "2019-03-07T19:53:45", "url": "https://files.pythonhosted.org/packages/8f/46/fedb5367b98413ce94b1db1706884b2731a8ff2227f23d0b07be24056bc8/pentapy-0.1.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ec68c06dea09bf9014e10e4f46381422", "sha256": "69f83294dc9a5d7d0102a59efffa590bf614071d7084ab90b1710b717257b291" }, "downloads": -1, "filename": "pentapy-0.1.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ec68c06dea09bf9014e10e4f46381422", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 267142, "upload_time": "2019-03-07T19:55:49", "url": "https://files.pythonhosted.org/packages/a4/ed/857dbffbd65983228b55a4c665bc035f1bb894f88150e6f62396255b3d29/pentapy-0.1.0-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "69f73c966da4399360b54e0cdc972be2", "sha256": "307cfcbe7ddafcc6bff9322975d277e0cbcdde720fa662f8aff43b9ccd81c82e" }, "downloads": -1, "filename": "pentapy-0.1.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "69f73c966da4399360b54e0cdc972be2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 383743, "upload_time": "2019-03-07T19:53:02", "url": "https://files.pythonhosted.org/packages/40/7b/51545a0e537aefda9704be9093a488b6ee27797c13d9d5b802f0e8a92b35/pentapy-0.1.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "e26885c54a597153861ada6db6a1dfd9", "sha256": "257357d0c2b4bc1db71fec08112cc40bb248308bf293ffcee2a6ed9a496e0071" }, "downloads": -1, "filename": "pentapy-0.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e26885c54a597153861ada6db6a1dfd9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 403817, "upload_time": "2019-03-07T19:53:05", "url": "https://files.pythonhosted.org/packages/46/95/4bd910e7913285a744466f0c1862e0b9530e0218489c928e4245fb8c724c/pentapy-0.1.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c0f68953096aa9dc506cd4d916bdbb96", "sha256": "eb3fd28de3460c8b4c28975cca3e3dac9d6a41d6b3c9f3576dd4b5ec78a0934b" }, "downloads": -1, "filename": "pentapy-0.1.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "c0f68953096aa9dc506cd4d916bdbb96", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 184740, "upload_time": "2019-03-07T19:53:47", "url": "https://files.pythonhosted.org/packages/91/7d/77513096b31caa83670bdd8cc4c6814ee4581dd7cca7a19a7bb7a1a12de9/pentapy-0.1.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8417e56e7d4c04e87036d012d7eb384a", "sha256": "21ed5dc9d3c8ae9e0ea1b3ee8078ac494d00ae938d3678e9c65ad4c854fdc456" }, "downloads": -1, "filename": "pentapy-0.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8417e56e7d4c04e87036d012d7eb384a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 195776, "upload_time": "2019-03-07T19:53:48", "url": "https://files.pythonhosted.org/packages/b5/ff/223238d2e0cc1c3401b6b8e5fcaae91c58f62ef4afa180ae66652cabf32d/pentapy-0.1.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cd9fbc822a90f520d85bdabc015262a1", "sha256": "22ad0c2a26cb7c2539ea26b2cf7aed6f47ed211fefd92b4f0d84e4e740dbb3c3" }, "downloads": -1, "filename": "pentapy-0.1.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "cd9fbc822a90f520d85bdabc015262a1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 269762, "upload_time": "2019-03-07T19:57:55", "url": "https://files.pythonhosted.org/packages/15/a1/d5e9160e2d87185096a1ae856bb1579311b7d7c6e2e01df2fe6ff2135359/pentapy-0.1.0-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "daac3625f05b048141fc888f6497a531", "sha256": "603787d5e5a2ea026499dba7d8ce7198f64328973a0e07cbe0fe44b2b0b298cd" }, "downloads": -1, "filename": "pentapy-0.1.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "daac3625f05b048141fc888f6497a531", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 388490, "upload_time": "2019-03-07T19:52:47", "url": "https://files.pythonhosted.org/packages/3b/90/ed6095cfbe27313d4bdd6a7377019b128533c22b42ab963425854163c071/pentapy-0.1.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "d6efefbe52d31f2cb8626f25a116eaa7", "sha256": "542e2390861303c653b33626ced4b9f7102fc0921c8026106ab4b1a737f126ef" }, "downloads": -1, "filename": "pentapy-0.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d6efefbe52d31f2cb8626f25a116eaa7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 406953, "upload_time": "2019-03-07T19:52:49", "url": "https://files.pythonhosted.org/packages/60/5c/8a0f84158ef138dd566373bd1bbb2170098769b007f0d03b2bd5af34f331/pentapy-0.1.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2de0034e0ed2372b6069f213b8cb7922", "sha256": "7206adcec46f6250488cf055e096ce2c13e31d606e054c7ced1ff2ed37ad77ad" }, "downloads": -1, "filename": "pentapy-0.1.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2de0034e0ed2372b6069f213b8cb7922", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 185287, "upload_time": "2019-03-07T19:53:50", "url": "https://files.pythonhosted.org/packages/92/56/b428e91b9cbcf6a0c68054be6d4bdb42e46a32026f8b0a5646a61bf1f166/pentapy-0.1.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0c27ab08c156a4e3d4c918bfba744c60", "sha256": "b5d0b92e1ef88bb2d85a6a7937e1ae8e1db2bf18befa2c5c1332b729c39ce8f0" }, "downloads": -1, "filename": "pentapy-0.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0c27ab08c156a4e3d4c918bfba744c60", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 196461, "upload_time": "2019-03-07T19:53:51", "url": "https://files.pythonhosted.org/packages/08/f2/c479f9b05bf48383fd69b0b4345cf84b3b51ea8cbd15f0324c0828ec019a/pentapy-0.1.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4d1331b0014fc308002f6a9acf2ef283", "sha256": "cf300596716829edbbc5a6ecf52a497fcec0e3a18e222b999b8d401dee1ed0da" }, "downloads": -1, "filename": "pentapy-0.1.0.tar.gz", "has_sig": false, "md5_digest": "4d1331b0014fc308002f6a9acf2ef283", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120669, "upload_time": "2019-03-07T19:52:51", "url": "https://files.pythonhosted.org/packages/b0/dd/b2a9a18516d49660f8d301a8feba834896c5c0bb78061c6499829caf5d53/pentapy-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "2047a7fd4d4e199a972d033561f2665b", "sha256": "1f52d85cab09d3d72015212d6502a72066bf7396527eba0446c569c985e45255" }, "downloads": -1, "filename": "pentapy-0.1.1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "2047a7fd4d4e199a972d033561f2665b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 286849, "upload_time": "2019-03-07T23:17:06", "url": "https://files.pythonhosted.org/packages/6d/5c/fc50cab25b1a08d8bba9bb93ebfe690ecec5577ea6f8e66cc26ecd69ce63/pentapy-0.1.1-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "adb479cf4d0bcd472af16c54e0f5f41d", "sha256": "9d3afe435875eebb7f9ee86a10c2c07281f3294f748108ff7a84359926e8ff78" }, "downloads": -1, "filename": "pentapy-0.1.1-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "adb479cf4d0bcd472af16c54e0f5f41d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 389091, "upload_time": "2019-03-07T23:15:05", "url": "https://files.pythonhosted.org/packages/26/7a/0f371ba06e7968ddc988bfda0523e0753e0683a4e95699e9bdfd6ce781c1/pentapy-0.1.1-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "f731d88629f8baed026db5a46abc26c9", "sha256": "23f26812a699f16db7623600eb77a42eda1fe146ce2f29648cf10423542b2aa8" }, "downloads": -1, "filename": "pentapy-0.1.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f731d88629f8baed026db5a46abc26c9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 407636, "upload_time": "2019-03-07T23:15:07", "url": "https://files.pythonhosted.org/packages/3b/f1/24290f061ae0845b3ccd84ecc7aab4f1a1192dcf3a585bc568c842e955d5/pentapy-0.1.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d8a6d6225c1ef1d42380eebd48d9fa2f", "sha256": "296e6ef7435a14f6cbcd281c676d8fa03caae98bc5c72469ba7c21fbc6378311" }, "downloads": -1, "filename": "pentapy-0.1.1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d8a6d6225c1ef1d42380eebd48d9fa2f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 389120, "upload_time": "2019-03-07T23:15:09", "url": "https://files.pythonhosted.org/packages/0f/bb/67cd91162df66c03fe527278ffc8d77e2f0b62fa84775ebf3a68f366b9d9/pentapy-0.1.1-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ec44f406612c98019f50c4f16d8d9c0d", "sha256": "07ff47e1fd0f643eaae4d5b22817cbe60d6e4a645d9a2fe618b965752a46acba" }, "downloads": -1, "filename": "pentapy-0.1.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ec44f406612c98019f50c4f16d8d9c0d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 407654, "upload_time": "2019-03-07T23:15:11", "url": "https://files.pythonhosted.org/packages/7f/4c/aba84636f27bae3ac65f955a52dcb9167f0fa17810b15239a2fb31075a19/pentapy-0.1.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "90794ba7b13db64343cb326adff0e353", "sha256": "25ac531608bcdee661528027d665905fbd9170b3a37617c6610f4ecf92d7247f" }, "downloads": -1, "filename": "pentapy-0.1.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "90794ba7b13db64343cb326adff0e353", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 190560, "upload_time": "2019-03-07T23:16:49", "url": "https://files.pythonhosted.org/packages/af/e0/210e20c3606ba7f6ad288e58ad49c90bd0257b97f6208057022d65f02e7e/pentapy-0.1.1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1029744706e66b9238b83f0c893316b4", "sha256": "13d455dfd42cd6a00d082574c083f803b0d0c758b2184fa4ef06bb928deecfb5" }, "downloads": -1, "filename": "pentapy-0.1.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "1029744706e66b9238b83f0c893316b4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 201998, "upload_time": "2019-03-07T23:16:51", "url": "https://files.pythonhosted.org/packages/b8/10/c1782a4ca27159ab3e398184ad4d94fea69d3363a9044ff890994d3ac67f/pentapy-0.1.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1b5699efdd47e2d82c0ce02b486f9243", "sha256": "625c80fd3c606c750e49012572dc314ea74601fedce715cbb7a8f7eb288f69fd" }, "downloads": -1, "filename": "pentapy-0.1.1-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "1b5699efdd47e2d82c0ce02b486f9243", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 276394, "upload_time": "2019-03-07T23:19:14", "url": "https://files.pythonhosted.org/packages/c1/72/871f85bdc41907fae26a74be7f82ea5b02ae57acaa36da6abf55ab21a5d7/pentapy-0.1.1-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "4e2c11fddf68663980ddb5bf247d60fc", "sha256": "ba002a46e60c88eec06def8b3addf0778cdc7816429515fb2fa9ebc650619aa7" }, "downloads": -1, "filename": "pentapy-0.1.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4e2c11fddf68663980ddb5bf247d60fc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 389187, "upload_time": "2019-03-07T23:14:27", "url": "https://files.pythonhosted.org/packages/fd/20/6b0ee397adbe610c93f74c1bf250bce913e4820af236d1fb4972b4a0fbc2/pentapy-0.1.1-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "59878dd2e84df92224629b10a559ef22", "sha256": "51009bf8217a0442b0f724a8ec384c5381f247075b305da3c3f90d7a7a52807b" }, "downloads": -1, "filename": "pentapy-0.1.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "59878dd2e84df92224629b10a559ef22", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 408861, "upload_time": "2019-03-07T23:14:29", "url": "https://files.pythonhosted.org/packages/e9/ce/4db689c23e7f703bc9241db8f7b3c9bf6313a86ab5fd19f66ce7f6e03cc1/pentapy-0.1.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "bf40bf05782b8eaa1da1d3bfcd297745", "sha256": "862ff5d2033cf37fde47493afc9092797e6912f683d39800c69d0eb2ef376788" }, "downloads": -1, "filename": "pentapy-0.1.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "bf40bf05782b8eaa1da1d3bfcd297745", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 187572, "upload_time": "2019-03-07T23:16:52", "url": "https://files.pythonhosted.org/packages/1b/9a/2a314076280b7e9f36b2136d77358bca819ddcb1965e2d8565cfdf5b5a15/pentapy-0.1.1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "54a13871477fdd41ad13f3acba1d1695", "sha256": "d25cbb57914a7d1e5329db7f00d6f6134e4ad6188ef802e03c4724e866d4e8b2" }, "downloads": -1, "filename": "pentapy-0.1.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "54a13871477fdd41ad13f3acba1d1695", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 195559, "upload_time": "2019-03-07T23:16:54", "url": "https://files.pythonhosted.org/packages/3a/c7/ed381f807012f2c58b34b2b323169e20ccf9817447d219db5298aebaa945/pentapy-0.1.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5b65ab05bc6553bf4cfd59ee362025fc", "sha256": "15d675e5fee42697f39270119dfbac864a9e965e9619c9cf021e256761f28863" }, "downloads": -1, "filename": "pentapy-0.1.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "5b65ab05bc6553bf4cfd59ee362025fc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 268020, "upload_time": "2019-03-07T23:19:51", "url": "https://files.pythonhosted.org/packages/b3/7e/dbfb7ddf69ec63d3e5969e8b55fcfbd3f213c2852cad7b982e7c8d2054f5/pentapy-0.1.1-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "b0aad2dcf5a726482f502a57faa2e537", "sha256": "a8e0a69a13496b6129816ac6d25d1ca9ad7a869bbcdc002e4bb38ed70749f7e0" }, "downloads": -1, "filename": "pentapy-0.1.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b0aad2dcf5a726482f502a57faa2e537", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 384622, "upload_time": "2019-03-07T23:14:59", "url": "https://files.pythonhosted.org/packages/ba/32/664153c5f190bfc525ad28ff19abc5f54ae79eab7a8a560695bde0dfbc88/pentapy-0.1.1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "0087d07b9d7cfc337c3271ae56a2fe36", "sha256": "ab40bba538de06fdeb99f967c374b010f0f36f25ac42b829366f0743cece7a42" }, "downloads": -1, "filename": "pentapy-0.1.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0087d07b9d7cfc337c3271ae56a2fe36", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 404697, "upload_time": "2019-03-07T23:15:00", "url": "https://files.pythonhosted.org/packages/6e/ee/e580ff5306c6599f04db501ef3e5142c2876bf47ba14984e73ee78810d63/pentapy-0.1.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8d3d207e7acb6c1b67d7c2b08836f1c1", "sha256": "5ddee5eaf2c3fbe2d3ea6ee5617b7b481a5b5eabd5ada49d049b3ba2355c30ec" }, "downloads": -1, "filename": "pentapy-0.1.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "8d3d207e7acb6c1b67d7c2b08836f1c1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 185616, "upload_time": "2019-03-07T23:16:55", "url": "https://files.pythonhosted.org/packages/3b/34/c4272bd0c972e7c46f7f98c5b0934b2c9db57d408cfac4a34ce2d5cc5164/pentapy-0.1.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a584b13beec0637003a0393546ae34f8", "sha256": "5e605fcc7918ef355f88f01004090aed68015b437112b7754b33f740c494cd17" }, "downloads": -1, "filename": "pentapy-0.1.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a584b13beec0637003a0393546ae34f8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 196654, "upload_time": "2019-03-07T23:16:57", "url": "https://files.pythonhosted.org/packages/ec/4b/a7c9529cdafb201f15197010062c66670b73aee0f2dd6356f207d3f908cc/pentapy-0.1.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b18dabee1629c7a46993e87781c4906e", "sha256": "54370e2dea71440f41476a15b7da7f325438d95c8794c4a7e9806fa3f29189ca" }, "downloads": -1, "filename": "pentapy-0.1.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "b18dabee1629c7a46993e87781c4906e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 270646, "upload_time": "2019-03-07T23:22:07", "url": "https://files.pythonhosted.org/packages/38/a2/3ef26ecc0452b35f0afe86a3f1e531d3cb2eaadc68714283062ad88b7315/pentapy-0.1.1-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "81b82137c900ca86c0d7d0552b1aa41d", "sha256": "e8f7573c763333be32d8ec277be6f4cb365c26869c7ebf019e2a020424187250" }, "downloads": -1, "filename": "pentapy-0.1.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "81b82137c900ca86c0d7d0552b1aa41d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 389372, "upload_time": "2019-03-07T23:16:01", "url": "https://files.pythonhosted.org/packages/e0/9c/f12def6b94780b180db1a8546ed2c3384b1e7ece9cd4e1347371df144524/pentapy-0.1.1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "83dd5fffd682389b17d2e032d893e0bc", "sha256": "c3d321a074d144d057323056d9f4dee2c8cd261f04fd528d804d86f02ed648f4" }, "downloads": -1, "filename": "pentapy-0.1.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "83dd5fffd682389b17d2e032d893e0bc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 407816, "upload_time": "2019-03-07T23:16:03", "url": "https://files.pythonhosted.org/packages/a1/ab/1b81e267e78fa966b340999ff61dc4a3e79620c57ac06c0ecd21aedb1e53/pentapy-0.1.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f306beff8110b7ad435f40014d46deab", "sha256": "02d8b570e4c55f6b30672f654d73e5e16d5d3c88ccbf1f837309cf2f79c52ced" }, "downloads": -1, "filename": "pentapy-0.1.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f306beff8110b7ad435f40014d46deab", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 186165, "upload_time": "2019-03-07T23:16:59", "url": "https://files.pythonhosted.org/packages/8d/4a/733ee2f23568b8e34c65a828bcb79d5da9b76b0cc4201ac791aa97967835/pentapy-0.1.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "61bea982fd3eb0a3dd77c5ef1f05d12b", "sha256": "5a0fcf711aab8cbe35a34d80b5d356bcd05fc25e716ca6b4409f31da23e8f6e4" }, "downloads": -1, "filename": "pentapy-0.1.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "61bea982fd3eb0a3dd77c5ef1f05d12b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 197340, "upload_time": "2019-03-07T23:17:00", "url": "https://files.pythonhosted.org/packages/a9/e9/bb22348f7dd1ae240cce0bb0d1c522ee95722c1ca0c5838acb0de88b3697/pentapy-0.1.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "39b0dfec687b824c607df3b6395f47d6", "sha256": "3558334290d7567921a7efe0e180eab5821ecfddcd459f3a82a55c2eac33c62d" }, "downloads": -1, "filename": "pentapy-0.1.1.tar.gz", "has_sig": false, "md5_digest": "39b0dfec687b824c607df3b6395f47d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133714, "upload_time": "2019-03-07T23:16:05", "url": "https://files.pythonhosted.org/packages/c2/92/d2ed90d44a772838f8ac58f77ef045178465cddf5753d2bac41663970e3c/pentapy-0.1.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "82dec2c5185b7c96698e2a887b97d19c", "sha256": "a077b5a27a2af4077b985b87e1bb9ebf1234abd95f7ccfe4b8208d859a1d1c7e" }, "downloads": -1, "filename": "pentapy-1.0.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "82dec2c5185b7c96698e2a887b97d19c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 305161, "upload_time": "2019-09-18T12:50:30", "url": "https://files.pythonhosted.org/packages/f2/f8/d8e89fe97b4907475f40a0b522151867e8562f5167b87f80eb1248c1ff6f/pentapy-1.0.0-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "20764f8d3bf4b92e792dd84f4dad9000", "sha256": "f9f1ed40762304cfc71c9fc721ea2ae0f4fc006a96632b56f464d24cc4226f05" }, "downloads": -1, "filename": "pentapy-1.0.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "20764f8d3bf4b92e792dd84f4dad9000", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 430073, "upload_time": "2019-09-18T12:44:16", "url": "https://files.pythonhosted.org/packages/b1/d3/8b4e48fc600d6a60bc053d18f84667851151b2d79f430a2159de43bdd88f/pentapy-1.0.0-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5e97af838c121381c28aa518341ae01d", "sha256": "119d2f45c9f7b071c060d4f6800b52c10468a03f50e7d38c0af13ba4b995735c" }, "downloads": -1, "filename": "pentapy-1.0.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5e97af838c121381c28aa518341ae01d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 448983, "upload_time": "2019-09-18T12:44:18", "url": "https://files.pythonhosted.org/packages/dd/93/211ed44594cd10911089b93db577e89bbf7b75b09f539f09950d5482dff8/pentapy-1.0.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7fe015aac9dd968f6e8d6e4f5d77e8c9", "sha256": "3dec64c1d6f7b4f3c3c6d294680a66c651b56eee7bb1a75bd070be9f3e841477" }, "downloads": -1, "filename": "pentapy-1.0.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7fe015aac9dd968f6e8d6e4f5d77e8c9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 430001, "upload_time": "2019-09-18T12:44:20", "url": "https://files.pythonhosted.org/packages/8e/77/4fac32ca7369fa185b4bcae6ac1ad088c3bf97d61c5ca80b560bb15e4b81/pentapy-1.0.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "22f19b9799a81c2438da4439f60bef0d", "sha256": "8fbded70cb852f08d64d20b797c06795e28628053eca95033119cd75ae5be6b5" }, "downloads": -1, "filename": "pentapy-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "22f19b9799a81c2438da4439f60bef0d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 448958, "upload_time": "2019-09-18T12:44:21", "url": "https://files.pythonhosted.org/packages/17/27/a56d56c41a0a822f2d291d4155b520ca1bd2d2d85f3349d6cff7144bf3b2/pentapy-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "be1c79e69ceb200aa61e90395c4e766a", "sha256": "d4ae2157c106253149cf6e8eb8cf28a5f3f2a61fa55d64a5a654f91f8474260d" }, "downloads": -1, "filename": "pentapy-1.0.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "be1c79e69ceb200aa61e90395c4e766a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 198215, "upload_time": "2019-09-18T12:50:53", "url": "https://files.pythonhosted.org/packages/e0/3a/778781446b807ba4a1b1634d4ed2c6d98c52868492930f4b33ee3a8161b4/pentapy-1.0.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4d851572db571253e1f06e112cbe296d", "sha256": "2baef6153a976aebea53ad748db5eac78c5c5d64ca1bce69fb350805f7dc385a" }, "downloads": -1, "filename": "pentapy-1.0.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "4d851572db571253e1f06e112cbe296d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 211377, "upload_time": "2019-09-18T12:50:55", "url": "https://files.pythonhosted.org/packages/b7/02/ed38c16749e21de83e3a2ea1e0ccedf0c0a12e8be84721a9c3c9fc381adc/pentapy-1.0.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c54d46971ccba291de7539233157700f", "sha256": "e166f580139e22f5462831ef0fc4a40083595ecd3bd9002f340e4c7421e897f4" }, "downloads": -1, "filename": "pentapy-1.0.0-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "c54d46971ccba291de7539233157700f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 295650, "upload_time": "2019-09-18T12:49:44", "url": "https://files.pythonhosted.org/packages/83/13/5190aa3d83ed3398986f581b3031e2d725f91ec530f080475a4d990a151c/pentapy-1.0.0-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "3eadefb2306d4bc8a94ba23dd6fedec5", "sha256": "b662d6a4bd6992ae7205dfa051035e6da5859cdc4e70fc449c9edb09b1c92222" }, "downloads": -1, "filename": "pentapy-1.0.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3eadefb2306d4bc8a94ba23dd6fedec5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 428763, "upload_time": "2019-09-18T12:44:03", "url": "https://files.pythonhosted.org/packages/da/ee/01d4c474a0e601e7967bb951f7d00dc09f4787df07462429def1855b9613/pentapy-1.0.0-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7bd61bc00c0e4b408e19e0469b1aa010", "sha256": "9955c5e71fb1c008ca75e940835aa5f280cc8457b7c0e6165577aacf862afae5" }, "downloads": -1, "filename": "pentapy-1.0.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7bd61bc00c0e4b408e19e0469b1aa010", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 448511, "upload_time": "2019-09-18T12:44:05", "url": "https://files.pythonhosted.org/packages/aa/a2/86669562403a06170afd312bb497feecf1ff2aad640d5b328efdab6c7816/pentapy-1.0.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "124bb92e29a9b644fa482c2867676008", "sha256": "6eb5f9e0422565b3f4e1572c92cda58391b8be9b124d05bb4c3e561a63ab4c87" }, "downloads": -1, "filename": "pentapy-1.0.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "124bb92e29a9b644fa482c2867676008", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 195213, "upload_time": "2019-09-18T12:50:56", "url": "https://files.pythonhosted.org/packages/3f/2c/d0b2c9d320f6fd81a116311ad21a6e9981da662de02c996f012214381d47/pentapy-1.0.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "bbf15a2eae70f412210d0c7ecf53c0c1", "sha256": "e93dc7129ccf7aed782bd826c6d68d202e9e6224e4a2a4251829f34f5603bab6" }, "downloads": -1, "filename": "pentapy-1.0.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "bbf15a2eae70f412210d0c7ecf53c0c1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 205741, "upload_time": "2019-09-18T12:50:58", "url": "https://files.pythonhosted.org/packages/5d/10/404cff8c4f2fc0c4336baf8ae01b9fae35de9896946d443e7a9751f40c27/pentapy-1.0.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "094adc31687ed30b3a4bdb2133112706", "sha256": "8433ddae607d5bfa3d92018d39a06463dd8ddcb6e5ea53c34904114adbce0c49" }, "downloads": -1, "filename": "pentapy-1.0.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "094adc31687ed30b3a4bdb2133112706", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 287933, "upload_time": "2019-09-18T12:52:59", "url": "https://files.pythonhosted.org/packages/69/a5/09724b99bab8a6e0e744604e97ec4c415c5ca0ed56537f7a2a8a3e92a89f/pentapy-1.0.0-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8d21fb2673a023aed2301680e25e4e97", "sha256": "b499c3bca1609ed666c62feec5c0e8c8dffff410aeb49af4792bc26c6e9b6840" }, "downloads": -1, "filename": "pentapy-1.0.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8d21fb2673a023aed2301680e25e4e97", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 425096, "upload_time": "2019-09-18T12:43:53", "url": "https://files.pythonhosted.org/packages/6d/21/bacf82e12f49d829b7d4c0f801b537797864847cf83b01ab5fe8793f29ec/pentapy-1.0.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7f4baddf95f444f7d6a8255c5094d0d0", "sha256": "91918f27eb7e0feef3d8d809362f490e2f12af6c9c0f6ff262ccde1ed1e8a16d" }, "downloads": -1, "filename": "pentapy-1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7f4baddf95f444f7d6a8255c5094d0d0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 447990, "upload_time": "2019-09-18T12:43:55", "url": "https://files.pythonhosted.org/packages/b7/51/3d47a09a368fb63ac9aa5c5f2791c86456f8fd7fe5bbf5c6be26549619e4/pentapy-1.0.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "54e1a6ef88afc9b90f07d0d72bf32e87", "sha256": "0cc03ab551f4e21108e4e2ad8411c45074d3f4e668dbc57fdbe70b2433d49b79" }, "downloads": -1, "filename": "pentapy-1.0.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "54e1a6ef88afc9b90f07d0d72bf32e87", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 192109, "upload_time": "2019-09-18T12:50:59", "url": "https://files.pythonhosted.org/packages/af/cf/9beac4af4a8cf842f10e70054d9252eb7ddaeb4cb1b3fe474a4944e4402d/pentapy-1.0.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8b592a9db2909cf057bbf4e67f2d0e44", "sha256": "ede6d37a6df4a547b87f8799cd088939b859bb226735bb86f8e921d240e82d2a" }, "downloads": -1, "filename": "pentapy-1.0.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8b592a9db2909cf057bbf4e67f2d0e44", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 205676, "upload_time": "2019-09-18T12:51:01", "url": "https://files.pythonhosted.org/packages/77/24/d791c5ce8d6e9a0b5af8a41fe6c39ca4a1e861ef3d5dbc1c8fd55d5d2753/pentapy-1.0.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2373c8549da60e27df638112098cd74d", "sha256": "1b802747e045c068e3deabcb96d4afb4e6cdc15ab7d2d138318348ba7da99412" }, "downloads": -1, "filename": "pentapy-1.0.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "2373c8549da60e27df638112098cd74d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 291876, "upload_time": "2019-09-18T12:53:54", "url": "https://files.pythonhosted.org/packages/3d/9c/c8eba95ae8138e81c1903107e3c9baa0a852a15291e718bfd287dc035771/pentapy-1.0.0-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "5bad2bfd17acf33fc62ad7f2d0dcc6b7", "sha256": "69919f049bd41b1438718e79d44fa73832df3459be03ac3f2a8df7e4f5666390" }, "downloads": -1, "filename": "pentapy-1.0.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5bad2bfd17acf33fc62ad7f2d0dcc6b7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 433606, "upload_time": "2019-09-18T12:47:10", "url": "https://files.pythonhosted.org/packages/47/37/a77518d849137a0f8ea690bfa1b000076203660e90f95f656bad445ad3be/pentapy-1.0.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "6f9f6a4edd847c100f3fbd70fb839cf9", "sha256": "9d68412fe60a319d59b21a65d7d65a12416cbfbb3e186750920bc32c31471325" }, "downloads": -1, "filename": "pentapy-1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6f9f6a4edd847c100f3fbd70fb839cf9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 456877, "upload_time": "2019-09-18T12:47:12", "url": "https://files.pythonhosted.org/packages/44/75/28a5d92966f29494109b8645d20b5c23124fa094b949806ea60d5341a8d5/pentapy-1.0.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c9562d41f597bf92e99eae9f088938a7", "sha256": "119a2933d1136c415604dc5d5c83b0921c2eb575d6a861068c6e75ba66e53f11" }, "downloads": -1, "filename": "pentapy-1.0.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c9562d41f597bf92e99eae9f088938a7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 193492, "upload_time": "2019-09-18T12:51:03", "url": "https://files.pythonhosted.org/packages/86/51/a46bb6ba4d8f196e1a36f4e294b59326be5eb0072638dc5262dc0fd34519/pentapy-1.0.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b5b1b9e7becbeb8fd9233c5e034643e8", "sha256": "6019988939bb7df09fc872ff3704916ccf103675a916bda5f648de6965484582" }, "downloads": -1, "filename": "pentapy-1.0.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b5b1b9e7becbeb8fd9233c5e034643e8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 206572, "upload_time": "2019-09-18T12:51:04", "url": "https://files.pythonhosted.org/packages/aa/ec/a1f8099c9f0861ca7d78ee6accc329e7e2c1f5e31c80db3890ae967e8848/pentapy-1.0.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4d556cacfd60951ffe21e7172a19b49a", "sha256": "f8647d948e8b7d409cc761069c2bee7bbf8d4b5c953d7dffa2cbd97b65426fff" }, "downloads": -1, "filename": "pentapy-1.0.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "4d556cacfd60951ffe21e7172a19b49a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 292123, "upload_time": "2019-09-18T12:56:10", "url": "https://files.pythonhosted.org/packages/d8/b3/dd5dc0ae4ae6bf75128a865c354c917dfbddb092adca4fee10789ce1f1ff/pentapy-1.0.0-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "ba5878c0bf118ba07cf57df52308d022", "sha256": "901505c971bd525e91df42208fea2c7df0837fec9d69c12c5e1482ddb55163a1" }, "downloads": -1, "filename": "pentapy-1.0.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ba5878c0bf118ba07cf57df52308d022", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 429825, "upload_time": "2019-09-18T12:47:06", "url": "https://files.pythonhosted.org/packages/52/dd/8c0688de276acc035f03ab5b0487aa9994d84518a4f624456996c79e6415/pentapy-1.0.0-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "775bc9456bc51adecfe7ba6f249041fa", "sha256": "6089d112594f5d975df850ae610bd721b1108ed30d965cfa2a36e66c7199cd5f" }, "downloads": -1, "filename": "pentapy-1.0.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "775bc9456bc51adecfe7ba6f249041fa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 454281, "upload_time": "2019-09-18T12:47:08", "url": "https://files.pythonhosted.org/packages/b5/2e/d55ee8a1ec3786f4caf74192c9329fb6d95dae31e0761bd49681c5c478d3/pentapy-1.0.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d64f28d4b9ecab873b7572a652a6233", "sha256": "8b5ba61e27433f8de5a8a663f835d5731e6900c266d7f4c5364a400c6e2a96db" }, "downloads": -1, "filename": "pentapy-1.0.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "2d64f28d4b9ecab873b7572a652a6233", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 193361, "upload_time": "2019-09-18T12:51:06", "url": "https://files.pythonhosted.org/packages/8b/07/a9c15f3d7af5264551d0ff20c5f2545769d5916d35975a67818b4aa17c60/pentapy-1.0.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "f1452351a7a401f2dd7e78e1c41cd65a", "sha256": "2103da6dc5bdac386265bccda052d2bee11b1f5ee5bba7fde6ca67e6fac46ca9" }, "downloads": -1, "filename": "pentapy-1.0.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f1452351a7a401f2dd7e78e1c41cd65a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 206240, "upload_time": "2019-09-18T12:51:08", "url": "https://files.pythonhosted.org/packages/36/d3/8510ba457c8e7f95128b88f4f89341efb6bba483c04edf5fe5ec091aae18/pentapy-1.0.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "078b57825755b65f925266dcac4577d3", "sha256": "dccacbca8c43db7e0030de2c1e5148b17a005aa189421a521582f589a94cdd44" }, "downloads": -1, "filename": "pentapy-1.0.0.tar.gz", "has_sig": false, "md5_digest": "078b57825755b65f925266dcac4577d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 141705, "upload_time": "2019-09-18T12:47:15", "url": "https://files.pythonhosted.org/packages/90/87/ad1594220a28bd0f7dc2cadd4d22619baec1d9386ce90b4ebc998ee86ec7/pentapy-1.0.0.tar.gz" } ], "1.0.0rc1": [ { "comment_text": "", "digests": { "md5": "a1ec2bc927ba71d6035b616210f93c1f", "sha256": "21c00dd999874c4b5e8f1143ce7c2dc213e9d16eeb46325364012e10fa1a9ed1" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a1ec2bc927ba71d6035b616210f93c1f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 305199, "upload_time": "2019-09-17T18:03:22", "url": "https://files.pythonhosted.org/packages/ab/38/1181555609c1fc2409cd557670c3f3b62b1a1cf910cfd65e142be44d9c40/pentapy-1.0.0rc1-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8dc75c623153827497f08bfaa1163c25", "sha256": "85bf32b11e096e84aefe0f4cac80576f871acee3eedffbf7f13a1d0c99dd9085" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8dc75c623153827497f08bfaa1163c25", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 430101, "upload_time": "2019-09-17T17:58:49", "url": "https://files.pythonhosted.org/packages/71/2c/995c03b3e3063281efa0cf12882c962db33d0e6ce0c4cd75d675de204681/pentapy-1.0.0rc1-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "63f71c95f230b54c4222db42f9d3adfd", "sha256": "855cf3740693b32d762817ba889e59e981a42cd0602c6eb34fe270f0062bbc08" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "63f71c95f230b54c4222db42f9d3adfd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 449019, "upload_time": "2019-09-17T17:58:51", "url": "https://files.pythonhosted.org/packages/ca/e0/665cc3d1de4e0957a709637542e2fffb2bbbc04742f740d63e9de2fc5c58/pentapy-1.0.0rc1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7b629a84fe6ea353139897d41d374ae9", "sha256": "1e1ddda511c755622ba496364edebee829c66c52c97e541b0bf424e6a15159f4" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7b629a84fe6ea353139897d41d374ae9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 430028, "upload_time": "2019-09-17T17:58:53", "url": "https://files.pythonhosted.org/packages/c0/58/83f0cc258bca21474ca277d827643ea97f0315c20af5507a4284cfe29d41/pentapy-1.0.0rc1-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ceea98d63aa02e7ee7f22d3c5aabcc14", "sha256": "f4b0be0784ebc38f7f256d03e2d200704f43154605ae30f7d447e8ce3fe889eb" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ceea98d63aa02e7ee7f22d3c5aabcc14", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 448989, "upload_time": "2019-09-17T17:58:55", "url": "https://files.pythonhosted.org/packages/bc/78/404c36c34ca335ff043f7b2ae7008a120f38280155c9e728a689eed363e5/pentapy-1.0.0rc1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "82a6cf80601a69386ad3281bf693fe13", "sha256": "0837d5e2f8e89960a3e3bf7025adcccde15968f8b5b4ed8cef5102852aaebe9f" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "82a6cf80601a69386ad3281bf693fe13", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 198252, "upload_time": "2019-09-17T18:06:14", "url": "https://files.pythonhosted.org/packages/af/50/044f56a01c34df2209af17b41d543aad58845cbb305405369a5df439fba2/pentapy-1.0.0rc1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "cdf7f4fcdb4dcb2d41bf9370fd6de633", "sha256": "6647e0e5e508717d7c18717b210eae70fc8d6ffc39d1ec048f9e838bac664cc1" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "cdf7f4fcdb4dcb2d41bf9370fd6de633", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 211419, "upload_time": "2019-09-17T18:06:15", "url": "https://files.pythonhosted.org/packages/d5/0d/d00ca1cda730b7191e976a574b5eb2d6d40c2a171541e1530aadf670fb6c/pentapy-1.0.0rc1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a1068e988b4dd6468e8c0a2ba275eef2", "sha256": "df33d31a3ffc8d2943ec2188b048494b11dfd70e078887658cce63724465572d" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a1068e988b4dd6468e8c0a2ba275eef2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 295691, "upload_time": "2019-09-17T18:06:43", "url": "https://files.pythonhosted.org/packages/64/66/adcb2e62ac439f9db2e2d97010e82817e69465624ccb7d43be6c7bdba7d7/pentapy-1.0.0rc1-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "64ec69f99db2eb636456eb578ae3f71c", "sha256": "b47b81a4c66f343a47d2d8fcd1398586eb0b8e985611a72b5ea574238cd95574" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "64ec69f99db2eb636456eb578ae3f71c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 428799, "upload_time": "2019-09-17T17:58:05", "url": "https://files.pythonhosted.org/packages/29/f5/c60d368f4ee3624e3d3a45f0a36f1bd5cc35d89d9689f1832d3b5ac9ccaf/pentapy-1.0.0rc1-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "19f97db7c3b2a317ae9a2dd635829c51", "sha256": "7cfb6be2a7290b497accf973281b79c819b53d0e4be3a238b2213bec31e72f21" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "19f97db7c3b2a317ae9a2dd635829c51", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 448549, "upload_time": "2019-09-17T17:58:09", "url": "https://files.pythonhosted.org/packages/b6/c2/c1678170c547b9154b8a74c23490dfbf6cc54081cb10429432882b7ad4e5/pentapy-1.0.0rc1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "40952df2b7e1478d1d23b45a84f54a57", "sha256": "664569c61fb9e03abf4954b4679f8b75603224ec97e3b268c59b2d998254caa9" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "40952df2b7e1478d1d23b45a84f54a57", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 195252, "upload_time": "2019-09-17T18:06:17", "url": "https://files.pythonhosted.org/packages/64/89/cd71d7bbcac605b7e9a72e13331af28b35f9e4fe0b3540315655d79236e9/pentapy-1.0.0rc1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9ba7bccc07ef1127f24391c1b8ae7fa1", "sha256": "d48a2e4cb91656dbf2fd80b1ed35f718fb5461cca126b813820029e0686a0539" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "9ba7bccc07ef1127f24391c1b8ae7fa1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 205779, "upload_time": "2019-09-17T18:06:19", "url": "https://files.pythonhosted.org/packages/79/6d/41ab4f0b23c8f386475a87144a72ace8808d2930fd9f712da2162bba86f2/pentapy-1.0.0rc1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cd2ce56289e3b29c034a968c50905b3e", "sha256": "bff41bf7feab48a7562d8875e4e6cf62057b1e583a3cc3dafe85a320d9a2e7c4" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "cd2ce56289e3b29c034a968c50905b3e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 287972, "upload_time": "2019-09-17T18:06:33", "url": "https://files.pythonhosted.org/packages/fc/05/ca3c025c3edd4d9b51b122124038bfb64a9b2f79354465f9a83631c9195b/pentapy-1.0.0rc1-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "e92ee093c9537be1f7a7fadd4875e68f", "sha256": "eaea2c9dbdae4d7125ae2d0ada2e2bcc251df418d775683bb07db4a8edc3237e" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e92ee093c9537be1f7a7fadd4875e68f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 425137, "upload_time": "2019-09-17T17:58:05", "url": "https://files.pythonhosted.org/packages/f3/d4/ea1011da4a87ad211f6e0b87c98d93ef0434ca06eb21cff14322cc52d32e/pentapy-1.0.0rc1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "bca294d46e033fd42dbb1dbba87883e8", "sha256": "c2a30a759545ad96c092cf7949dbed3353cf6c4186d8fc351a5c4f55fc76b401" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bca294d46e033fd42dbb1dbba87883e8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 448011, "upload_time": "2019-09-17T17:58:08", "url": "https://files.pythonhosted.org/packages/db/a1/3c2c9bd4a46c1ae845294be60d8b6555d0e60b93bb05f7c14da40e677f37/pentapy-1.0.0rc1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fa3ea01111c183c44fc64a5d137183c0", "sha256": "11bfe4add6f0508463650a5e408bb84fb20d9ef7cfa3e835d07a062d760665aa" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "fa3ea01111c183c44fc64a5d137183c0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 192148, "upload_time": "2019-09-17T18:06:21", "url": "https://files.pythonhosted.org/packages/49/f0/332f51f641c7f1a4002c01a73c2172ce1359dc90f230ba9568c33f597d53/pentapy-1.0.0rc1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "ac8d14e3656a4c6e397bb4739f053d3e", "sha256": "ff88e5168397a8c5867836a6ef1e7d07b33c84820f6ac425dcdf5ec7c68408ca" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "ac8d14e3656a4c6e397bb4739f053d3e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 205715, "upload_time": "2019-09-17T18:06:23", "url": "https://files.pythonhosted.org/packages/05/ac/fa543d058f74d2c2a66674b5991f9b1836ef00ffa41af2069913838c57a8/pentapy-1.0.0rc1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d51113a14bcf47f341f74432602472ff", "sha256": "f833bb8a5c219380eb1ecf464414cb8534615c8e4c8c99b6a8538a851b5d8e38" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "d51113a14bcf47f341f74432602472ff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 291917, "upload_time": "2019-09-17T18:09:53", "url": "https://files.pythonhosted.org/packages/48/35/e4a70c50c9fa9986c42295db41aeba2e34a7ac7efb0ee579216adc0411a1/pentapy-1.0.0rc1-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "e8f4eb8a37beda37c1a0bd541f5d08c0", "sha256": "60b45988b6f4e90169446cc769d0d51962b05b004f3dada11e040fac229c9839" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e8f4eb8a37beda37c1a0bd541f5d08c0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 433646, "upload_time": "2019-09-17T18:01:38", "url": "https://files.pythonhosted.org/packages/0c/b3/3ac645ccb0b88d182f4532ef335287c981b95b4d9949ac892375078195d9/pentapy-1.0.0rc1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "4f69184899ec2a60810d2f02d096b511", "sha256": "36ad2306fcead8d358864e453010fbcd17c3d856d421cf807c38f9b03c6501f3" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4f69184899ec2a60810d2f02d096b511", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 456911, "upload_time": "2019-09-17T18:01:40", "url": "https://files.pythonhosted.org/packages/b3/a4/8623fbf9cd1e0af6bb8d0330e022237ce7e15321cc57b35b2f294649d79c/pentapy-1.0.0rc1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0617143c8d1dc4832acb820ae6346895", "sha256": "f0a0c9cce42d3de3ad2bd0ab4bff2cdc39fdb616324c3c2ab1fcd11f42ab2d77" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "0617143c8d1dc4832acb820ae6346895", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 193531, "upload_time": "2019-09-17T18:06:24", "url": "https://files.pythonhosted.org/packages/e6/67/a07d3806a1d386c3d34762e823d377d37a48f6d2619380c15cd6dc03cf5b/pentapy-1.0.0rc1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a18e4392dcf941605d76b120041725ab", "sha256": "c7ebc94bde7bb672971981c22d28cbd75de67828abec4b93033587d05a3d5514" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a18e4392dcf941605d76b120041725ab", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 206608, "upload_time": "2019-09-17T18:06:26", "url": "https://files.pythonhosted.org/packages/c2/9a/fd7996a8d67fa9b43bbf01ec0391d5d9230b45dc830dc40a867bdd843f7c/pentapy-1.0.0rc1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a2efda24f2e13fb84978a127eacf656f", "sha256": "5486c5546e182ac5f813f254f9e5b02037fe929db8418c1de5555632b798a526" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a2efda24f2e13fb84978a127eacf656f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 292163, "upload_time": "2019-09-17T18:10:11", "url": "https://files.pythonhosted.org/packages/0f/3f/380bda0870320825cba8e876b96546a165be73e7a978b3a2ce717892944c/pentapy-1.0.0rc1-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "a74a297e1b1b772a3bb3fe523a94118c", "sha256": "1e696f97d6a2f10964d084994a2d470e826cbfd689fb44a8d775747fe140a0ce" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a74a297e1b1b772a3bb3fe523a94118c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 429857, "upload_time": "2019-09-17T18:01:10", "url": "https://files.pythonhosted.org/packages/0f/dc/da93c0d4bf5b2cb773d9c8a1ac8cd2a803e1ac90185cea0b6c1e3b559c1d/pentapy-1.0.0rc1-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b3996ba12b6e0acb24d6f53dcb897dbb", "sha256": "67101256f6a9ebd27a82e2e80989999eb64305e4700c6bdbbe15a57dd38e0633" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b3996ba12b6e0acb24d6f53dcb897dbb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 454312, "upload_time": "2019-09-17T18:01:12", "url": "https://files.pythonhosted.org/packages/33/0f/9608a78eb0494b02efc49e85de6a142041633863a7b3531b575b682bc00a/pentapy-1.0.0rc1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9e14c382de939419ad368960122d0487", "sha256": "db7b111ef779188e2b33af99f13813bb7773c06bf3921571816321e772b4c62f" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "9e14c382de939419ad368960122d0487", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 193396, "upload_time": "2019-09-17T18:06:28", "url": "https://files.pythonhosted.org/packages/71/e9/e5f51d8cddd9600ed25827727a472f06e083a9f5f6617f0c43654910b3c2/pentapy-1.0.0rc1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b8f47d3a4d41648baa830d22d050b144", "sha256": "29b9f3cc78f8fe5ab14d62319f47a57b033c5986d7b8b3a3644008f8908cbdbb" }, "downloads": -1, "filename": "pentapy-1.0.0rc1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b8f47d3a4d41648baa830d22d050b144", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 206280, "upload_time": "2019-09-17T18:06:30", "url": "https://files.pythonhosted.org/packages/ad/24/9123325bb41a65903d2199e960582523dafb89eb74f793b995aba3e86cfd/pentapy-1.0.0rc1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "bb3b66e9b9f91e9f4f8a9e105ef2534a", "sha256": "ec66d0c34de588a3075566dcfa20f49d8ade84476520ef2de65345376d92b710" }, "downloads": -1, "filename": "pentapy-1.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "bb3b66e9b9f91e9f4f8a9e105ef2534a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 141726, "upload_time": "2019-09-17T18:01:43", "url": "https://files.pythonhosted.org/packages/14/08/37e8040e4a546da2a87362ae85e7a41b295f0f544794a226018fd7a51ed0/pentapy-1.0.0rc1.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "17e369d704b6ffc64f1861ff496d0607", "sha256": "6167bef130aefeee7967b37a593ce93a1104a225e4e6f711fccf161182481095" }, "downloads": -1, "filename": "pentapy-1.0.1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "17e369d704b6ffc64f1861ff496d0607", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 305670, "upload_time": "2019-10-02T10:46:45", "url": "https://files.pythonhosted.org/packages/95/19/6e69f4e81d63495dca2e2959d50ce3af74bceb93eb522580d3d64d6c5514/pentapy-1.0.1-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "d00c223d4fdb66f38064a9ce88919170", "sha256": "ffbfde5934fa675578a2a8fbb912716430578e3b74bef5e72ba792314a669c6a" }, "downloads": -1, "filename": "pentapy-1.0.1-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d00c223d4fdb66f38064a9ce88919170", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 430588, "upload_time": "2019-10-02T10:44:01", "url": "https://files.pythonhosted.org/packages/c5/7a/e1f8c229985f06a90d6c89a942d5272c55741b046fb5380ee8ea5c90a6fb/pentapy-1.0.1-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "342634cb373251287e1b5385b2e90706", "sha256": "39e1c5c28e5f9026ebf49977ce3497d53b81637291b19a11bf0753d706818a72" }, "downloads": -1, "filename": "pentapy-1.0.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "342634cb373251287e1b5385b2e90706", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 449479, "upload_time": "2019-10-02T10:44:03", "url": "https://files.pythonhosted.org/packages/a4/85/fd35c51ed2a1cf947b19585369d5313db8ed75c6f2cd0a990c3259161a23/pentapy-1.0.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "75a89285de0294316af66f5155e8c790", "sha256": "054d447f5c069c37cab6a58f4b8b00bf2ece9c4bbdc9a98ae0c7ca3b5dc943bd" }, "downloads": -1, "filename": "pentapy-1.0.1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "75a89285de0294316af66f5155e8c790", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 430517, "upload_time": "2019-10-02T10:44:05", "url": "https://files.pythonhosted.org/packages/c0/23/a7a7fa69cce37a37fffe87f171b6534b29da1868eedf89ae4a8f23323bd9/pentapy-1.0.1-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "719c07f3465e454a4ff2ce9e8409b1e1", "sha256": "3deee3cabf7b03dc1efb3be8664335ecc3e86942145c49f6c6de807084675fe6" }, "downloads": -1, "filename": "pentapy-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "719c07f3465e454a4ff2ce9e8409b1e1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 449472, "upload_time": "2019-10-02T10:44:07", "url": "https://files.pythonhosted.org/packages/c0/92/ebaf9fc9f70147fa927fc1f8b190d00ad871bb70f27ec3bcce4c09e4a8f6/pentapy-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6d3c110c6e8e702f10b14dbcee0ac786", "sha256": "56e21781130300fbb6c143a5384e3499325bf3062e81e1fc5f3f051775429cd8" }, "downloads": -1, "filename": "pentapy-1.0.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "6d3c110c6e8e702f10b14dbcee0ac786", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 198726, "upload_time": "2019-10-02T10:46:24", "url": "https://files.pythonhosted.org/packages/f1/59/9fc7a2724dfdd1356fdc435d2fb925525ba1568164212e4988e932785872/pentapy-1.0.1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "eaa3a6ed86000462f675722ef184b191", "sha256": "b81f3aae19ff828ad55f09bfcd79a66cfe7b9394dea27b0fbce4c91197d101cf" }, "downloads": -1, "filename": "pentapy-1.0.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "eaa3a6ed86000462f675722ef184b191", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 211890, "upload_time": "2019-10-02T10:46:26", "url": "https://files.pythonhosted.org/packages/f5/a3/f2157e346251d143114b8cf0c474e22eb57a3b4274b519e60f421d1f85b4/pentapy-1.0.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fe90deb04f65e227435137a8f6b48b36", "sha256": "e6980a35e2747156641b8b5371df0a6eced3ee9b109252c3ee4c5a060b6e9b84" }, "downloads": -1, "filename": "pentapy-1.0.1-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "fe90deb04f65e227435137a8f6b48b36", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 296166, "upload_time": "2019-10-02T10:46:55", "url": "https://files.pythonhosted.org/packages/54/86/fd7f1658ca5c28fcea6cd45aa1d8992a0a85545479a0f646ed212105fba6/pentapy-1.0.1-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "76495e8b735b8c777729e7ec8fec7064", "sha256": "fee7df970f395a657813ac97e17bf43564510fce29a2908c7c8c8110d45afe83" }, "downloads": -1, "filename": "pentapy-1.0.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "76495e8b735b8c777729e7ec8fec7064", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 429290, "upload_time": "2019-10-02T10:43:34", "url": "https://files.pythonhosted.org/packages/25/c7/2e8a07efc2bb32ba61821d05f8be1e6b427af9b1aaacae3bf59dfc8c0a14/pentapy-1.0.1-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b056f9457fb66777f0fea3610f3f6fb6", "sha256": "a96c61f57c62919127a5b5fe6b95278ac21fe1d55921c7c698f4368be4486430" }, "downloads": -1, "filename": "pentapy-1.0.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b056f9457fb66777f0fea3610f3f6fb6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 449030, "upload_time": "2019-10-02T10:43:36", "url": "https://files.pythonhosted.org/packages/4d/3e/0d06e20d5d2842970a8909e17134e6b9734e73d9fde05a4d54abf6684b9f/pentapy-1.0.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9f847064055b9642273d9b37198777aa", "sha256": "64b10d6224f21744b703f03d4406fffdf95d7c52f574f78d513e3b6e39c8f96e" }, "downloads": -1, "filename": "pentapy-1.0.1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "9f847064055b9642273d9b37198777aa", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 195727, "upload_time": "2019-10-02T10:46:28", "url": "https://files.pythonhosted.org/packages/62/81/bb113b4a5015dbddee3636a907b7f92a4f3464e23abe00c1da41cc825ec6/pentapy-1.0.1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4280274b3581274ffa9dc77fc495fb8a", "sha256": "a7ecf12543a06eb18ba76fdf0274fcd2e5ed962410ddaff0510ef5a89353540e" }, "downloads": -1, "filename": "pentapy-1.0.1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "4280274b3581274ffa9dc77fc495fb8a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 206257, "upload_time": "2019-10-02T10:46:29", "url": "https://files.pythonhosted.org/packages/80/56/3110933cc2af5a8aa3f5e1f5163f36095646ea2ee4273a58b12b7d48ef12/pentapy-1.0.1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ee3afe963d66010c104dd4aefbc80514", "sha256": "040093c3e0b5ae10538aa33012a1d2d1e8707130fc634f559f1b7bf386820d64" }, "downloads": -1, "filename": "pentapy-1.0.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ee3afe963d66010c104dd4aefbc80514", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 288447, "upload_time": "2019-10-02T10:49:52", "url": "https://files.pythonhosted.org/packages/05/aa/ed2aee24d62746ce95e2886321bd7b3cb4c88ff980d325acace011f1efcd/pentapy-1.0.1-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "2e069e6b61b93d3fe9016cda41939988", "sha256": "7962ba1e90777e39df270814b05785ff298a38a3eabee9057c1bebd2d4c4da1f" }, "downloads": -1, "filename": "pentapy-1.0.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2e069e6b61b93d3fe9016cda41939988", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 425631, "upload_time": "2019-10-02T10:43:35", "url": "https://files.pythonhosted.org/packages/6d/20/61f7d0b84f8c27dfec7ddfd6a6ddc9c1f7f630689c096bdae261635a4e3c/pentapy-1.0.1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "a07dfa45c78acf57e6d4ad18bc06ad40", "sha256": "de4bdcecc04ed0b6b389243bd02fa744f0d81882adbc8d74a7ddcc04a3409e76" }, "downloads": -1, "filename": "pentapy-1.0.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a07dfa45c78acf57e6d4ad18bc06ad40", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 448510, "upload_time": "2019-10-02T10:43:38", "url": "https://files.pythonhosted.org/packages/2d/39/af7eb64aa8466204cd7e8713abc0805e3662b682bd0b23543699fcda6c90/pentapy-1.0.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "97b5f0d306a80268b442b6fbf1926452", "sha256": "4d038789bed47c5aa3ff0bbfb18d2c9b90cc2f378bd24c3bcbcefd097c64e9bc" }, "downloads": -1, "filename": "pentapy-1.0.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "97b5f0d306a80268b442b6fbf1926452", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 192624, "upload_time": "2019-10-02T10:46:31", "url": "https://files.pythonhosted.org/packages/18/50/923a7a46a81560d52f883e355b8ed84c4d0d008c3e656a1159bff16dc74f/pentapy-1.0.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "f1ad12444b32ce7078d1e977de906f52", "sha256": "4fdfe7078ea79ed746605e52f83547ce6416acf9c26a620b8c439b425e85617f" }, "downloads": -1, "filename": "pentapy-1.0.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f1ad12444b32ce7078d1e977de906f52", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 206190, "upload_time": "2019-10-02T10:46:33", "url": "https://files.pythonhosted.org/packages/39/76/6a191b03c0a076e568b52456069c2d7617a67aa457a50f7f12e095bf6bf3/pentapy-1.0.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "75e36420b2f36c081d98ee24ed54fe7f", "sha256": "72a43e9fe3c32595e36f4a12fa4802f49a3e8a7671f6bdfb1ec3c58aab0a7c81" }, "downloads": -1, "filename": "pentapy-1.0.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "75e36420b2f36c081d98ee24ed54fe7f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 292392, "upload_time": "2019-10-02T10:49:53", "url": "https://files.pythonhosted.org/packages/ba/3d/108760e5c90ae8c4d5d9a6baebb62efe781dff0df0cbbf6ea3dee0c4d7a1/pentapy-1.0.1-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "87233707a38ced48343ae0b9de506b25", "sha256": "3a5bb520d73f19703ce4307c9f51a3a85e0a3f4228b03fba0809d169c8feb016" }, "downloads": -1, "filename": "pentapy-1.0.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "87233707a38ced48343ae0b9de506b25", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 434139, "upload_time": "2019-10-02T10:45:01", "url": "https://files.pythonhosted.org/packages/b3/06/acce34e2c8eaee0bc436095b2ea4866ebc33ef0ba53ff10d4d9c8c066bed/pentapy-1.0.1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "6219f03ebed5fe768ce799d3b915d620", "sha256": "350b68df1c2029871ef1f867ee29e61f951dc85c9636305c98490109c56bde4d" }, "downloads": -1, "filename": "pentapy-1.0.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6219f03ebed5fe768ce799d3b915d620", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 457401, "upload_time": "2019-10-02T10:45:03", "url": "https://files.pythonhosted.org/packages/03/79/a9838d135344f8a0dcea234d197d40d0bcd487e343e745b4d22cf430e985/pentapy-1.0.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "eef80ae41ba1b354260dcb564c128868", "sha256": "6e417b5adc03dbd67f528e29444c3a9db11f25a8b66fe3b3d44b0ab7805e3cb9" }, "downloads": -1, "filename": "pentapy-1.0.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "eef80ae41ba1b354260dcb564c128868", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 194005, "upload_time": "2019-10-02T10:46:35", "url": "https://files.pythonhosted.org/packages/5a/8f/c90aeb1fa0c036d8b829fd93c19ad9f09ccbdf6cfb48c6fd48672458b44e/pentapy-1.0.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "976d7e64788b2f7de120804b6b606a6d", "sha256": "9b6fe56dbedd49fd927e987cab1569cfb1f9edf4fd4bfdc3f2b985042c3048ea" }, "downloads": -1, "filename": "pentapy-1.0.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "976d7e64788b2f7de120804b6b606a6d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 207085, "upload_time": "2019-10-02T10:46:36", "url": "https://files.pythonhosted.org/packages/8b/6b/e1160807d48c1c0331218868f45e576a25697c6436259236e8e31f4cd0f3/pentapy-1.0.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7dd5f12181aa2a9e7198cdca58015e6e", "sha256": "a1273549b7cb23613d19abebf044a3bcb7204b826ae95f6e1e0b5fed85440aeb" }, "downloads": -1, "filename": "pentapy-1.0.1-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "7dd5f12181aa2a9e7198cdca58015e6e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 292638, "upload_time": "2019-10-02T10:53:10", "url": "https://files.pythonhosted.org/packages/2f/77/17d8743bc6d74b67e48afd3f326962e2fa9bc60a3bac4b22639d2a0604cc/pentapy-1.0.1-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "a5fb08c1f5cca9738f337a8b881bd4d3", "sha256": "71918b9445b43b1fca4f7dc883753a4ce7171d8e03228d011a1a5a8fcd207d2b" }, "downloads": -1, "filename": "pentapy-1.0.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a5fb08c1f5cca9738f337a8b881bd4d3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 430363, "upload_time": "2019-10-02T10:44:36", "url": "https://files.pythonhosted.org/packages/74/c1/ef1ae84109661bf0435c110df2f391f96a473a59e3a296a2975967fbe533/pentapy-1.0.1-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "99698c2fe1a138120b48ef149797a8f3", "sha256": "e52d2c8bce23713dfe91213aea6148503a8231fa1031ac28a105ccd64f8cbb53" }, "downloads": -1, "filename": "pentapy-1.0.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "99698c2fe1a138120b48ef149797a8f3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 454821, "upload_time": "2019-10-02T10:44:38", "url": "https://files.pythonhosted.org/packages/56/36/037334a1ff8648406bddaa5316564e77d959316a0fecd10bbc15801c75b2/pentapy-1.0.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "df54d2e314830f7272a5ec06c33f0e3d", "sha256": "73ff5eec947f605871e5f0b5763a3bbcde7986b8afaf2067a32224c8f0c3c5c2" }, "downloads": -1, "filename": "pentapy-1.0.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "df54d2e314830f7272a5ec06c33f0e3d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 193872, "upload_time": "2019-10-02T10:46:38", "url": "https://files.pythonhosted.org/packages/d6/ee/6dee8ef6ded7aa4de8110dba6af666395dc4a26763c415be52682d6c3aac/pentapy-1.0.1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "06564e2f550401c968b384cc08202082", "sha256": "103e5aef0bba1014e19c8405eb5b822dc2f34d49dfeed6589c9360de407696ce" }, "downloads": -1, "filename": "pentapy-1.0.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "06564e2f550401c968b384cc08202082", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 206754, "upload_time": "2019-10-02T10:46:40", "url": "https://files.pythonhosted.org/packages/78/60/899c15a97cfb3cc52d38e518aeab4a905d8fcfa5a280c015459fdbbeef46/pentapy-1.0.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b03f439f70c99e81097891327a019e35", "sha256": "e3dcf5685cac90cff4739b2a8e4353ae81ca2501c20ecc76b61d9e98fd1c1813" }, "downloads": -1, "filename": "pentapy-1.0.1.tar.gz", "has_sig": false, "md5_digest": "b03f439f70c99e81097891327a019e35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142701, "upload_time": "2019-10-02T10:45:06", "url": "https://files.pythonhosted.org/packages/4e/6d/9f44dbdecb92ac44de5935369e4afbbb360364dd3bbe4d29d59570bcdd90/pentapy-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "3e1451028c5f3bb9fd1e420e83cfe1a9", "sha256": "268c9bcb5d1ee8d3a5908d66385f5ced70d32a9165e4fe17769c179c74c6539e" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "3e1451028c5f3bb9fd1e420e83cfe1a9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 305674, "upload_time": "2019-10-02T11:18:20", "url": "https://files.pythonhosted.org/packages/85/54/93896e16987cfff4d2c314a96f80b6d4da4e4ee1401893717cfb93d2b6d1/pentapy-1.0.2-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "af466ea4c8ca09077f49720e7d6dc60c", "sha256": "47a4767786e2d2936efc46e84c50149a7543bdd18d57b34d4113b0007d4c84ce" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "af466ea4c8ca09077f49720e7d6dc60c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 430579, "upload_time": "2019-10-02T11:16:06", "url": "https://files.pythonhosted.org/packages/b4/e5/13353b1ae23a07a0859dfd48278d881019e021302d3c87ab243817b81c3a/pentapy-1.0.2-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b5b2845e26bd97cea394746b8a5f0639", "sha256": "4a99322d5c7823ca6351042383e1d2e5907407a0749e9ea5ddfa0b5f717659a6" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b5b2845e26bd97cea394746b8a5f0639", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 449479, "upload_time": "2019-10-02T11:16:07", "url": "https://files.pythonhosted.org/packages/25/01/4fb6f1e0076d165c893a219842d69b268183c1e85478bf5d0d6a8b8e021b/pentapy-1.0.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ef554737431f6b1001e95e0bb876eef9", "sha256": "cb2ee3d85e336a2d2b1f6108af0e661c294d15920ab9b9d6333595e9c22b4e92" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ef554737431f6b1001e95e0bb876eef9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 430522, "upload_time": "2019-10-02T11:16:09", "url": "https://files.pythonhosted.org/packages/8f/7f/e4cf2a2117922113b7cdb0981da64e8cc59f78ace5663ff6dacf9f4aaa53/pentapy-1.0.2-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "71ce67583d3fc710293b12205e2d8aad", "sha256": "c7829990a2ca2a4d7bbb0d3d590908a8cff6e53203aaf7eafe19b2099a7512e9" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "71ce67583d3fc710293b12205e2d8aad", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 449483, "upload_time": "2019-10-02T11:16:11", "url": "https://files.pythonhosted.org/packages/cf/64/a78be30009557f5b37f2f5821e6d85f0ab025fa63f2d3b617be7fc3f53a9/pentapy-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d2acc05a4a6547d2f4dfecfccac8db33", "sha256": "65019154a485d562a36059261941acc41794b4dcee17ee6aaf6c86572e2298f2" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "d2acc05a4a6547d2f4dfecfccac8db33", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 198730, "upload_time": "2019-10-02T11:19:44", "url": "https://files.pythonhosted.org/packages/29/8f/7d97d5887760e8505e3b87215ea2c5911e2ba59ddb4933016a76da0d919f/pentapy-1.0.2-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a1c98df954c25d5fd207903aa3d49bbd", "sha256": "a413b7556b29b8f17c1324aae82fd979074ddb9e533d22bbf8b5ffb0e8c22289" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "a1c98df954c25d5fd207903aa3d49bbd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 211893, "upload_time": "2019-10-02T11:19:46", "url": "https://files.pythonhosted.org/packages/cc/38/b8afc61c59030b6f7f29fd87a66b4397e2e662dde10af98aa6a4c59ef520/pentapy-1.0.2-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2a67cb374e7ed088efd107dc3d526912", "sha256": "7d4f05e329f1cec9b443060974b61b58fdb31daacbc6e5ae008684f678d19273" }, "downloads": -1, "filename": "pentapy-1.0.2-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "2a67cb374e7ed088efd107dc3d526912", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 296163, "upload_time": "2019-10-02T11:18:41", "url": "https://files.pythonhosted.org/packages/d7/0d/54dedacbc7cf1ddf4d271e50ae6cd3b4c011b67a4fe013d7d070f3f0d96b/pentapy-1.0.2-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "bbc24dfa51823d78a7697feffa7d79fb", "sha256": "0f3645c99b2fc27b2ba483e484cd38043b7b40d8447b7fec5f512074354dea71" }, "downloads": -1, "filename": "pentapy-1.0.2-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bbc24dfa51823d78a7697feffa7d79fb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 429287, "upload_time": "2019-10-02T11:15:19", "url": "https://files.pythonhosted.org/packages/c6/56/6b8cd702e4b83601a3f2291a82abcd78d859628744ff8e58c51218426230/pentapy-1.0.2-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "438e128b91df067fe2268f300eb75637", "sha256": "c0617042c20435ea9401e88cdd63d5e2db302cccbc98efe385041fa66402b79f" }, "downloads": -1, "filename": "pentapy-1.0.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "438e128b91df067fe2268f300eb75637", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 449033, "upload_time": "2019-10-02T11:15:22", "url": "https://files.pythonhosted.org/packages/b9/a0/30dacde0a2856419b716452480a1b88b6d7f275ffa10baa43e1d405bc5e5/pentapy-1.0.2-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f0c2b6e5d00aa0a873fdf75dc1a8d201", "sha256": "309ccc29276c7295fd6deb80370de0fcf711db07df2722f20ca5934abfaad7ad" }, "downloads": -1, "filename": "pentapy-1.0.2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "f0c2b6e5d00aa0a873fdf75dc1a8d201", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 195728, "upload_time": "2019-10-02T11:19:48", "url": "https://files.pythonhosted.org/packages/38/73/b4256f59c68c4c16647ed03fa16a3cbb71958c48d5397cc17b7e44a42dff/pentapy-1.0.2-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c89bb027aeb7b443f195f1cb12ed25a0", "sha256": "f22c24f9820c2c320da8897f046b55416980a8ba3175a69bb61b89f475fa577f" }, "downloads": -1, "filename": "pentapy-1.0.2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "c89bb027aeb7b443f195f1cb12ed25a0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 206255, "upload_time": "2019-10-02T11:19:49", "url": "https://files.pythonhosted.org/packages/ca/e0/40589b0ceb26188fc658522054be0ea0709c00b2dc4563cb4f98e6f17717/pentapy-1.0.2-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c2b7a2197ac79a5154173d307482c176", "sha256": "8f15eebf92480401fcb8ca80f6560a7388db0ebb23acd018aa448b5ed3ca2308" }, "downloads": -1, "filename": "pentapy-1.0.2-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "c2b7a2197ac79a5154173d307482c176", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 288447, "upload_time": "2019-10-02T11:21:36", "url": "https://files.pythonhosted.org/packages/be/c6/1e33abd919ea67802f23562c9ec550eda3e67184bd400111ab3f5bb5c2dc/pentapy-1.0.2-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "1090971bb0e5708af125b9fbadfe7bda", "sha256": "afa7bf0ee18531176ade17b1284e0cce1f0bb1b3a6c8e651d44a140d0ce88c75" }, "downloads": -1, "filename": "pentapy-1.0.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1090971bb0e5708af125b9fbadfe7bda", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 425631, "upload_time": "2019-10-02T11:15:24", "url": "https://files.pythonhosted.org/packages/1a/03/e2293a412e6e8fd6eb6ff7601f05ae5911edf0abf2ffedaaee7c55675bc1/pentapy-1.0.2-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "0ea183d91324039d0a63a1c567890c3c", "sha256": "238c948e9a51aa62b6e844b6512d95df1cc9717f75d344c5e6d7758b9d8a339c" }, "downloads": -1, "filename": "pentapy-1.0.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0ea183d91324039d0a63a1c567890c3c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 448524, "upload_time": "2019-10-02T11:15:26", "url": "https://files.pythonhosted.org/packages/c8/45/05aa00e1781b5509f7d8c9e5b90344ce77ec0632f3c0f8bf5431d62bd7af/pentapy-1.0.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c47a337c339d24aee726a4dc614a17ef", "sha256": "6e520abfd7226872b19413d242a547fe8e7b45ee3ea9f759df2395fc6ffd2170" }, "downloads": -1, "filename": "pentapy-1.0.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "c47a337c339d24aee726a4dc614a17ef", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 192623, "upload_time": "2019-10-02T11:19:51", "url": "https://files.pythonhosted.org/packages/d7/1f/a83d641e49034bba9bece5015868b8d10ae0c558269b295ce308bf080849/pentapy-1.0.2-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "6843b52da215c8d0d64e6f6c77cc4060", "sha256": "36892a969d5ab58d44bdaf720ceb1c5f60e8caf91141184e307dc3022a3d49ff" }, "downloads": -1, "filename": "pentapy-1.0.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "6843b52da215c8d0d64e6f6c77cc4060", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 206189, "upload_time": "2019-10-02T11:19:53", "url": "https://files.pythonhosted.org/packages/ff/c4/fcd630d3a8c9ef42c32cb561523bde62b0ff9cb3112957a2d09ba6f71d82/pentapy-1.0.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7f287b28a5678916480d286224fd8def", "sha256": "bea29429eee7e3182b2a6e41f8efb62991c81edaff8c184aa59f7dd0035353ed" }, "downloads": -1, "filename": "pentapy-1.0.2-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "7f287b28a5678916480d286224fd8def", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 292391, "upload_time": "2019-10-02T11:22:09", "url": "https://files.pythonhosted.org/packages/5e/81/8a04eef7414dd55468702608d08766c3d41a6245526242636635180148a7/pentapy-1.0.2-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8c6edce5d2651b0e5f3a1de3912abdf9", "sha256": "7dcffe81fe23dae680a2586fd6505b067c0a57ab0a99f02ad9aff20ab850fa32" }, "downloads": -1, "filename": "pentapy-1.0.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8c6edce5d2651b0e5f3a1de3912abdf9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 434152, "upload_time": "2019-10-02T11:15:51", "url": "https://files.pythonhosted.org/packages/86/3f/f5d93f90c04a1195459ff64fadadd02232437db34083cce0fdbc6774839b/pentapy-1.0.2-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "a5c62bbc43e6f44e7fe7dc29c4fc0899", "sha256": "499b0e3f09818eff5581246712cc2b513c0a233b495ec5ed9b812f41cf139e34" }, "downloads": -1, "filename": "pentapy-1.0.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a5c62bbc43e6f44e7fe7dc29c4fc0899", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 457395, "upload_time": "2019-10-02T11:15:52", "url": "https://files.pythonhosted.org/packages/b7/9e/1c8be50204ec3239bbea7e87b93a5066c329f298e220506a27efc4894a3d/pentapy-1.0.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e28330bd31a89250bb9a9ff61099db28", "sha256": "16ebc7c1e7f7ec8cc6c4edac60378af8ed5f4ce1b68f455847fd3b413b00a624" }, "downloads": -1, "filename": "pentapy-1.0.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "e28330bd31a89250bb9a9ff61099db28", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 194006, "upload_time": "2019-10-02T11:19:54", "url": "https://files.pythonhosted.org/packages/ab/b6/2536d87020c397d937bc39bdc3486758f030976f4553e9f1262abab156d3/pentapy-1.0.2-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "31eee893024bcc9bd031901a70aa268c", "sha256": "a35a7bb84ce3049f74472bccc9eb544d7e8533223cae127b9346299ff21ac2df" }, "downloads": -1, "filename": "pentapy-1.0.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "31eee893024bcc9bd031901a70aa268c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 207086, "upload_time": "2019-10-02T11:19:57", "url": "https://files.pythonhosted.org/packages/d6/e2/65bea05b3695ca2fc186759cf9c37859e2c46ed30ba6ccc56c352722467e/pentapy-1.0.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "bb6cd7a61597e760fbaba7cd1cfc0e4b", "sha256": "e0ef1f24c060fdbef1a142ff674690b0e8a33693a70ad1321d643ff3172ddf78" }, "downloads": -1, "filename": "pentapy-1.0.2-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "bb6cd7a61597e760fbaba7cd1cfc0e4b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 292641, "upload_time": "2019-10-02T11:24:53", "url": "https://files.pythonhosted.org/packages/81/97/2973ee1120e0be6060abf607bf99cf6216dd2331bf2707e91471ce3b4f6a/pentapy-1.0.2-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8bc36fed21708d1a624f609b7c9d20ce", "sha256": "65f66d38a9a0e7e860d89351368ec782ad1619300562d3e50bcf91f0c0ab1d42" }, "downloads": -1, "filename": "pentapy-1.0.2-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8bc36fed21708d1a624f609b7c9d20ce", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 430334, "upload_time": "2019-10-02T11:15:24", "url": "https://files.pythonhosted.org/packages/34/b5/b2a5638cac469e1e7ff458c98f3273dec5b4d85670478952cd484ef77215/pentapy-1.0.2-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7fdd079b11fd3120032d3ccc29dbe18a", "sha256": "0e104cd5a99497f6760a83665fae7148f1628226d3f4c7113983d8664dd6c2fb" }, "downloads": -1, "filename": "pentapy-1.0.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7fdd079b11fd3120032d3ccc29dbe18a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 454812, "upload_time": "2019-10-02T11:15:28", "url": "https://files.pythonhosted.org/packages/3e/3a/62b9db61030ed12f2cc89a9d528ee2573b4047f5f30661dd74284cddcbb1/pentapy-1.0.2-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5e3fe29dfec5761edc94c2bb3ef9cc7b", "sha256": "b6d6fb09631a935b79d13347ba823508cb475faa64f89378a193232dbe78ed7d" }, "downloads": -1, "filename": "pentapy-1.0.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "5e3fe29dfec5761edc94c2bb3ef9cc7b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 193873, "upload_time": "2019-10-02T11:19:58", "url": "https://files.pythonhosted.org/packages/46/68/2854c11a747bc95e1bbbc55a0ea4a38db5d74c3cf3699a095503cbf1f7e9/pentapy-1.0.2-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1c05b7f13127a7214874186662e01ab8", "sha256": "1e18b1a512dbf6a531024bb1436511c8723fad34bc71ce523290b676bec22c6e" }, "downloads": -1, "filename": "pentapy-1.0.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1c05b7f13127a7214874186662e01ab8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 206755, "upload_time": "2019-10-02T11:20:00", "url": "https://files.pythonhosted.org/packages/0f/80/fad328fe4c64ec6669a4e44cea0296a34134e5a27ed083ef6da60bb10123/pentapy-1.0.2-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "817557f284d644c864da87a7b59a7fb1", "sha256": "3da011098487987f546eff8128d15c789af399130ee2ede9b86c1d4aecfead09" }, "downloads": -1, "filename": "pentapy-1.0.2.tar.gz", "has_sig": false, "md5_digest": "817557f284d644c864da87a7b59a7fb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142688, "upload_time": "2019-10-02T11:15:55", "url": "https://files.pythonhosted.org/packages/11/bd/f23327d0d45202967ce0c32e8af6261ea22fd24a6633066a0004fae3c628/pentapy-1.0.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3e1451028c5f3bb9fd1e420e83cfe1a9", "sha256": "268c9bcb5d1ee8d3a5908d66385f5ced70d32a9165e4fe17769c179c74c6539e" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "3e1451028c5f3bb9fd1e420e83cfe1a9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 305674, "upload_time": "2019-10-02T11:18:20", "url": "https://files.pythonhosted.org/packages/85/54/93896e16987cfff4d2c314a96f80b6d4da4e4ee1401893717cfb93d2b6d1/pentapy-1.0.2-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "af466ea4c8ca09077f49720e7d6dc60c", "sha256": "47a4767786e2d2936efc46e84c50149a7543bdd18d57b34d4113b0007d4c84ce" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "af466ea4c8ca09077f49720e7d6dc60c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 430579, "upload_time": "2019-10-02T11:16:06", "url": "https://files.pythonhosted.org/packages/b4/e5/13353b1ae23a07a0859dfd48278d881019e021302d3c87ab243817b81c3a/pentapy-1.0.2-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b5b2845e26bd97cea394746b8a5f0639", "sha256": "4a99322d5c7823ca6351042383e1d2e5907407a0749e9ea5ddfa0b5f717659a6" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b5b2845e26bd97cea394746b8a5f0639", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 449479, "upload_time": "2019-10-02T11:16:07", "url": "https://files.pythonhosted.org/packages/25/01/4fb6f1e0076d165c893a219842d69b268183c1e85478bf5d0d6a8b8e021b/pentapy-1.0.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ef554737431f6b1001e95e0bb876eef9", "sha256": "cb2ee3d85e336a2d2b1f6108af0e661c294d15920ab9b9d6333595e9c22b4e92" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ef554737431f6b1001e95e0bb876eef9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 430522, "upload_time": "2019-10-02T11:16:09", "url": "https://files.pythonhosted.org/packages/8f/7f/e4cf2a2117922113b7cdb0981da64e8cc59f78ace5663ff6dacf9f4aaa53/pentapy-1.0.2-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "71ce67583d3fc710293b12205e2d8aad", "sha256": "c7829990a2ca2a4d7bbb0d3d590908a8cff6e53203aaf7eafe19b2099a7512e9" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "71ce67583d3fc710293b12205e2d8aad", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 449483, "upload_time": "2019-10-02T11:16:11", "url": "https://files.pythonhosted.org/packages/cf/64/a78be30009557f5b37f2f5821e6d85f0ab025fa63f2d3b617be7fc3f53a9/pentapy-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d2acc05a4a6547d2f4dfecfccac8db33", "sha256": "65019154a485d562a36059261941acc41794b4dcee17ee6aaf6c86572e2298f2" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "d2acc05a4a6547d2f4dfecfccac8db33", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 198730, "upload_time": "2019-10-02T11:19:44", "url": "https://files.pythonhosted.org/packages/29/8f/7d97d5887760e8505e3b87215ea2c5911e2ba59ddb4933016a76da0d919f/pentapy-1.0.2-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a1c98df954c25d5fd207903aa3d49bbd", "sha256": "a413b7556b29b8f17c1324aae82fd979074ddb9e533d22bbf8b5ffb0e8c22289" }, "downloads": -1, "filename": "pentapy-1.0.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "a1c98df954c25d5fd207903aa3d49bbd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 211893, "upload_time": "2019-10-02T11:19:46", "url": "https://files.pythonhosted.org/packages/cc/38/b8afc61c59030b6f7f29fd87a66b4397e2e662dde10af98aa6a4c59ef520/pentapy-1.0.2-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2a67cb374e7ed088efd107dc3d526912", "sha256": "7d4f05e329f1cec9b443060974b61b58fdb31daacbc6e5ae008684f678d19273" }, "downloads": -1, "filename": "pentapy-1.0.2-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "2a67cb374e7ed088efd107dc3d526912", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 296163, "upload_time": "2019-10-02T11:18:41", "url": "https://files.pythonhosted.org/packages/d7/0d/54dedacbc7cf1ddf4d271e50ae6cd3b4c011b67a4fe013d7d070f3f0d96b/pentapy-1.0.2-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "bbc24dfa51823d78a7697feffa7d79fb", "sha256": "0f3645c99b2fc27b2ba483e484cd38043b7b40d8447b7fec5f512074354dea71" }, "downloads": -1, "filename": "pentapy-1.0.2-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bbc24dfa51823d78a7697feffa7d79fb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 429287, "upload_time": "2019-10-02T11:15:19", "url": "https://files.pythonhosted.org/packages/c6/56/6b8cd702e4b83601a3f2291a82abcd78d859628744ff8e58c51218426230/pentapy-1.0.2-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "438e128b91df067fe2268f300eb75637", "sha256": "c0617042c20435ea9401e88cdd63d5e2db302cccbc98efe385041fa66402b79f" }, "downloads": -1, "filename": "pentapy-1.0.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "438e128b91df067fe2268f300eb75637", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 449033, "upload_time": "2019-10-02T11:15:22", "url": "https://files.pythonhosted.org/packages/b9/a0/30dacde0a2856419b716452480a1b88b6d7f275ffa10baa43e1d405bc5e5/pentapy-1.0.2-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f0c2b6e5d00aa0a873fdf75dc1a8d201", "sha256": "309ccc29276c7295fd6deb80370de0fcf711db07df2722f20ca5934abfaad7ad" }, "downloads": -1, "filename": "pentapy-1.0.2-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "f0c2b6e5d00aa0a873fdf75dc1a8d201", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 195728, "upload_time": "2019-10-02T11:19:48", "url": "https://files.pythonhosted.org/packages/38/73/b4256f59c68c4c16647ed03fa16a3cbb71958c48d5397cc17b7e44a42dff/pentapy-1.0.2-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c89bb027aeb7b443f195f1cb12ed25a0", "sha256": "f22c24f9820c2c320da8897f046b55416980a8ba3175a69bb61b89f475fa577f" }, "downloads": -1, "filename": "pentapy-1.0.2-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "c89bb027aeb7b443f195f1cb12ed25a0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 206255, "upload_time": "2019-10-02T11:19:49", "url": "https://files.pythonhosted.org/packages/ca/e0/40589b0ceb26188fc658522054be0ea0709c00b2dc4563cb4f98e6f17717/pentapy-1.0.2-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c2b7a2197ac79a5154173d307482c176", "sha256": "8f15eebf92480401fcb8ca80f6560a7388db0ebb23acd018aa448b5ed3ca2308" }, "downloads": -1, "filename": "pentapy-1.0.2-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "c2b7a2197ac79a5154173d307482c176", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 288447, "upload_time": "2019-10-02T11:21:36", "url": "https://files.pythonhosted.org/packages/be/c6/1e33abd919ea67802f23562c9ec550eda3e67184bd400111ab3f5bb5c2dc/pentapy-1.0.2-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "1090971bb0e5708af125b9fbadfe7bda", "sha256": "afa7bf0ee18531176ade17b1284e0cce1f0bb1b3a6c8e651d44a140d0ce88c75" }, "downloads": -1, "filename": "pentapy-1.0.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1090971bb0e5708af125b9fbadfe7bda", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 425631, "upload_time": "2019-10-02T11:15:24", "url": "https://files.pythonhosted.org/packages/1a/03/e2293a412e6e8fd6eb6ff7601f05ae5911edf0abf2ffedaaee7c55675bc1/pentapy-1.0.2-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "0ea183d91324039d0a63a1c567890c3c", "sha256": "238c948e9a51aa62b6e844b6512d95df1cc9717f75d344c5e6d7758b9d8a339c" }, "downloads": -1, "filename": "pentapy-1.0.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0ea183d91324039d0a63a1c567890c3c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 448524, "upload_time": "2019-10-02T11:15:26", "url": "https://files.pythonhosted.org/packages/c8/45/05aa00e1781b5509f7d8c9e5b90344ce77ec0632f3c0f8bf5431d62bd7af/pentapy-1.0.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c47a337c339d24aee726a4dc614a17ef", "sha256": "6e520abfd7226872b19413d242a547fe8e7b45ee3ea9f759df2395fc6ffd2170" }, "downloads": -1, "filename": "pentapy-1.0.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "c47a337c339d24aee726a4dc614a17ef", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 192623, "upload_time": "2019-10-02T11:19:51", "url": "https://files.pythonhosted.org/packages/d7/1f/a83d641e49034bba9bece5015868b8d10ae0c558269b295ce308bf080849/pentapy-1.0.2-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "6843b52da215c8d0d64e6f6c77cc4060", "sha256": "36892a969d5ab58d44bdaf720ceb1c5f60e8caf91141184e307dc3022a3d49ff" }, "downloads": -1, "filename": "pentapy-1.0.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "6843b52da215c8d0d64e6f6c77cc4060", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 206189, "upload_time": "2019-10-02T11:19:53", "url": "https://files.pythonhosted.org/packages/ff/c4/fcd630d3a8c9ef42c32cb561523bde62b0ff9cb3112957a2d09ba6f71d82/pentapy-1.0.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7f287b28a5678916480d286224fd8def", "sha256": "bea29429eee7e3182b2a6e41f8efb62991c81edaff8c184aa59f7dd0035353ed" }, "downloads": -1, "filename": "pentapy-1.0.2-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "7f287b28a5678916480d286224fd8def", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 292391, "upload_time": "2019-10-02T11:22:09", "url": "https://files.pythonhosted.org/packages/5e/81/8a04eef7414dd55468702608d08766c3d41a6245526242636635180148a7/pentapy-1.0.2-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8c6edce5d2651b0e5f3a1de3912abdf9", "sha256": "7dcffe81fe23dae680a2586fd6505b067c0a57ab0a99f02ad9aff20ab850fa32" }, "downloads": -1, "filename": "pentapy-1.0.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8c6edce5d2651b0e5f3a1de3912abdf9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 434152, "upload_time": "2019-10-02T11:15:51", "url": "https://files.pythonhosted.org/packages/86/3f/f5d93f90c04a1195459ff64fadadd02232437db34083cce0fdbc6774839b/pentapy-1.0.2-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "a5c62bbc43e6f44e7fe7dc29c4fc0899", "sha256": "499b0e3f09818eff5581246712cc2b513c0a233b495ec5ed9b812f41cf139e34" }, "downloads": -1, "filename": "pentapy-1.0.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a5c62bbc43e6f44e7fe7dc29c4fc0899", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 457395, "upload_time": "2019-10-02T11:15:52", "url": "https://files.pythonhosted.org/packages/b7/9e/1c8be50204ec3239bbea7e87b93a5066c329f298e220506a27efc4894a3d/pentapy-1.0.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e28330bd31a89250bb9a9ff61099db28", "sha256": "16ebc7c1e7f7ec8cc6c4edac60378af8ed5f4ce1b68f455847fd3b413b00a624" }, "downloads": -1, "filename": "pentapy-1.0.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "e28330bd31a89250bb9a9ff61099db28", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 194006, "upload_time": "2019-10-02T11:19:54", "url": "https://files.pythonhosted.org/packages/ab/b6/2536d87020c397d937bc39bdc3486758f030976f4553e9f1262abab156d3/pentapy-1.0.2-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "31eee893024bcc9bd031901a70aa268c", "sha256": "a35a7bb84ce3049f74472bccc9eb544d7e8533223cae127b9346299ff21ac2df" }, "downloads": -1, "filename": "pentapy-1.0.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "31eee893024bcc9bd031901a70aa268c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 207086, "upload_time": "2019-10-02T11:19:57", "url": "https://files.pythonhosted.org/packages/d6/e2/65bea05b3695ca2fc186759cf9c37859e2c46ed30ba6ccc56c352722467e/pentapy-1.0.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "bb6cd7a61597e760fbaba7cd1cfc0e4b", "sha256": "e0ef1f24c060fdbef1a142ff674690b0e8a33693a70ad1321d643ff3172ddf78" }, "downloads": -1, "filename": "pentapy-1.0.2-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "bb6cd7a61597e760fbaba7cd1cfc0e4b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 292641, "upload_time": "2019-10-02T11:24:53", "url": "https://files.pythonhosted.org/packages/81/97/2973ee1120e0be6060abf607bf99cf6216dd2331bf2707e91471ce3b4f6a/pentapy-1.0.2-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8bc36fed21708d1a624f609b7c9d20ce", "sha256": "65f66d38a9a0e7e860d89351368ec782ad1619300562d3e50bcf91f0c0ab1d42" }, "downloads": -1, "filename": "pentapy-1.0.2-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8bc36fed21708d1a624f609b7c9d20ce", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 430334, "upload_time": "2019-10-02T11:15:24", "url": "https://files.pythonhosted.org/packages/34/b5/b2a5638cac469e1e7ff458c98f3273dec5b4d85670478952cd484ef77215/pentapy-1.0.2-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7fdd079b11fd3120032d3ccc29dbe18a", "sha256": "0e104cd5a99497f6760a83665fae7148f1628226d3f4c7113983d8664dd6c2fb" }, "downloads": -1, "filename": "pentapy-1.0.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7fdd079b11fd3120032d3ccc29dbe18a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 454812, "upload_time": "2019-10-02T11:15:28", "url": "https://files.pythonhosted.org/packages/3e/3a/62b9db61030ed12f2cc89a9d528ee2573b4047f5f30661dd74284cddcbb1/pentapy-1.0.2-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5e3fe29dfec5761edc94c2bb3ef9cc7b", "sha256": "b6d6fb09631a935b79d13347ba823508cb475faa64f89378a193232dbe78ed7d" }, "downloads": -1, "filename": "pentapy-1.0.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "5e3fe29dfec5761edc94c2bb3ef9cc7b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 193873, "upload_time": "2019-10-02T11:19:58", "url": "https://files.pythonhosted.org/packages/46/68/2854c11a747bc95e1bbbc55a0ea4a38db5d74c3cf3699a095503cbf1f7e9/pentapy-1.0.2-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1c05b7f13127a7214874186662e01ab8", "sha256": "1e18b1a512dbf6a531024bb1436511c8723fad34bc71ce523290b676bec22c6e" }, "downloads": -1, "filename": "pentapy-1.0.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1c05b7f13127a7214874186662e01ab8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 206755, "upload_time": "2019-10-02T11:20:00", "url": "https://files.pythonhosted.org/packages/0f/80/fad328fe4c64ec6669a4e44cea0296a34134e5a27ed083ef6da60bb10123/pentapy-1.0.2-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "817557f284d644c864da87a7b59a7fb1", "sha256": "3da011098487987f546eff8128d15c789af399130ee2ede9b86c1d4aecfead09" }, "downloads": -1, "filename": "pentapy-1.0.2.tar.gz", "has_sig": false, "md5_digest": "817557f284d644c864da87a7b59a7fb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142688, "upload_time": "2019-10-02T11:15:55", "url": "https://files.pythonhosted.org/packages/11/bd/f23327d0d45202967ce0c32e8af6261ea22fd24a6633066a0004fae3c628/pentapy-1.0.2.tar.gz" } ] }