{ "info": { "author": "Alex Kaszynski", "author_email": "akascap@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "PyMeshFix\n=========\n\n.. image:: https://travis-ci.org/pyvista/pymeshfix.svg?branch=master\n :target: https://travis-ci.org/pyvista/pymeshfix\n\n.. image:: https://img.shields.io/pypi/v/pymeshfix.svg?logo=python&logoColor=white\n :target: https://pypi.org/project/pymeshfix/\n\nPython/Cython wrapper of Marco Attene's wonderful, award-winning\n`MeshFix `__ software.\nThis module brings the speed of C++ with the portability and ease of\ninstallation of Python.\n\nThis software takes as input a polygon mesh and produces a copy of the input\nwhere all the occurrences of a specific set of \"defects\" are corrected.\nMeshFix has been designed to correct typical flaws present in raw digitized\nmesh models, thus it might fail or produce coarse results\nif run on other sorts of input meshes (e.g. tessellated CAD models).\n\nThe input is assumed to represent a single closed solid object, thus the output\nwill be a single watertight triangle mesh bounding a polyhedron.\nAll the singularities, self-intersections and degenerate elements are removed\nfrom the input, while regions of the surface without defects are left\nunmodified.\n\nInstallation\n------------\n\nFrom `PyPI `__\n\n.. code:: bash\n\n pip install pymeshfix\n\nFrom source at `GitHub `__\n\n.. code:: bash\n\n git clone https://github.com/pyvista/pymeshfix\n cd pymeshfix\n pip install .\n\n\nDependencies\n------------\nRequires ``numpy`` and ``pyvista``\n\n\nExamples\n--------\nTest installation with the following from Python:\n\n.. code:: python\n\n from pymeshfix import examples\n\n # Test of pymeshfix without VTK module\n examples.native()\n\n # Performs same mesh repair while leveraging VTK's plotting/mesh loading\n examples.with_vtk()\n\n\nEasy Example\n------------\nThis example uses the Cython wrapper directly. No bells or whistles here:\n\n.. code:: python\n\n from pymeshfix import _meshfix\n\n # Read mesh from infile and output cleaned mesh to outfile\n _meshfix.clean_from_file(infile, outfile)\n\n\nThis example assumes the user has vertex and faces arrays in Python.\n\n.. code:: python\n\n from pymeshfix import _meshfix\n\n # Generate vertex and face arrays of cleaned mesh\n # where v and f are numpy arrays or python lists\n vclean, fclean = _meshfix.clean_from_arrays(v, f)\n\n\nComplete Examples with and without VTK\n--------------------------------------\n\nOne of the main reasons to bring MeshFix to Python is to allow the library to\ncommunicate to other python programs without having to use the hard drive.\nTherefore, this example assumes that you have a mesh within memory and wish to\nrepair it using MeshFix.\n\n.. code:: python\n\n import pymeshfix\n\n # Create object from vertex and face arrays\n meshfix = pymeshfix.MeshFix(v, f)\n\n # Plot input\n meshfix.plot()\n\n # Repair input mesh\n meshfix.repair()\n\n # Access the repaired mesh with vtk\n mesh = meshfix.mesh\n\n # Or, access the resulting arrays directly from the object\n meshfix.v # numpy np.float array\n meshfix.f # numpy np.int32 array\n\n # View the repaired mesh (requires vtkInterface)\n meshfix.plot()\n\n # Save the mesh\n meshfix.write('out.ply')\n\nAlternatively, the user could use the Cython wrapper of MeshFix directly if\nvtk is unavailable or they wish to have more control over the cleaning\nalgorithm.\n\n.. code:: python\n\n from pymeshfix import _meshfix\n\n # Create TMesh object\n tin = _meshfix.PyTMesh()\n\n tin.LoadFile(infile)\n # tin.load_array(v, f) # or read arrays from memory\n\n # Attempt to join nearby components\n # tin.join_closest_components()\n\n # Fill holes\n tin.fill_small_boundaries()\n print('There are {:d} boundaries'.format(tin.boundaries())\n\n # Clean (removes self intersections)\n tin.clean(max_iters=10, inner_loops=3)\n\n # Check mesh for holes again\n print('There are {:d} boundaries'.format(tin.boundaries())\n\n # Clean again if necessary...\n\n # Output mesh\n tin.save_file(outfile)\n\n # or return numpy arrays\n vclean, fclean = tin.return_arrays()\n\n\nAlgorithm and Citation Policy\n-----------------------------\n\nTo better understand how the algorithm works, please refer to the following\npaper:\n\n M. Attene. A lightweight approach to repairing digitized polygon meshes.\n The Visual Computer, 2010. (c) Springer. DOI: 10.1007/s00371-010-0416-3\n\nThis software is based on ideas published therein. If you use MeshFix for\nresearch purposes you should cite the above paper in your published results.\nMeshFix cannot be used for commercial purposes without a proper licensing\ncontract.\n\n\nCopyright\n---------\n\nMeshFix is Copyright(C) 2010: IMATI-GE / CNR\n\nAll rights reserved.\n\nThis program is dual-licensed as follows:\n\n(1) You may use MeshFix as free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 3 of the License, or (at your option) any\nlater version.\n\nIn this case the program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n(http://www.gnu.org/licenses/gpl.txt) for more details.\n\n(2) You may use MeshFix as part of a commercial software. In this case a proper\nagreement must be reached with the Authors and with IMATI-GE/CNR based on a\nproper licensing contract.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/pyvista/pymeshfix", "keywords": "meshfix", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pymeshfix", "package_url": "https://pypi.org/project/pymeshfix/", "platform": "", "project_url": "https://pypi.org/project/pymeshfix/", "project_urls": { "Homepage": "https://github.com/pyvista/pymeshfix" }, "release_url": "https://pypi.org/project/pymeshfix/0.13.3/", "requires_dist": [ "numpy (>1.11.0)", "pyvista (>=0.20.2)" ], "requires_python": "", "summary": "Repairs triangular meshes", "version": "0.13.3" }, "last_serial": 5987206, "releases": { "0.10": [ { "comment_text": "", "digests": { "md5": "08a3fa8373dfe68114532dd86be6ea66", "sha256": "ce5f7fb863f4a2b16262e0c13433b7fffdce8be13ab194ac9f4acfe16bdd99ed" }, "downloads": -1, "filename": "pymeshfix-0.10-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "08a3fa8373dfe68114532dd86be6ea66", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1356002, "upload_time": "2016-09-21T06:23:48", "url": "https://files.pythonhosted.org/packages/68/87/c3ca6955c15532795e028d9bfb1aa4df29b6ecf1de63ae474862b43f10ea/pymeshfix-0.10-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3a319d3320e18da3ad13a20df4361764", "sha256": "3bf185a19790598815503328ed689cd5bf91df5e7c6761121d09ff5908991911" }, "downloads": -1, "filename": "pymeshfix-0.10-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3a319d3320e18da3ad13a20df4361764", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 1310827, "upload_time": "2016-09-21T06:48:58", "url": "https://files.pythonhosted.org/packages/fe/b4/1bc643b1768ea8da4fbf63098039c2055c130704e457ac7e4bb3a7965166/pymeshfix-0.10-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1ca477c4cf3ac4944824f0b71a0c4bf0", "sha256": "42d31d492f23f4d48202dcf161db3b72f04041380b5de325b9d4bb9c98338606" }, "downloads": -1, "filename": "pymeshfix-0.10.tar.gz", "has_sig": false, "md5_digest": "1ca477c4cf3ac4944824f0b71a0c4bf0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1398886, "upload_time": "2016-09-21T06:23:29", "url": "https://files.pythonhosted.org/packages/94/dd/41c4d116f0df6b45978524789161614d4c3a4dc083fc5834183f82697ab1/pymeshfix-0.10.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "85d472ff0be9889d354baca52f776e19", "sha256": "daa70eb10350240a65f62b45f49c37587ce12bbc29b45c64f19a21d460295e02" }, "downloads": -1, "filename": "pymeshfix-0.10.1.tar.gz", "has_sig": false, "md5_digest": "85d472ff0be9889d354baca52f776e19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1397740, "upload_time": "2017-05-25T14:10:19", "url": "https://files.pythonhosted.org/packages/4f/58/92d1acc26e823b9e42ccab28c9e963eb17dd59e5e859cf1a51d9e801547a/pymeshfix-0.10.1.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "3d64d74478d4fae7e44147aed5ebd9cb", "sha256": "0f9db2c2d6ceb6f61379f7e0b1743736969a1ba404ed2c1c89d9771a1e6fe4dd" }, "downloads": -1, "filename": "pymeshfix-0.11.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3d64d74478d4fae7e44147aed5ebd9cb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3251069, "upload_time": "2018-06-19T14:18:57", "url": "https://files.pythonhosted.org/packages/a8/8c/f5a398273118c3885b43a8b4b50f9be190ee6b77eac6316de888e56d7946/pymeshfix-0.11.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "90b734c8344d6b20dc0fa35affe1d16c", "sha256": "605604a24d524ea6e9e98eb04f41a12842c5304f8d7719d62139fbae3732b5d3" }, "downloads": -1, "filename": "pymeshfix-0.11.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "90b734c8344d6b20dc0fa35affe1d16c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2526435, "upload_time": "2018-06-19T14:19:06", "url": "https://files.pythonhosted.org/packages/2b/d3/c0bd4ed0cb2c2c2db91983f989ff7d459cff5f44ce4b7d2abd62b0a18b51/pymeshfix-0.11.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "82de3c80fa987613e1442c3cfbea3cab", "sha256": "8a5486fcd095dee60a45e684c51e77c0bb90a5924d5e8e893cb68dad91f85ab0" }, "downloads": -1, "filename": "pymeshfix-0.11.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "82de3c80fa987613e1442c3cfbea3cab", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2089836, "upload_time": "2018-06-19T14:19:10", "url": "https://files.pythonhosted.org/packages/c8/69/b8732d4f3dda815fe5894ef683fb79fba6d37719ed7aa95dafe4a358e8b1/pymeshfix-0.11.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4d36d23ac4549962388eb0bdbcfa6472", "sha256": "4471ee44d928475397a9897aca452f51f8e3a19dc2f5a19572b5dbe6b9c00b66" }, "downloads": -1, "filename": "pymeshfix-0.11.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4d36d23ac4549962388eb0bdbcfa6472", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1315372, "upload_time": "2018-06-19T14:19:14", "url": "https://files.pythonhosted.org/packages/4e/4c/87d4d5b106852b41eb4e0d2c1ce80cfea13bdcaec102a1688ee6c7af29be/pymeshfix-0.11.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6f6d86aae73720e8364f18c42d571ffe", "sha256": "01d1993eb47a37e059bd8139c820a7ac5f5fccd6c706c606e0405e03fc9832a3" }, "downloads": -1, "filename": "pymeshfix-0.11.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6f6d86aae73720e8364f18c42d571ffe", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2102153, "upload_time": "2018-06-19T14:19:17", "url": "https://files.pythonhosted.org/packages/68/19/970f7d39686a20176818b58a65a37d921d1332a0d2c4fb19e5e0134e5e3a/pymeshfix-0.11.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6387f003dfdec3e4c264d25f4e00d993", "sha256": "63dcfabb0532288fba346a73122203a54594dd62c7abbe5fb1a601d455b52e97" }, "downloads": -1, "filename": "pymeshfix-0.11.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6387f003dfdec3e4c264d25f4e00d993", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1325008, "upload_time": "2018-06-19T14:19:20", "url": "https://files.pythonhosted.org/packages/3a/a1/eb5e77076c7f348ea0ed8c9b16ce8555d1625cf8947f0df384bbff07560b/pymeshfix-0.11.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "22a7fc8c18bc3d8d6d74c373faaf8945", "sha256": "1a89d688327e4e4d2a4130d9276cd83ac8c14a64ecb075df90e5330acc18fdec" }, "downloads": -1, "filename": "pymeshfix-0.11.0.tar.gz", "has_sig": false, "md5_digest": "22a7fc8c18bc3d8d6d74c373faaf8945", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 251024, "upload_time": "2018-05-14T13:46:23", "url": "https://files.pythonhosted.org/packages/98/d0/b9a3ad74845cc21251222fdb4297d581b2c7f06f0e67d42a1d8912aaa05e/pymeshfix-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "b95ae59283203acc6042b0a675d6e5c9", "sha256": "5db5df14896a8f4c0581f1445bb7cd0adfc6a664d58b898d9e21f86895d415aa" }, "downloads": -1, "filename": "pymeshfix-0.11.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b95ae59283203acc6042b0a675d6e5c9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2081740, "upload_time": "2018-08-11T11:43:40", "url": "https://files.pythonhosted.org/packages/e5/36/353da50a938d2e1e7b929d8cffa7e9240bf1ddff75f6f93c41e507130d8c/pymeshfix-0.11.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "79c7b2795fc7fe888f2bead6aef4f053", "sha256": "87a77178afee56a6ba735a16152129df7a57d108018df1dc33b8ec6ecb61eef6" }, "downloads": -1, "filename": "pymeshfix-0.11.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "79c7b2795fc7fe888f2bead6aef4f053", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2081788, "upload_time": "2018-08-11T11:43:43", "url": "https://files.pythonhosted.org/packages/2a/be/7f4ba9591f330b532ef3b03bef56ebe8fba813862d26ec40be6611f76590/pymeshfix-0.11.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "34d9832a903d1fde3c37005e5eaaadbe", "sha256": "cf2d7f7620b303e2cfaca024aac0aaaaeeb580222984572cf9225a28f590d856" }, "downloads": -1, "filename": "pymeshfix-0.11.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "34d9832a903d1fde3c37005e5eaaadbe", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2087563, "upload_time": "2018-08-11T11:43:45", "url": "https://files.pythonhosted.org/packages/ee/a0/a915ec7dbef0d48252d5650304cf89023f72859257f1d54faa80402f8c8b/pymeshfix-0.11.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3d39ffa05f1cef09d6c8101582b063f3", "sha256": "bafb6039d37a73446bbee2ccfd9925d25ec9c67ae0cfd9ca3ff989599c43d6cd" }, "downloads": -1, "filename": "pymeshfix-0.11.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3d39ffa05f1cef09d6c8101582b063f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2100108, "upload_time": "2018-08-11T11:43:47", "url": "https://files.pythonhosted.org/packages/32/75/71ff97cdfae6054084c54c06887e2f76877903a128d5c9eb3240a709137b/pymeshfix-0.11.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0f3b89ac3b730537692c8097f2637a20", "sha256": "9a2e36e7cf7cfa8c59fadaa9098a8b54f0b223903a924606b1b61dfb2f9bc757" }, "downloads": -1, "filename": "pymeshfix-0.11.1.tar.gz", "has_sig": false, "md5_digest": "0f3b89ac3b730537692c8097f2637a20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281006, "upload_time": "2018-08-11T11:43:49", "url": "https://files.pythonhosted.org/packages/37/2b/6ea317d5386ab2532a232aa0f39b41641c228b858bf5ebe1fb782ba4bc63/pymeshfix-0.11.1.tar.gz" } ], "0.11.2": [ { "comment_text": "", "digests": { "md5": "5a2e0ab84e6d3e0f6e6dc6bef2588c4a", "sha256": "8641c002b01f9d988e2ec2869e849d901564ed72170dda1cfce2e0e6728cfa63" }, "downloads": -1, "filename": "pymeshfix-0.11.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5a2e0ab84e6d3e0f6e6dc6bef2588c4a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2081754, "upload_time": "2018-08-11T12:06:58", "url": "https://files.pythonhosted.org/packages/db/f5/ccb399c32ba48060a943ab33234f1c02d00386a7c1b9310712fbc3ce141c/pymeshfix-0.11.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8c6e5dd88a9b77dd0057718e98e874a3", "sha256": "5e0e519fff21adfce9a01494cc526767ffbd9fe640773339bcb65850481ea2b7" }, "downloads": -1, "filename": "pymeshfix-0.11.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8c6e5dd88a9b77dd0057718e98e874a3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2081794, "upload_time": "2018-08-11T12:07:00", "url": "https://files.pythonhosted.org/packages/17/7e/b8d596f6700dd682e48eaf4b11295c6b121539f85fc3d2341936523d0c74/pymeshfix-0.11.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3ef64bc8d82bc3d38a393cb48f9fa43f", "sha256": "32bb9600afe0582d95b722dc4fbe01876e7455f8e00fd3e3d60f52f96e11f58e" }, "downloads": -1, "filename": "pymeshfix-0.11.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3ef64bc8d82bc3d38a393cb48f9fa43f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2087550, "upload_time": "2018-08-11T12:07:02", "url": "https://files.pythonhosted.org/packages/d5/73/66c236d723732b825e94928fa528c61d9826cac430355513522fa710f230/pymeshfix-0.11.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4f36e75417d2c8715b3db9df1f563220", "sha256": "2de703bc4f06e29105f5cc6a1588173b3b5c01bea1b2edd2936dc96f676de6c1" }, "downloads": -1, "filename": "pymeshfix-0.11.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4f36e75417d2c8715b3db9df1f563220", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1316288, "upload_time": "2018-08-11T13:05:35", "url": "https://files.pythonhosted.org/packages/8a/18/6cf3c15cdfdc2bf1c021d70c019618906756eb6769d320ba840ecc0ac2e4/pymeshfix-0.11.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ddb28510f8a86a5e6de179a2c1d3772e", "sha256": "f378ecab4510242a2feccbf8d4359abd977e86c7c5ae918a8f0b54d945cfdb09" }, "downloads": -1, "filename": "pymeshfix-0.11.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ddb28510f8a86a5e6de179a2c1d3772e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2100101, "upload_time": "2018-08-11T12:07:04", "url": "https://files.pythonhosted.org/packages/69/b6/59f227d742c1ebb0fb7df83768a8f76de76325f1be8d35315c791b1b6c63/pymeshfix-0.11.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a0ef37dd4e7b668e1ff0486020457c5a", "sha256": "b11f83154b7495226ece540952ac2bc3afb0788a329a689c70773818c10308aa" }, "downloads": -1, "filename": "pymeshfix-0.11.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a0ef37dd4e7b668e1ff0486020457c5a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1317748, "upload_time": "2018-08-11T13:05:37", "url": "https://files.pythonhosted.org/packages/b7/42/fabc7e5fe114394dcee635fd196f3e4793fe58b2a6ef19b3038b05badae4/pymeshfix-0.11.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "94388f7ea4724f48606bd2e295042d0f", "sha256": "9deeda6c841bfdf8000bed0885f8a64d4b10049e018b38b219b3ba72e5c631cb" }, "downloads": -1, "filename": "pymeshfix-0.11.2.tar.gz", "has_sig": false, "md5_digest": "94388f7ea4724f48606bd2e295042d0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281024, "upload_time": "2018-08-11T12:07:07", "url": "https://files.pythonhosted.org/packages/ee/44/578b57a2d966bac0bc00e874aa6d6170503adb28d9010edba155ce05480d/pymeshfix-0.11.2.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "e57283ecf0831a2b8de553786b969da3", "sha256": "a23fcddc2566f1d17aa2663b9726daf0f37e66dde0b0f665aa5ae64675b3164c" }, "downloads": -1, "filename": "pymeshfix-0.12.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e57283ecf0831a2b8de553786b969da3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2079187, "upload_time": "2019-02-01T06:35:47", "url": "https://files.pythonhosted.org/packages/1f/11/1ea2ff498ac0423143d759f1f65562d9e2a60abe4d2dcfbc8334d0a0bc6d/pymeshfix-0.12.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7eb34e162d174ee5ca807c767fa78618", "sha256": "8350ca00cd2631d483ff41c7a42e46f0631ba4520a2ce4718f10a6f7c3cd42f6" }, "downloads": -1, "filename": "pymeshfix-0.12.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7eb34e162d174ee5ca807c767fa78618", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2079226, "upload_time": "2019-02-01T06:35:49", "url": "https://files.pythonhosted.org/packages/36/97/8269d1c3da70e368a58206f6f6edc8f0a2c41dd990cb9b3baa2cfeca4f7c/pymeshfix-0.12.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3e02406088a71dcb5f13031e8b58a7be", "sha256": "e204c3742727a58bde52fdce0a5e9bd81685957153edc1fb11fd2530586197f5" }, "downloads": -1, "filename": "pymeshfix-0.12.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3e02406088a71dcb5f13031e8b58a7be", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2083255, "upload_time": "2019-02-01T06:35:51", "url": "https://files.pythonhosted.org/packages/63/8e/0c3caa2b4c97513dcf6681277d2da3e3f5dc28cb7585c6218812885e7c10/pymeshfix-0.12.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f4ad359f4e64510e34ff6c3e4ff4fc8a", "sha256": "3a3fe37d431f1245932112ce031e5df2aecb43c28161201defc56cfcfa05271d" }, "downloads": -1, "filename": "pymeshfix-0.12.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f4ad359f4e64510e34ff6c3e4ff4fc8a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2093962, "upload_time": "2019-02-01T06:35:53", "url": "https://files.pythonhosted.org/packages/19/b0/14e697a7047c0b38cb4c4151a574e6fe645bf1988709b71f41f6e165880f/pymeshfix-0.12.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ba082409656860d980d49b8c13feeb8c", "sha256": "a579fdef6c17ed826f73aa95e3b5a77ee8af9c4ae549e1277e33c59e40ea965d" }, "downloads": -1, "filename": "pymeshfix-0.12.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ba082409656860d980d49b8c13feeb8c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2092463, "upload_time": "2019-02-01T06:35:55", "url": "https://files.pythonhosted.org/packages/87/82/28bda6580f513f34433eff9cd0e9fec402ddb1a158c8ee030661e5f068b5/pymeshfix-0.12.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "34479326ef21cbfd214c75f153a0da42", "sha256": "d13d8813b0058b363cab7d21c2d84fabeb0d88f2b207e844a2ca69dd40906411" }, "downloads": -1, "filename": "pymeshfix-0.12.1.tar.gz", "has_sig": false, "md5_digest": "34479326ef21cbfd214c75f153a0da42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281649, "upload_time": "2019-02-01T06:35:57", "url": "https://files.pythonhosted.org/packages/71/b1/532afd89975f9285cfb1834c29c0f21f78556c20c8b96090aca81c7b397b/pymeshfix-0.12.1.tar.gz" } ], "0.12.2": [ { "comment_text": "", "digests": { "md5": "6a573d9145218946db6ca8187333a0e8", "sha256": "2c44450dd329cd1fb051c64410decbf56cac74e7038c1549dda2248c46a86691" }, "downloads": -1, "filename": "pymeshfix-0.12.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6a573d9145218946db6ca8187333a0e8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2079169, "upload_time": "2019-02-01T06:53:44", "url": "https://files.pythonhosted.org/packages/07/45/f09bb0632596be4423c2080a3d6a19cbdf5d5c95e7b4184b08d431078bf7/pymeshfix-0.12.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4170699ada7b412e2b82bb921f1d4ee0", "sha256": "01c5705103dec0a7929de276a94e4d314f08953d574e04889acd1ecb3e22a83f" }, "downloads": -1, "filename": "pymeshfix-0.12.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4170699ada7b412e2b82bb921f1d4ee0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2079229, "upload_time": "2019-02-01T06:53:46", "url": "https://files.pythonhosted.org/packages/71/06/383320595f6e3e29e5d5d57de57d140409ca222457982b613b0ca3be40ed/pymeshfix-0.12.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a327220458ceaafe8367e24c834f9e5c", "sha256": "85b0aa1ba2aa7ed5018dd2ea077d945601da670f5580f952dfdc8e5899479f54" }, "downloads": -1, "filename": "pymeshfix-0.12.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a327220458ceaafe8367e24c834f9e5c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2083225, "upload_time": "2019-02-01T06:53:48", "url": "https://files.pythonhosted.org/packages/23/00/06f1a6d70bd331e035a5607d3c5ac28bd426347786c7270411ac8654f6fc/pymeshfix-0.12.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8c4f41dee9f04fa15f46f771d75d983c", "sha256": "d2780b854e494cf7c79b60aaa9f6ab2f6b19abd549a0a1a2b00f0fe85c58ca82" }, "downloads": -1, "filename": "pymeshfix-0.12.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8c4f41dee9f04fa15f46f771d75d983c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1319986, "upload_time": "2019-02-01T07:02:10", "url": "https://files.pythonhosted.org/packages/38/6b/6e0ca690c855c30010170362f587aa316c7714968e784deb5e96accc1b2a/pymeshfix-0.12.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b20391f0ee00eb9d4e8757753a3e9c84", "sha256": "671d6932552f32eb20e3c76ba37017de604c98a47fb21a30731df1a4176c7c1f" }, "downloads": -1, "filename": "pymeshfix-0.12.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b20391f0ee00eb9d4e8757753a3e9c84", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2093895, "upload_time": "2019-02-01T06:53:50", "url": "https://files.pythonhosted.org/packages/ab/21/d5d89a89d20b7ec44f239ab8d3ab94e8d884ebf918554299b182328f8526/pymeshfix-0.12.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "949ff5a6ceeadac78690c13959816bad", "sha256": "c0900a642c273a97d84b3a9dc4f86bf17b1dd262bdd3518ba6e4f6ec9919e14b" }, "downloads": -1, "filename": "pymeshfix-0.12.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "949ff5a6ceeadac78690c13959816bad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1322016, "upload_time": "2019-02-01T07:02:14", "url": "https://files.pythonhosted.org/packages/93/8d/1aa6abf638b5aa445e04d74355edd00da57028055f893a87a9c74246d147/pymeshfix-0.12.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1c9f5ebe8b5e48a43ebe0d1560ba50c2", "sha256": "013219a6ba86b8f4f5d8771163b70bd20adc520c111c893945d825e485605562" }, "downloads": -1, "filename": "pymeshfix-0.12.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1c9f5ebe8b5e48a43ebe0d1560ba50c2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2092383, "upload_time": "2019-02-01T06:53:52", "url": "https://files.pythonhosted.org/packages/44/d4/84426a6e1e3fe21802821194e341470a4de91d2730ab0bc664c7d63e170f/pymeshfix-0.12.2-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7222a9c700729d00331d46031bcf17aa", "sha256": "5c756fa44495a7b50fdcad5705259fb07625b24a66183abd115471f07fddc25f" }, "downloads": -1, "filename": "pymeshfix-0.12.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7222a9c700729d00331d46031bcf17aa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1322049, "upload_time": "2019-02-01T07:02:17", "url": "https://files.pythonhosted.org/packages/09/54/268c315e30060361e3d6f5852fb233120883725c575a5533013db5558834/pymeshfix-0.12.2-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "84a549498b6db95e4e71b8b7054ca268", "sha256": "e2c3f235cf07cb7e3155e7d2cc38189d7ae7192e3c30bb1e2f3ee4f5330533ec" }, "downloads": -1, "filename": "pymeshfix-0.12.2.tar.gz", "has_sig": false, "md5_digest": "84a549498b6db95e4e71b8b7054ca268", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281566, "upload_time": "2019-02-01T06:53:54", "url": "https://files.pythonhosted.org/packages/b3/08/33343aa549b8fdd2722050a8698deb2385dc91638a2f0198bec0492c97cf/pymeshfix-0.12.2.tar.gz" } ], "0.12.3": [ { "comment_text": "", "digests": { "md5": "8caf8670eb893b1e6ebe266aaac376f8", "sha256": "b6877eeaa4c290785f70b0d32df0745aeb90bb6e1cbb0f66af9e8f008ae5ba89" }, "downloads": -1, "filename": "pymeshfix-0.12.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8caf8670eb893b1e6ebe266aaac376f8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2078934, "upload_time": "2019-02-06T08:57:46", "url": "https://files.pythonhosted.org/packages/00/87/92d7b44b34423031972c07ae43e055ea51900d5db25d094e19f849528210/pymeshfix-0.12.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d6f2d37b86c79398ab2c8049484511e8", "sha256": "e92ce16d518971909a03307116a07b0f3a80f83c27847323effd286ff83064a0" }, "downloads": -1, "filename": "pymeshfix-0.12.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d6f2d37b86c79398ab2c8049484511e8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2078952, "upload_time": "2019-02-06T08:57:48", "url": "https://files.pythonhosted.org/packages/01/f4/59fd01f2c307ed51377cf0101e2eced77f3706e1be9888bc1d101930e3c2/pymeshfix-0.12.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1384053b201b9819bc9202d4817eaa88", "sha256": "78e5d2347a066736b62e9d917816da8811720f9d67a2222067f7420b85b9f5e6" }, "downloads": -1, "filename": "pymeshfix-0.12.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1384053b201b9819bc9202d4817eaa88", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2083579, "upload_time": "2019-02-06T08:57:50", "url": "https://files.pythonhosted.org/packages/d5/9c/c8bb92ff78e383c2d820447dfe22eb6d61f701403e176e070e7870693403/pymeshfix-0.12.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c9a6c76c7ff0b2adb9762cb456f61d9a", "sha256": "16fc066d795fadb2cabc848a61a1146c2dfa7fca6f4f8af08cd9cf93ab426f18" }, "downloads": -1, "filename": "pymeshfix-0.12.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "c9a6c76c7ff0b2adb9762cb456f61d9a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1319988, "upload_time": "2019-02-06T08:36:52", "url": "https://files.pythonhosted.org/packages/bc/ed/da8422f770c98f7665de53c3783c7faaedf2ba64416ae959b86b7f79ec44/pymeshfix-0.12.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "066a5aef0405acbe799129abc32bbc49", "sha256": "9b40263c63157547b131d431165dc6ac65fb93589bd8b5ed8cc2a12447c58a08" }, "downloads": -1, "filename": "pymeshfix-0.12.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "066a5aef0405acbe799129abc32bbc49", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2093564, "upload_time": "2019-02-06T08:57:52", "url": "https://files.pythonhosted.org/packages/fe/6f/827493d6e0179b63ee69150cafd6a981609a384f9e361409178a6e1b1163/pymeshfix-0.12.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fcbd0f0a52d3cc6db5720835f9d70bd8", "sha256": "52d703135c7baaf2e3453b02afb2be0e3df0c1ba074d5ea1fb7abbc4a4edbf11" }, "downloads": -1, "filename": "pymeshfix-0.12.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "fcbd0f0a52d3cc6db5720835f9d70bd8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1322021, "upload_time": "2019-02-06T08:36:55", "url": "https://files.pythonhosted.org/packages/bd/97/83cc225a902d6e587a067ae5bd1d2626a39e26561f505a4a8f14cd313305/pymeshfix-0.12.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6e98f8ea9a3fc9f5f76300003efb80d8", "sha256": "68e8a6b9fd33d1fae8bbb71e0e0189b966db43b8529bce7ffc2c51efbe74de9c" }, "downloads": -1, "filename": "pymeshfix-0.12.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6e98f8ea9a3fc9f5f76300003efb80d8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2092879, "upload_time": "2019-02-06T08:57:54", "url": "https://files.pythonhosted.org/packages/fe/66/bfc0e85a2976232b6740b95244b00755478c67283d867203de6660f78532/pymeshfix-0.12.3-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "923164816ea39e397c2cced7b9813f84", "sha256": "d13270e3273345e8881cf23c8f2bc9d2a863d71ed0e0cc1673a49f92a85939d3" }, "downloads": -1, "filename": "pymeshfix-0.12.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "923164816ea39e397c2cced7b9813f84", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1322054, "upload_time": "2019-02-06T08:36:58", "url": "https://files.pythonhosted.org/packages/e8/fb/1e931cfb8287b647bcebac19426c1e54fd525f78f4949fab4147ce38a0e4/pymeshfix-0.12.3-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e4dfd990727eb58512b449bb3eefee63", "sha256": "b30f3f2e07bc703e8a19e154a5a40474e430a4596e2f46deb3a2624b410b6fd7" }, "downloads": -1, "filename": "pymeshfix-0.12.3.tar.gz", "has_sig": false, "md5_digest": "e4dfd990727eb58512b449bb3eefee63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281567, "upload_time": "2019-02-06T08:57:56", "url": "https://files.pythonhosted.org/packages/8f/ec/5a3ecaf0b60148b1fb257ceafb4ef64d433a6d47f4f310577022698d517c/pymeshfix-0.12.3.tar.gz" } ], "0.12.4": [ { "comment_text": "", "digests": { "md5": "4e88c9b5ecf2fd4c7ce180ecacf9c6f5", "sha256": "a23822f0b863a16a020e80a743b8d3aee2403a1543d4fad76e458c8ac032d5f2" }, "downloads": -1, "filename": "pymeshfix-0.12.4-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4e88c9b5ecf2fd4c7ce180ecacf9c6f5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2079262, "upload_time": "2019-04-19T21:10:55", "url": "https://files.pythonhosted.org/packages/9a/3d/6bed4983edb5b535c0624082c1d74381336557f6067e48b5c3677542efeb/pymeshfix-0.12.4-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c21a10d8d3a5a657e1b516e49887ea87", "sha256": "b8c6d3450b49779e6a4a17fb192a2cdaee0c2cac1143cf4f5b8b1de381446513" }, "downloads": -1, "filename": "pymeshfix-0.12.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c21a10d8d3a5a657e1b516e49887ea87", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2079291, "upload_time": "2019-04-19T21:10:57", "url": "https://files.pythonhosted.org/packages/01/57/9cb0876101c21fbcaeb5c09e09fe46bcef7992b47d94e6247c3a0772a1bd/pymeshfix-0.12.4-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "af318c1f5aee75a7d7206e19a69432d1", "sha256": "8793492287d11c6d5d00d3c783d765432da9f594a6d4a711f7e9d4a8f4516a62" }, "downloads": -1, "filename": "pymeshfix-0.12.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "af318c1f5aee75a7d7206e19a69432d1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2083717, "upload_time": "2019-04-19T21:10:59", "url": "https://files.pythonhosted.org/packages/fc/e2/3545fa22c5e4281038159e920083e466aba46cec09631b06512000647895/pymeshfix-0.12.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c706005215aa0346c79f877adc8d4a81", "sha256": "da204ccda2ef5d92e90e7553cd27152a29e13788a38ce2068339c2e56a687172" }, "downloads": -1, "filename": "pymeshfix-0.12.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "c706005215aa0346c79f877adc8d4a81", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1319961, "upload_time": "2019-05-11T11:24:19", "url": "https://files.pythonhosted.org/packages/f6/f7/f5c1f8ac3bb9f4f96c4dad0eb4db863eb2b19b3e6d9c77bbd82e9b85dcfc/pymeshfix-0.12.4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a277700ff0203bbc25b506ed8e0e0614", "sha256": "674677ce61fe78b6c3c024eaf8d8ddbe488963bbe56952cfb421b15cf070e2c5" }, "downloads": -1, "filename": "pymeshfix-0.12.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a277700ff0203bbc25b506ed8e0e0614", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2094663, "upload_time": "2019-04-19T21:11:01", "url": "https://files.pythonhosted.org/packages/8f/20/ad1820526d08f56c5e65bc0ea0a9c760d5a1ed2a3f2435c87efef3468a95/pymeshfix-0.12.4-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4234934dd51d2ff2a984433e6d2ae3b0", "sha256": "ae1df08af01ab1096e7835096c941b3b010f66094ed5cd8280f2e463b7e719ef" }, "downloads": -1, "filename": "pymeshfix-0.12.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4234934dd51d2ff2a984433e6d2ae3b0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1321987, "upload_time": "2019-05-11T11:24:32", "url": "https://files.pythonhosted.org/packages/ef/ce/8cd86ff97a34e93123b6329884e488fba40b07666916dd31b85b0c32553d/pymeshfix-0.12.4-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "26ec3e7b316ce563fe0a6e928a96a28e", "sha256": "502201de4e69950569b0a42f090a5a6846748ccf9c8fdbaac6d475a89896c23b" }, "downloads": -1, "filename": "pymeshfix-0.12.4-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "26ec3e7b316ce563fe0a6e928a96a28e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2093266, "upload_time": "2019-04-19T21:11:03", "url": "https://files.pythonhosted.org/packages/87/68/c4e87869dd3a779ac564d770ec25c74d141c95954fdb46eeaf7fe225be20/pymeshfix-0.12.4-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8dbaecc754b311706062e8ffd17bae53", "sha256": "4aa0d40c36e70a8805ad570909f5fea7b36ab2798f5912c4b5533bc1f7c0156a" }, "downloads": -1, "filename": "pymeshfix-0.12.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8dbaecc754b311706062e8ffd17bae53", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1322007, "upload_time": "2019-05-11T11:24:36", "url": "https://files.pythonhosted.org/packages/de/8d/a39aef4ad04af7f81eb322bd0904110a5691fdc2c8e5d0bd358825c5c169/pymeshfix-0.12.4-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3bb17ab1f73796083fc33a915fc9659c", "sha256": "d38fbdd8bbe0c5519bd296a94833c1639c25247ecf8f8ae069f5c07d43859fe9" }, "downloads": -1, "filename": "pymeshfix-0.12.4.tar.gz", "has_sig": false, "md5_digest": "3bb17ab1f73796083fc33a915fc9659c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281562, "upload_time": "2019-04-19T21:11:05", "url": "https://files.pythonhosted.org/packages/ae/6d/d41044b9b284a9238cb60a09c8722bcc0aba7cc1ae745e62ebeb0e2a5687/pymeshfix-0.12.4.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "e82e4b381e27abb0eed1a0110e6d048b", "sha256": "d0d07f060fa400241fd97a2506f2f4e88a5b57476b48a45646323b168bc94bc7" }, "downloads": -1, "filename": "pymeshfix-0.13.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e82e4b381e27abb0eed1a0110e6d048b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2079270, "upload_time": "2019-05-15T09:43:52", "url": "https://files.pythonhosted.org/packages/47/fe/716d31aab893dc6f1d6c75220035c7e5d3ca69381e46ff66f5c1604c700a/pymeshfix-0.13.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "bc49e929d7430a5525b953265dc448f1", "sha256": "53ac1e4757738b8cd54f346db6996587c741c7a6a167812b69206d3c9f93f5f1" }, "downloads": -1, "filename": "pymeshfix-0.13.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bc49e929d7430a5525b953265dc448f1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2079298, "upload_time": "2019-05-15T09:43:56", "url": "https://files.pythonhosted.org/packages/0a/78/8e4de8d936aa8b9d744edd718819c25848afbd0a639c1f23b43ca595e186/pymeshfix-0.13.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cca526f96b06212143b3192adf6858b5", "sha256": "2a6faaff8ec0bdaf0d20648651f61f1ca82b4848397395807f49733b87d5063e" }, "downloads": -1, "filename": "pymeshfix-0.13.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cca526f96b06212143b3192adf6858b5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2083731, "upload_time": "2019-05-15T09:43:59", "url": "https://files.pythonhosted.org/packages/03/35/509860cbf270382cc251bb5be4f57a6157cfb8c673bc5ebc0f8f0f2d8ed6/pymeshfix-0.13.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b2a3bc3043710d213380e90ec53c4ba1", "sha256": "b2937a4706135242a54c58aa87f4949346d93b400c3193bf4acf65c60c8f2e89" }, "downloads": -1, "filename": "pymeshfix-0.13.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b2a3bc3043710d213380e90ec53c4ba1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1319978, "upload_time": "2019-05-15T09:46:17", "url": "https://files.pythonhosted.org/packages/45/81/4eb90add99bbda4f39535d5e7341c44cab2d24b63053730d72d933dd9bb6/pymeshfix-0.13.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "df1001d56125fb1fe699f46ce5a1c4e7", "sha256": "eda83f3a168b09a6503190b8430f3e90724deade90246dbfaead2ad9503e76ab" }, "downloads": -1, "filename": "pymeshfix-0.13.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "df1001d56125fb1fe699f46ce5a1c4e7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2094705, "upload_time": "2019-05-15T09:44:02", "url": "https://files.pythonhosted.org/packages/34/0c/c126dd76820dc4d54439de5b201b133ff8246a5a30d6ffba8ab597c66def/pymeshfix-0.13.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fd981435aa7b01d6f65924ec1499801e", "sha256": "a3e1ad7e1c5c06448c9a1c3778cbf0743f22286602d7018933504d9c484118fc" }, "downloads": -1, "filename": "pymeshfix-0.13.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "fd981435aa7b01d6f65924ec1499801e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1322003, "upload_time": "2019-05-15T09:46:20", "url": "https://files.pythonhosted.org/packages/3d/44/4e4d80268c742214464e3563f40f42f0c5e424f2989faf0cc00f6cb8ca03/pymeshfix-0.13.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "110147aa1ef403f436f28894c455d4ae", "sha256": "491286ee3e77471dbd7d7480c59f6cbb1007d385f82414f55c3c6c6597994ed0" }, "downloads": -1, "filename": "pymeshfix-0.13.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "110147aa1ef403f436f28894c455d4ae", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2093396, "upload_time": "2019-05-15T09:44:06", "url": "https://files.pythonhosted.org/packages/b2/d8/5792e1336462299e6b0d7cd2a5fc75e5fc188da148ca308955155a2d2b7b/pymeshfix-0.13.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c18027b5e76b5e4574b1aaa838058a1f", "sha256": "d0b3b7ccaeb0601375b37bdaed4a132055b168528b02377b04694f4c1f08d9f1" }, "downloads": -1, "filename": "pymeshfix-0.13.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c18027b5e76b5e4574b1aaa838058a1f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1322023, "upload_time": "2019-05-15T09:46:23", "url": "https://files.pythonhosted.org/packages/4c/89/5a69cf504f1d0ed5412370fa3ea110391e1425d46982e9ff244a2573e880/pymeshfix-0.13.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "75658fa5e031281bdfe0103882967a7a", "sha256": "1c2f5093618e15079541a66d7535a99c34fa1b8d6883881f7ef402d16c7a3312" }, "downloads": -1, "filename": "pymeshfix-0.13.0.tar.gz", "has_sig": false, "md5_digest": "75658fa5e031281bdfe0103882967a7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281570, "upload_time": "2019-05-15T09:44:08", "url": "https://files.pythonhosted.org/packages/4a/c6/e044fd58e4328780e498b7039037ca5c3fc929b1fc5ed337965c21357978/pymeshfix-0.13.0.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "0e02d7510aa297acd387b9fc2756a9de", "sha256": "cb63f14899c200c771fab8cafe7d4ee83e52689ed9a899fac6e93cf4658a7465" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0e02d7510aa297acd387b9fc2756a9de", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1650406, "upload_time": "2019-05-21T16:54:15", "url": "https://files.pythonhosted.org/packages/99/d2/74d2be630ca8d6efda0b5fc6dd9043629f6435c0d6be09f0dd115749358d/pymeshfix-0.13.1-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "c6c8caed60132fb749ec9dbf35cda146", "sha256": "a074409f5fbaff5a27c2b3bc41ccb57bc9bba8cd4a97ebe9309154f7ba6080d5" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c6c8caed60132fb749ec9dbf35cda146", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2076098, "upload_time": "2019-05-21T16:45:11", "url": "https://files.pythonhosted.org/packages/6e/8a/caa4c7015ff0fc855750b48c31d0788ae4f20b359673f4ccb67ab044b0f5/pymeshfix-0.13.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c88a3932ee9b9c211558b8e32ef97745", "sha256": "700f2f5647b62cc9846a3e0a70b4fafa9e1e336f471a659387cb834344df0891" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c88a3932ee9b9c211558b8e32ef97745", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2076101, "upload_time": "2019-05-21T16:45:14", "url": "https://files.pythonhosted.org/packages/56/0c/d35e4d73831fbf2660ef85243014354882e0c87fdad5cfbe237ef23126b3/pymeshfix-0.13.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5d697dc2205ccbba7ff3ef20411911a5", "sha256": "7d986f3d2454eb4c8820e7c6f714e6e34e593ce65d241090c7191f959fbdc131" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "5d697dc2205ccbba7ff3ef20411911a5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1641710, "upload_time": "2019-05-21T16:54:17", "url": "https://files.pythonhosted.org/packages/e7/67/17ebd00ef5e5f2f8c86cc0f79b2a7ac68fe9735204e0f3412712aa7a40b5/pymeshfix-0.13.1-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "ad5fea261ff64c4896c64d904f12cf9b", "sha256": "809e2a571c78f1bf9274b26b5180aa9cd86afff8d30746aaa29bf975b05a3f2a" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ad5fea261ff64c4896c64d904f12cf9b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2083731, "upload_time": "2019-05-21T16:45:16", "url": "https://files.pythonhosted.org/packages/04/12/5b06210b8f5a47e861d7f6c041936b2157aea70aa301e3809369b361b73f/pymeshfix-0.13.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4db80c6f1adfc2be5c304c8da322391a", "sha256": "27e7d35db003ef0801f981056f5eeeba356b65cbe65cb7f0dd76fa45a7cd2df5" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4db80c6f1adfc2be5c304c8da322391a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1319971, "upload_time": "2019-05-21T17:13:24", "url": "https://files.pythonhosted.org/packages/e2/6b/1b6261c8250bbfe404991153b2cbe65fabbda46dc4c97ebd20297bb3c005/pymeshfix-0.13.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "baa32a7c53f1006e8125e2e95cd48c18", "sha256": "8278652315feee3fd6d494c088d4c18d959391450f77b1a2dba715f94a166697" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "baa32a7c53f1006e8125e2e95cd48c18", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1642311, "upload_time": "2019-05-21T16:54:19", "url": "https://files.pythonhosted.org/packages/06/68/7c7daf8aa96ed4dd5c5da2c8dfc0bcd30025f6ece17319c2c8e49341b31b/pymeshfix-0.13.1-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "760733df36358093dc90b7478079c574", "sha256": "c8018e72911182ca99d515ad4b374f4cf35a74371bf465cf6696c8b595ebc0d2" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "760733df36358093dc90b7478079c574", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2094661, "upload_time": "2019-05-21T16:45:19", "url": "https://files.pythonhosted.org/packages/a3/5e/7c37ac46d723086b817bf48445a65abe7dc971d70f6f7de58bef3bbd943b/pymeshfix-0.13.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6fc0949af0cc1926918e95e0b2e27b74", "sha256": "5cd067aea1bdd31c914cd559f5154e11ff0f7d380ed05f4b5740ce6085f89430" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6fc0949af0cc1926918e95e0b2e27b74", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1321997, "upload_time": "2019-05-21T17:13:29", "url": "https://files.pythonhosted.org/packages/a1/97/1dbe49db7d68ebf0994894698a15b0ee6f6acdaa650029e97999a5d77e81/pymeshfix-0.13.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9275382724ea3c2ec1d4a553c6284d05", "sha256": "f6aa1735ad2707296136550ede08d0c09612ef907783502ea50f8e27fc608648" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9275382724ea3c2ec1d4a553c6284d05", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1642784, "upload_time": "2019-05-21T16:54:21", "url": "https://files.pythonhosted.org/packages/8f/4b/381d8fc46abff1dc6385a161101212c64fc02a282533c26eca6ea58488a6/pymeshfix-0.13.1-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "7cecd53c00d2d15ffbee82910773d8a0", "sha256": "f462f15f51ee13e3e9835831078256aca77c9ce11e3ba5f72e7bfe53411c436a" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7cecd53c00d2d15ffbee82910773d8a0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2093365, "upload_time": "2019-05-21T16:45:21", "url": "https://files.pythonhosted.org/packages/b6/3c/ef9953105468b825d53412b5313114e218130be73f894ed3d0f172964f99/pymeshfix-0.13.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cdbba39d6ede527e7d5100bc955f3983", "sha256": "d2c7db01607d8cf45c0b848072e819ce9e77cbcfd42e4d76ee46a4b4a7a1d4b0" }, "downloads": -1, "filename": "pymeshfix-0.13.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "cdbba39d6ede527e7d5100bc955f3983", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1322019, "upload_time": "2019-05-21T17:13:34", "url": "https://files.pythonhosted.org/packages/c4/8f/79dcb4402a2949c12791bce86feee2f8c6e2831aa9f16091a54f241fba18/pymeshfix-0.13.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d80dfbe2d397605c47bfcf2b4f59891f", "sha256": "d118b06d3b4535ec264bcbcd62ae312e2bce7c1de6dfa0071ac5e59e78477083" }, "downloads": -1, "filename": "pymeshfix-0.13.1.tar.gz", "has_sig": false, "md5_digest": "d80dfbe2d397605c47bfcf2b4f59891f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281608, "upload_time": "2019-05-21T16:45:23", "url": "https://files.pythonhosted.org/packages/67/9a/02e87be3524074127f7b3ce736ec3300c85e9cedc7373c884e33cc14d8f3/pymeshfix-0.13.1.tar.gz" } ], "0.13.2": [ { "comment_text": "", "digests": { "md5": "35762e9a18363af420719bbd575796cc", "sha256": "5940a464cdbcf7b8215a68c39590cf3aee68a2312d9a0a9ecffe9f5e5e7ec4ff" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "35762e9a18363af420719bbd575796cc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1650794, "upload_time": "2019-07-25T16:26:36", "url": "https://files.pythonhosted.org/packages/60/a6/ade3fab3d64f15e9e93dce9816dce59b65f773d200d47164fbdcd8b9f92f/pymeshfix-0.13.2-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "295388e51ca5545827bc5610d1fcd40c", "sha256": "5962e052be6ccfc9cc9098f156a5f492af886bdb6e3f25e23faf2ae38cc5bd0c" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "295388e51ca5545827bc5610d1fcd40c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2076951, "upload_time": "2019-07-25T16:17:12", "url": "https://files.pythonhosted.org/packages/dd/41/2246d45dd173707c0e5c1e3e553b828fd07ec962ad26e1d4ccdbd8efb5b0/pymeshfix-0.13.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "bfe4db91e303f67e5d7fdb475bf4ced4", "sha256": "4b1c7577d47b008124b56cabba4a0bf313354900ac33042f499cd242f260095f" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bfe4db91e303f67e5d7fdb475bf4ced4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2076915, "upload_time": "2019-07-25T16:17:14", "url": "https://files.pythonhosted.org/packages/5c/f5/e40737117860e318a20d8fbe1b50dec923a61785efb33b2454ed51449458/pymeshfix-0.13.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2cb098600d240e7ac3c5d4b4486b6870", "sha256": "2c9a540e05bd15e9dfa67a5fdadf50776bdf437764249324131238ed3e1a246b" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "2cb098600d240e7ac3c5d4b4486b6870", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1642073, "upload_time": "2019-07-25T16:26:38", "url": "https://files.pythonhosted.org/packages/70/3d/0b5ac635263ca2459870b8ba88f532200ecbc9413fa4c17686c74e0d971e/pymeshfix-0.13.2-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "6162d825c729cd5a7382deb2b374ae3a", "sha256": "cc98461cdbef389cbb57b6e7d9d25aba169830838178419aafb42dac44b05403" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6162d825c729cd5a7382deb2b374ae3a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2084946, "upload_time": "2019-07-25T16:17:16", "url": "https://files.pythonhosted.org/packages/41/16/145ec9561faec7d5b7e30e1f47f605354126e67fa914ab4179079a775292/pymeshfix-0.13.2-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "43f277f1430f9816dfbf9684bae79419", "sha256": "06e9042e72303c8b11aa4802ee6fcff5fd374f682538bc89f7665d1cf3b10804" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "43f277f1430f9816dfbf9684bae79419", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1320326, "upload_time": "2019-08-03T18:37:00", "url": "https://files.pythonhosted.org/packages/ce/9f/b89a60b6b3a53707ea1a4e438a3d0f7c9578026d3928fecce395e7d0c213/pymeshfix-0.13.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4f894835b1b6d9c1e113f455f798ba72", "sha256": "48e479aefb6483afc716ceb12be46a5507a8a5f221ffd1cc0b71482e02669687" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "4f894835b1b6d9c1e113f455f798ba72", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1642643, "upload_time": "2019-07-25T16:26:40", "url": "https://files.pythonhosted.org/packages/ae/97/6c878aa5d67038a18d918bfe415087183bd64056441f841887ba6ca13cf6/pymeshfix-0.13.2-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "c737db7d74363635e0e5240edb439a06", "sha256": "dca75b69ee54d9edf68ebae45ab2cfeb20e2fc70a6c315c68fa0dd331d3c784f" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c737db7d74363635e0e5240edb439a06", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2096141, "upload_time": "2019-07-25T16:17:18", "url": "https://files.pythonhosted.org/packages/b1/30/8ccc1b032ba403605e9e04ee22260ca5e810bcf62c0a51f94cd2a748bd7f/pymeshfix-0.13.2-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fa489c5ee3d7ed9f3266497dec243a21", "sha256": "a4b695b462e67eb89057849577fde394f12cd0b932bb0a564b78e2d7bea8d8fe" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "fa489c5ee3d7ed9f3266497dec243a21", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1322382, "upload_time": "2019-08-03T18:37:02", "url": "https://files.pythonhosted.org/packages/b5/90/fd591e5d4ed0fd85d6be52130aa0bc093dbeb79e1739d3daeb414ccfa50f/pymeshfix-0.13.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "61e884438cc20bcc259368412e3156b6", "sha256": "b05643c908899c79044817d64b42cbe47bb2b50bbb09e5b0aa6e2b0155461848" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "61e884438cc20bcc259368412e3156b6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1643151, "upload_time": "2019-07-25T16:26:42", "url": "https://files.pythonhosted.org/packages/32/45/07456a4b6026bb979dc6f69c63f872e2e132abc992ef768a4371c86217cf/pymeshfix-0.13.2-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "ba9cd90501a6e0002d7469bfdee62192", "sha256": "108fceb23e25bc0625f438a05d8eebfc970d648017f37150a5fb3746a87dc45e" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ba9cd90501a6e0002d7469bfdee62192", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2094508, "upload_time": "2019-07-25T16:17:21", "url": "https://files.pythonhosted.org/packages/95/dd/298f9d8cc0b5e518a3b4218818accde8700c196e142bae0a17751268c6ed/pymeshfix-0.13.2-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "704ed1a62f52dfc332cf300feed95a6e", "sha256": "727eaa04752f7a1b8fa9d0d754848f81a0073822d336fe6239eea4e50531bbc0" }, "downloads": -1, "filename": "pymeshfix-0.13.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "704ed1a62f52dfc332cf300feed95a6e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1322353, "upload_time": "2019-08-03T18:37:04", "url": "https://files.pythonhosted.org/packages/c4/d1/98deb1d59efcd7252959bd53fa5694078a8d46be777a1230d276e17139f8/pymeshfix-0.13.2-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "787f661ad602321b784e61f170354a24", "sha256": "b8eea7897bdab767bdba97b4a314412aef5b9d0535db9b01ad9032d082676ea1" }, "downloads": -1, "filename": "pymeshfix-0.13.2.tar.gz", "has_sig": false, "md5_digest": "787f661ad602321b784e61f170354a24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1282074, "upload_time": "2019-07-25T16:17:23", "url": "https://files.pythonhosted.org/packages/bc/49/52a79bf411c126c5f3ef31f87018235740cbfc9f023c5d4f1ad6c78a21d9/pymeshfix-0.13.2.tar.gz" } ], "0.13.3": [ { "comment_text": "", "digests": { "md5": "fb2abaa18ad2a254925bc7f098cfc493", "sha256": "034d47cfac2390a7fba926d5ecb42c827e343e6568f3ce55798fa2aa3151a872" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "fb2abaa18ad2a254925bc7f098cfc493", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1650434, "upload_time": "2019-10-17T02:08:31", "url": "https://files.pythonhosted.org/packages/c8/22/3a699671bb7880a01d1ff29e97490a424f43faeb44b2c00278c583f13373/pymeshfix-0.13.3-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8e8801c75f486263588fc35f0add40c8", "sha256": "feff20eb8b7387236379741b453957cb357b1d12fcd0ac41ee4000900980f325" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8e8801c75f486263588fc35f0add40c8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2076577, "upload_time": "2019-10-17T01:54:15", "url": "https://files.pythonhosted.org/packages/b2/f0/53c81b0b1a74c75407420046f520b513cb824513006bf4ed8638b08229eb/pymeshfix-0.13.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f19abbb5f39db36740c3df04cfb7f9cc", "sha256": "67415510d6c58885ebc77fb34259913e981b7adb671a787a8235724b4e5a9313" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f19abbb5f39db36740c3df04cfb7f9cc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2076572, "upload_time": "2019-10-17T01:54:18", "url": "https://files.pythonhosted.org/packages/e0/6e/7f9f24a16b64ce9695a7a1c2c007f9bb1f59ec757ab990d66cf152160ad1/pymeshfix-0.13.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ed91ad107422225be2a4e051524d2d0a", "sha256": "a0a8662fb196b590e7f0a79c39421a61ca4edb94fcd43bb64167294c381c1702" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ed91ad107422225be2a4e051524d2d0a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1641591, "upload_time": "2019-10-17T02:08:33", "url": "https://files.pythonhosted.org/packages/3a/78/ba9e630ce26a8ff7786dc0cd0fd20076ebb2b00539aa4b3a1174bbef42dd/pymeshfix-0.13.3-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8f8f26d5a895dc4ba348529c5a9a631b", "sha256": "17b311b10dbe3a3625f7af79335a235f51b139f280edc530c8d4beecdb8fe4c7" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8f8f26d5a895dc4ba348529c5a9a631b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2084687, "upload_time": "2019-10-17T01:54:20", "url": "https://files.pythonhosted.org/packages/73/6d/d19b92ab0382bf50417aff13621cbc7c7007c10c15c0e076284523eef7a5/pymeshfix-0.13.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "09476258c41445d97f3b9115735a12ce", "sha256": "fe49129e8a99c4b2d3eea9b946c504c4b4023c1dcc8d3eacfe69816b0a20ac36" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "09476258c41445d97f3b9115735a12ce", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1320161, "upload_time": "2019-10-17T01:27:20", "url": "https://files.pythonhosted.org/packages/a5/b8/ea15146852516bd269ea228d065160b3e6034c6c9294fc89bd99735792b7/pymeshfix-0.13.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ac34042345f10fabdade2d70b3d25ad4", "sha256": "b86eb25be3a1b5acc9589e543ae06bc190df00400944123760d3b7f1360d44ab" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ac34042345f10fabdade2d70b3d25ad4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1642340, "upload_time": "2019-10-17T02:08:36", "url": "https://files.pythonhosted.org/packages/f1/fa/73f29d853873d590f16e8a7def0430a9b1f4ad9b638ea75a5d90ad61ac4e/pymeshfix-0.13.3-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "2aac00d51d3c995ed6c2ddd0c1384073", "sha256": "6f09f669eb5b8fbc2d2a4ddd992094e64916e6f4e6c2ccb703d3d3f73b985c72" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2aac00d51d3c995ed6c2ddd0c1384073", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2096859, "upload_time": "2019-10-17T01:54:22", "url": "https://files.pythonhosted.org/packages/f6/10/2a1b2d65bc0ec73dd9bdc8a26ba29e4758e6aa4d2878583446a3bd1e4d05/pymeshfix-0.13.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9a95bb472c96053dca78387b8b13bfaf", "sha256": "8434fe303e9401b73b7bfddf3fcd503f15341ee44459f084821343449e2b10e1" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9a95bb472c96053dca78387b8b13bfaf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1322235, "upload_time": "2019-10-17T01:27:23", "url": "https://files.pythonhosted.org/packages/40/8b/1056f502f0942581875c961e43cb0eb667f1216a9e55059a10729a46aaf5/pymeshfix-0.13.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e7486dbd9810a2d348cc5893d52868fb", "sha256": "3c2c0bccc8fc6f0f6184e9f62c7d9ce98c88804b8c65c95aa6534c622fcf9774" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "e7486dbd9810a2d348cc5893d52868fb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1642786, "upload_time": "2019-10-17T02:08:38", "url": "https://files.pythonhosted.org/packages/da/d7/4a3379729846609f740c74c3acad5673741cd03f612438ed49492ada8212/pymeshfix-0.13.3-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "a6d2faa4cca87697f156085d356fb16e", "sha256": "bc227ef2593038ac27824a319cf59da1f5722d60367c0f43ad4d111383155d3b" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a6d2faa4cca87697f156085d356fb16e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2094850, "upload_time": "2019-10-17T01:54:25", "url": "https://files.pythonhosted.org/packages/83/9d/03df70ed1a1db6ae7930d1451a6038908b2715b14fb9d8cf3e24db880e6e/pymeshfix-0.13.3-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5fc86ff0e61baf31f48eaaae3197517b", "sha256": "6797188eb3b71754fd9484195f0ccd2c1935a704c927bde3b7247c84abb4b9fa" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5fc86ff0e61baf31f48eaaae3197517b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1322237, "upload_time": "2019-10-17T01:27:25", "url": "https://files.pythonhosted.org/packages/f6/f9/ac351d336da124a393b2b6bb4e85a4d98ebd645d8cb4819add64a8e76040/pymeshfix-0.13.3-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "192b49bb214739db875889d19ea97e72", "sha256": "a85634672fdc19f32f1b8e6daa7d6005c05dd9ba585a6fbf43a6bfbb70e4923a" }, "downloads": -1, "filename": "pymeshfix-0.13.3.tar.gz", "has_sig": false, "md5_digest": "192b49bb214739db875889d19ea97e72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1282098, "upload_time": "2019-10-17T01:54:27", "url": "https://files.pythonhosted.org/packages/b0/30/905756976c9a3cc3432b89020ee4618727bbe0bfa26e42e3268ddae1097f/pymeshfix-0.13.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "fb2abaa18ad2a254925bc7f098cfc493", "sha256": "034d47cfac2390a7fba926d5ecb42c827e343e6568f3ce55798fa2aa3151a872" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "fb2abaa18ad2a254925bc7f098cfc493", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1650434, "upload_time": "2019-10-17T02:08:31", "url": "https://files.pythonhosted.org/packages/c8/22/3a699671bb7880a01d1ff29e97490a424f43faeb44b2c00278c583f13373/pymeshfix-0.13.3-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8e8801c75f486263588fc35f0add40c8", "sha256": "feff20eb8b7387236379741b453957cb357b1d12fcd0ac41ee4000900980f325" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8e8801c75f486263588fc35f0add40c8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2076577, "upload_time": "2019-10-17T01:54:15", "url": "https://files.pythonhosted.org/packages/b2/f0/53c81b0b1a74c75407420046f520b513cb824513006bf4ed8638b08229eb/pymeshfix-0.13.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f19abbb5f39db36740c3df04cfb7f9cc", "sha256": "67415510d6c58885ebc77fb34259913e981b7adb671a787a8235724b4e5a9313" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f19abbb5f39db36740c3df04cfb7f9cc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2076572, "upload_time": "2019-10-17T01:54:18", "url": "https://files.pythonhosted.org/packages/e0/6e/7f9f24a16b64ce9695a7a1c2c007f9bb1f59ec757ab990d66cf152160ad1/pymeshfix-0.13.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ed91ad107422225be2a4e051524d2d0a", "sha256": "a0a8662fb196b590e7f0a79c39421a61ca4edb94fcd43bb64167294c381c1702" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ed91ad107422225be2a4e051524d2d0a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1641591, "upload_time": "2019-10-17T02:08:33", "url": "https://files.pythonhosted.org/packages/3a/78/ba9e630ce26a8ff7786dc0cd0fd20076ebb2b00539aa4b3a1174bbef42dd/pymeshfix-0.13.3-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "8f8f26d5a895dc4ba348529c5a9a631b", "sha256": "17b311b10dbe3a3625f7af79335a235f51b139f280edc530c8d4beecdb8fe4c7" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8f8f26d5a895dc4ba348529c5a9a631b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2084687, "upload_time": "2019-10-17T01:54:20", "url": "https://files.pythonhosted.org/packages/73/6d/d19b92ab0382bf50417aff13621cbc7c7007c10c15c0e076284523eef7a5/pymeshfix-0.13.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "09476258c41445d97f3b9115735a12ce", "sha256": "fe49129e8a99c4b2d3eea9b946c504c4b4023c1dcc8d3eacfe69816b0a20ac36" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "09476258c41445d97f3b9115735a12ce", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1320161, "upload_time": "2019-10-17T01:27:20", "url": "https://files.pythonhosted.org/packages/a5/b8/ea15146852516bd269ea228d065160b3e6034c6c9294fc89bd99735792b7/pymeshfix-0.13.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ac34042345f10fabdade2d70b3d25ad4", "sha256": "b86eb25be3a1b5acc9589e543ae06bc190df00400944123760d3b7f1360d44ab" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ac34042345f10fabdade2d70b3d25ad4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1642340, "upload_time": "2019-10-17T02:08:36", "url": "https://files.pythonhosted.org/packages/f1/fa/73f29d853873d590f16e8a7def0430a9b1f4ad9b638ea75a5d90ad61ac4e/pymeshfix-0.13.3-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "2aac00d51d3c995ed6c2ddd0c1384073", "sha256": "6f09f669eb5b8fbc2d2a4ddd992094e64916e6f4e6c2ccb703d3d3f73b985c72" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2aac00d51d3c995ed6c2ddd0c1384073", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2096859, "upload_time": "2019-10-17T01:54:22", "url": "https://files.pythonhosted.org/packages/f6/10/2a1b2d65bc0ec73dd9bdc8a26ba29e4758e6aa4d2878583446a3bd1e4d05/pymeshfix-0.13.3-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9a95bb472c96053dca78387b8b13bfaf", "sha256": "8434fe303e9401b73b7bfddf3fcd503f15341ee44459f084821343449e2b10e1" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9a95bb472c96053dca78387b8b13bfaf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1322235, "upload_time": "2019-10-17T01:27:23", "url": "https://files.pythonhosted.org/packages/40/8b/1056f502f0942581875c961e43cb0eb667f1216a9e55059a10729a46aaf5/pymeshfix-0.13.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e7486dbd9810a2d348cc5893d52868fb", "sha256": "3c2c0bccc8fc6f0f6184e9f62c7d9ce98c88804b8c65c95aa6534c622fcf9774" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "e7486dbd9810a2d348cc5893d52868fb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1642786, "upload_time": "2019-10-17T02:08:38", "url": "https://files.pythonhosted.org/packages/da/d7/4a3379729846609f740c74c3acad5673741cd03f612438ed49492ada8212/pymeshfix-0.13.3-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "a6d2faa4cca87697f156085d356fb16e", "sha256": "bc227ef2593038ac27824a319cf59da1f5722d60367c0f43ad4d111383155d3b" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a6d2faa4cca87697f156085d356fb16e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2094850, "upload_time": "2019-10-17T01:54:25", "url": "https://files.pythonhosted.org/packages/83/9d/03df70ed1a1db6ae7930d1451a6038908b2715b14fb9d8cf3e24db880e6e/pymeshfix-0.13.3-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5fc86ff0e61baf31f48eaaae3197517b", "sha256": "6797188eb3b71754fd9484195f0ccd2c1935a704c927bde3b7247c84abb4b9fa" }, "downloads": -1, "filename": "pymeshfix-0.13.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5fc86ff0e61baf31f48eaaae3197517b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1322237, "upload_time": "2019-10-17T01:27:25", "url": "https://files.pythonhosted.org/packages/f6/f9/ac351d336da124a393b2b6bb4e85a4d98ebd645d8cb4819add64a8e76040/pymeshfix-0.13.3-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "192b49bb214739db875889d19ea97e72", "sha256": "a85634672fdc19f32f1b8e6daa7d6005c05dd9ba585a6fbf43a6bfbb70e4923a" }, "downloads": -1, "filename": "pymeshfix-0.13.3.tar.gz", "has_sig": false, "md5_digest": "192b49bb214739db875889d19ea97e72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1282098, "upload_time": "2019-10-17T01:54:27", "url": "https://files.pythonhosted.org/packages/b0/30/905756976c9a3cc3432b89020ee4618727bbe0bfa26e42e3268ddae1097f/pymeshfix-0.13.3.tar.gz" } ] }