{ "info": { "author": "Angus Johnson, Maxime Chalton, Lukas Treyer, Gregor Ratajc", "author_email": "me@gregorratajc.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Other Environment", "Intended Audience :: Developers", "License :: OSI Approved", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: C++", "Programming Language :: Cython", "Programming Language :: Python", "Programming Language :: Python :: 3", "Topic :: Multimedia :: Graphics", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "About\n=====\n\n.. image:: https://badge.fury.io/py/pyclipper.svg\n :target: https://badge.fury.io/py/pyclipper\n.. image:: https://travis-ci.org/greginvm/pyclipper.svg?branch=master\n :target: https://travis-ci.org/greginvm/pyclipper\n.. image:: https://ci.appveyor.com/api/projects/status/8w19hrxjoohu489c/branch/master?svg=true\n :target: https://ci.appveyor.com/project/greginvm/pyclipper/branch/master\n\nPyclipper is a Cython wrapper exposing public functions and classes of\nthe C++ translation of the `Angus Johnson's Clipper library (ver.\n6.4.2) `__.\n\nPyclipper releases were tested with Python 2.7 and 3.4 on Linux (Ubuntu\n14.04, x64) and Windows (8.1, x64).\n\nSource code is available on\n`GitHub `__. The package is published on \n`PyPI `__.\n\n\nAbout Clipper\n-------------\n\n Clipper - an open source freeware library for clipping and\n offsetting lines and polygons.\n\n The Clipper library performs line & polygon clipping -\n intersection, union, difference & exclusive-or, and line &\n polygon offsetting. The library is based on Vatti's clipping\n algorithm.\n\n \\ `Angus Johnson's Clipper\n library `__\\ \n\nInstall\n=======\n\nDependencies\n------------\n\nCython dependency is optional. Cpp sources generated with Cython are\navailable in releases.\n\nNote on using the ``setup.py``:\n\n``setup.py`` operates in 2 modes that are based on the presence of the\n``dev`` file in the root of the project.\n\n- When ``dev`` is **present**, Cython will be used to compile the ``.pyx``\n sources. This is the *development mode* (as you get it in the git\n repository).\n- When ``dev`` is **absent**, C/C++ compiler will be used to compile the\n ``.cpp`` sources (that were prepared in in the development mode).\n This is the distribution mode (as you get it on PyPI).\n\nThis way the package can be used without or with an incompatible version\nof Cython.\n\nThe idea comes from `Matt Shannon's bandmat\nlibrary `__.\n\nFrom PyPI\n---------\n\nCython not required.\n\n::\n\n pip install pyclipper\n\n\nFrom source\n-----------\n\nCython required.\n\nClone the repository:\n\n::\n\n git clone git@github.com:greginvm/pyclipper.git\n\n\nInstall:\n\n::\n\n python setup.py install\n\n\nAfter every modification of ``.pyx`` files compile with Cython:\n\n::\n\n python setup.py build_ext --inplace\n\n\nClippers' preprocessor directives\n---------------------------------\nClipper can be compiled with the following preprocessor directives: ``use_int32``, ``use_xyz``, ``use_lines`` and ``use_deprecated``. \nAmong these the ``use_int32`` and ``use_lines`` can be used with Pyclipper.\n\n- ``use_int32`` - when enabled 32bit ints are used instead of 64bit ints. This improve performance but coordinate values are limited to the range +/- 46340. In Pyclipper this directive is **disabled** by default.\n\n- ``use_lines`` - enables line clipping. Adds a very minor cost to performance. In Pyclipper this directive is **enabled** by default (since version 0.9.2b0).\n\nIn case you would want to change these settings, clone this repository and change the ``define_macros`` collection (``setup.py``, pyclipper extension definition). Add a set like ``('use_int32', 1)`` to enable the directive, or remove the set to disable it. After that you need to rebuild the package.\n\nHow to use\n==========\n\nThis wrapper library tries to follow naming conventions of the original\nlibrary.\n\n- ``ClipperLib`` namespace is represented by the ``pyclipper`` module,\n- classes ``Clipper`` and ``ClipperOffset`` -> \n ``Pyclipper`` and ``PyclipperOffset``,\n- when Clipper is overloading functions with different number of\n parameters or different types (eg. ``Clipper.Execute``, one function\n fills a list of paths the other PolyTree) that becomes\n ``Pyclipper.Execute`` and ``Pyclipper.Execute2``.\n\nBasic clipping example (based on `Angus Johnson's Clipper\nlibrary `__):\n\n.. code:: python\n\n import pyclipper\n\n subj = (\n ((180, 200), (260, 200), (260, 150), (180, 150)),\n ((215, 160), (230, 190), (200, 190))\n )\n clip = ((190, 210), (240, 210), (240, 130), (190, 130))\n\n pc = pyclipper.Pyclipper()\n pc.AddPath(clip, pyclipper.PT_CLIP, True)\n pc.AddPaths(subj, pyclipper.PT_SUBJECT, True)\n\n solution = pc.Execute(pyclipper.CT_INTERSECTION, pyclipper.PFT_EVENODD, pyclipper.PFT_EVENODD) \n\n # solution (a list of paths): [[[240, 200], [190, 200], [190, 150], [240, 150]], [[200, 190], [230, 190], [215, 160]]]\n\n\nBasic offset example:\n\n.. code:: python\n\n import pyclipper\n\n subj = ((180, 200), (260, 200), (260, 150), (180, 150))\n\n pco = pyclipper.PyclipperOffset()\n pco.AddPath(subj, pyclipper.JT_ROUND, pyclipper.ET_CLOSEDPOLYGON)\n\n solution = pco.Execute(-7.0)\n\n # solution (a list of paths): [[[253, 193], [187, 193], [187, 157], [253, 157]]]\n\nThe Clipper library uses integers instead of floating point values to\npreserve numerical robustness. If you need to scale coordinates of your polygons, this library provides helper functions ``scale_to_clipper()`` and ``scale_from_clipper()`` to achieve that. \n\nMigrating from Pyclipper ``0.9.3b0``\n------------------------------------\n\nIn previous version of Pyclipper (``0.9.3b0``) polygons could be automatically scaled using the ``SCALING_FACTOR`` variable. This was removed in version ``1.0.0`` due to inexact conversions related to floating point operations. This way the library now provides the original numerical robustness of the base library.\n\nThe ``SCALING_FACTOR`` removal **breaks backward compatibility**. \nFor an explanation and help with migration, see https://github.com/greginvm/pyclipper/wiki/Deprecating-SCALING_FACTOR.\n\nAuthors\n=======\n\n- The Clipper library is written by `Angus\n Johnson `__,\n- This wrapper was initially written by `Maxime\n Chalton `__,\n- Adaptions to make it work with version 5 written by `Lukas\n Treyer `__,\n- Adaptions to make it work with version 6.2.1 and PyPI package written by `Gregor Ratajc `__,\n- ``SCALING_FACTOR`` removal and additions to documentation by Michael Schwarz (@Feuermurmel),\n- Bug fix `sympy.Zero` is not a collection by Jamie Bull (@jamiebull1),\n- Travis CI and Appveyor CI integration for continuous builds of wheel packages by Cosimo Lupo (@anthrotype).\n\nThe package is maintained by `Gregor Ratajc `__.\n\nLicense\n=======\n\n- Pyclipper is available under `MIT\n license `__.\n- The core Clipper library is available under `Boost Software\n License `__. Freeware for both\n open source and commercial applications.\n\nChangelog\n=========\n\n1.1.0\n-------\n\n- Updated embedded Clipper library to version 6.4.2.\n\n1.0.6\n-------\n- Added support for Python 3.6.\n\n1.0.3\n-------\n- added Travis CI and Appveyor CI to build wheel packages (thanks to @anthrotype)\n\n1.0.2\n-------\n- bug fix: `sympy.Zero` recognized as a collection (thanks to @jamiebull1)\n\n1.0.0\n-------\n- **(breaks backwards compatibility)** removes SCALING_FACTOR (thanks to @Feuermurmel)\n\n0.9.3b0\n-------\n- Applied SCALING_FACTOR to the relevant function parameters and class properties\n- Refactored tests\n\n0.9.2b1\n-------\n- bug fix: Fix setting of the PyPolyNode.IsHole property\n\n0.9.2b0\n-------\n- enable preprocessor directive ``use_lines`` by default,\n- bug fix: PyPolyNode.Contour that is now one path and not a list of paths as it was previously.\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/greginvm/pyclipper", "keywords": "polygon clipping, polygon intersection, polygon union, polygon offsetting, polygon boolean, polygon, clipping, clipper, vatti", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pyclipper", "package_url": "https://pypi.org/project/pyclipper/", "platform": "", "project_url": "https://pypi.org/project/pyclipper/", "project_urls": { "Homepage": "https://github.com/greginvm/pyclipper" }, "release_url": "https://pypi.org/project/pyclipper/1.1.0.post1/", "requires_dist": null, "requires_python": "", "summary": "Cython wrapper for the C++ translation of the Angus Johnson's Clipper library (ver. 6.4.2)", "version": "1.1.0.post1" }, "last_serial": 4603265, "releases": { "0.9.1b0": [ { "comment_text": "", "digests": { "md5": "1b89ee015c789a086fa26e90ae418668", "sha256": "6ef099b0cfefc22e09d61a694af30462feb6c3c410983c28c8e672221c239dc5" }, "downloads": -1, "filename": "pyclipper-0.9.1b0.tar.gz", "has_sig": false, "md5_digest": "1b89ee015c789a086fa26e90ae418668", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93218, "upload_time": "2015-03-18T16:32:58", "url": "https://files.pythonhosted.org/packages/76/65/d5458029f9abc2e4f9a587a290691928a3374ddac3fae45c220bd7a2604f/pyclipper-0.9.1b0.tar.gz" } ], "0.9.2b0": [ { "comment_text": "", "digests": { "md5": "41fded3535cf4922bb37d85162f8afe4", "sha256": "57fcd64cf7dab4ed8e98d827ff7f8f4123670a137c33d8a23b67a10f83097934" }, "downloads": -1, "filename": "pyclipper-0.9.2b0.tar.gz", "has_sig": false, "md5_digest": "41fded3535cf4922bb37d85162f8afe4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93468, "upload_time": "2015-03-20T13:00:24", "url": "https://files.pythonhosted.org/packages/5e/99/14c49084bdc8beeec47557958cbcda812473f650f1698c164ccd43905dee/pyclipper-0.9.2b0.tar.gz" } ], "0.9.2b1": [ { "comment_text": "", "digests": { "md5": "818cc929ae4d6df5cb03e940c838b391", "sha256": "24fc820dc03dcbed94cb327bb2df9a2cb5d39522acf6af1a148bfc19aabceb4d" }, "downloads": -1, "filename": "pyclipper-0.9.2b1.tar.gz", "has_sig": false, "md5_digest": "818cc929ae4d6df5cb03e940c838b391", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93483, "upload_time": "2015-03-25T16:03:37", "url": "https://files.pythonhosted.org/packages/12/ea/a2535ad7aa58ac95503a848738e3c45955fe76244d8a0cff1bdb9f43ce3f/pyclipper-0.9.2b1.tar.gz" } ], "0.9.3b0": [ { "comment_text": "", "digests": { "md5": "a5b15e70114f317f88e3343fd99baf0d", "sha256": "6a958542e4e327a06628409d70c012f81692f8f09a28fd4af968278ee9a2c255" }, "downloads": -1, "filename": "pyclipper-0.9.3b0.tar.gz", "has_sig": false, "md5_digest": "a5b15e70114f317f88e3343fd99baf0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 94023, "upload_time": "2015-03-25T23:15:20", "url": "https://files.pythonhosted.org/packages/e1/a2/d080e238dc9c536316fe70ee22b32cf017e3afc33c3576811b9f84769627/pyclipper-0.9.3b0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "da929d5ffadc7051c3705c8246827020", "sha256": "35eadefdd9a455ddd23f6a44c0ffdf0017674c987c43f544b60ef42a5ddbf57f" }, "downloads": -1, "filename": "pyclipper-1.0.1.tar.gz", "has_sig": false, "md5_digest": "da929d5ffadc7051c3705c8246827020", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107917, "upload_time": "2015-11-23T20:49:49", "url": "https://files.pythonhosted.org/packages/51/99/5e4d31497053d6bb88851f3eefec1d68ad13b73565a0f02eb13a073f0dd4/pyclipper-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "5670a3d02d151613c8852dde349ed9e4", "sha256": "6824c3e2b9206956b9dc33e9a3a3e21a24f930b7e9ff15a521eb7aef8fdac5ae" }, "downloads": -1, "filename": "pyclipper-1.0.2.tar.gz", "has_sig": false, "md5_digest": "5670a3d02d151613c8852dde349ed9e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108702, "upload_time": "2016-08-17T12:09:40", "url": "https://files.pythonhosted.org/packages/f3/5c/ee11da3a14bc2cb6add44e1fb00e5c3c96947e532f4067a44b723566e2bc/pyclipper-1.0.2.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "b041c0ed9b272b2cc5f2af7c9b179cda", "sha256": "1bd5b8b08e6df8b8e028cb1302617186a1459e0262cc53a36a3f785ee4a581d9" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b041c0ed9b272b2cc5f2af7c9b179cda", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 263108, "upload_time": "2016-09-03T21:37:57", "url": "https://files.pythonhosted.org/packages/a9/7c/d7fbe306c85cb2028de68e74d8cb10b8a925bfa3730137d3493aede09d56/pyclipper-1.0.5-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4f79eb979c1e25907b62f72439c70b26", "sha256": "8122568a61529cf9fcdfa757ec7e9b6409e56264ce2e2c59900f74979646b23a" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4f79eb979c1e25907b62f72439c70b26", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 525737, "upload_time": "2016-09-03T21:38:06", "url": "https://files.pythonhosted.org/packages/8f/e0/920d9eb50e5a8d7051a8554b20b6f34813970c467d27fbb7fa397ec1488d/pyclipper-1.0.5-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "8f597740374e0dbed22fc66ea9c4908b", "sha256": "0409232641cfa35c442300fc6d8daadf3c276a7ad03d42b63c6ce830de2b8c21" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8f597740374e0dbed22fc66ea9c4908b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 543819, "upload_time": "2016-09-03T21:38:16", "url": "https://files.pythonhosted.org/packages/c4/d2/057db9e015d213658c6df1d371f48b26dd3e7d876f21b6cf69a236758745/pyclipper-1.0.5-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e3b63e0e23899543f749920fa55c17ae", "sha256": "07b25a9edcf8c2fcd51ac52c7e1de3cbe6f57ce277c199e88819ce3f90a39879" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e3b63e0e23899543f749920fa55c17ae", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 525730, "upload_time": "2016-09-03T21:38:25", "url": "https://files.pythonhosted.org/packages/ff/97/888222acd9ca01a10cb5841b6aacd6d48532f86f870e20b679dd5b4e264c/pyclipper-1.0.5-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "dc76325cd31b5d07d381a3c460ee29c6", "sha256": "74da8508190fa02831da51c47dd2fac90ec4cd4b0f2d9ed4271486da0c650797" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dc76325cd31b5d07d381a3c460ee29c6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 543833, "upload_time": "2016-09-03T21:38:34", "url": "https://files.pythonhosted.org/packages/78/02/0ca18cbbcbbbac29ff259c65886e2c6e71cf7dc03c59f688359d188c3f98/pyclipper-1.0.5-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2e4168c48687473074b0266955f26e8d", "sha256": "614d2e52ac82a8d28b23fac5e7e013453672e9648d71c5ea7856167eb3fca338" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "2e4168c48687473074b0266955f26e8d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 85526, "upload_time": "2016-09-03T21:38:39", "url": "https://files.pythonhosted.org/packages/18/0e/a90571f860bac3f2a59aa345c805edab91969e3eada24585277e49bb28d3/pyclipper-1.0.5-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "fa51f04fa6b4c19028d2297aff60d60a", "sha256": "af098c2d13a06b2e67c29d9092b64972b8b9d6523cebc538cd9afe4342583416" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "fa51f04fa6b4c19028d2297aff60d60a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 103745, "upload_time": "2016-09-03T21:38:43", "url": "https://files.pythonhosted.org/packages/c7/f9/2c59baad8d193d5a3289373d5cdc0f0194ef424af6ee17ee2da05a9b8a0f/pyclipper-1.0.5-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4fb949690e6980ea2f6eec4985412062", "sha256": "efd0d7275661b57cbd6c79585d6ed95a7318ac7852c7c4b12225339ff160dcac" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "4fb949690e6980ea2f6eec4985412062", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 262887, "upload_time": "2016-09-03T21:38:49", "url": "https://files.pythonhosted.org/packages/99/cd/1301869582cd1f6d40a1855e4dfcc22c6a994122bd8717ce7c272b8ffd6c/pyclipper-1.0.5-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a351b118187470cb672692754360d172", "sha256": "31b3f2125a8e166395291f4ff85674f3bb850f3eaa529f6111abfd6e84450dc3" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp33-cp33m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a351b118187470cb672692754360d172", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 526975, "upload_time": "2016-09-03T21:38:57", "url": "https://files.pythonhosted.org/packages/18/e9/f5516fba68b4acb464d5f15de13ab1c00fb12579f2b9b81501f6bec3e028/pyclipper-1.0.5-cp33-cp33m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "f8599897805868813593abe506c273c4", "sha256": "e18577fc8cf1ed3f9e1fb3dc31107ff6d2130711c7ffdcfef5208a66b6c73683" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f8599897805868813593abe506c273c4", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 545725, "upload_time": "2016-09-03T21:39:07", "url": "https://files.pythonhosted.org/packages/ee/47/90020bde045aeaa7bc4019f070d083bdc7d9e8265b2819a634e4bd953be6/pyclipper-1.0.5-cp33-cp33m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4f18a82db6b57eba74e0ed631c4c7c4c", "sha256": "8ed7a66ce7fb67ee7a89e5851b9f20b67ab55837019f2c0242d8f93a54785d95" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp33-cp33m-win32.whl", "has_sig": false, "md5_digest": "4f18a82db6b57eba74e0ed631c4c7c4c", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 84080, "upload_time": "2016-09-03T21:39:11", "url": "https://files.pythonhosted.org/packages/9c/1f/e8e577ef2dac431c2afb8fa50e0d6615518905b380564347a342d5321780/pyclipper-1.0.5-cp33-cp33m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9b3b19f74783fa6066d87cf7ee3d694f", "sha256": "612c81242026315d7fc50c495a5eb63bb29c44b14f7c4c1951641e2798bf46c1" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp33-cp33m-win_amd64.whl", "has_sig": false, "md5_digest": "9b3b19f74783fa6066d87cf7ee3d694f", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 96953, "upload_time": "2016-09-03T21:39:15", "url": "https://files.pythonhosted.org/packages/53/46/c92e05661fcd5c37e9c003d0d99573c0d4886b1b5aa2006a37f9d252020d/pyclipper-1.0.5-cp33-cp33m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1a1932eaa99157273ab27ac989ad9b6b", "sha256": "6acbe8b6bb4e57c32a1fcb4272cb92d63dd4982d200fd8ab2a409f2014e029ca" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "1a1932eaa99157273ab27ac989ad9b6b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 263179, "upload_time": "2016-09-03T21:39:20", "url": "https://files.pythonhosted.org/packages/bf/dd/8b39593cc1cd9ecc7801c07e65c6a8f94a989e0c0f2f504c566c4d2ca6c8/pyclipper-1.0.5-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "98593c471774619b9d8741d8d0813991", "sha256": "0dac9ea21b5f532ee7c3b53b277c8a8cf2842e371528d9ce1f84c6d7c71df053" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "98593c471774619b9d8741d8d0813991", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 538097, "upload_time": "2016-09-03T21:39:30", "url": "https://files.pythonhosted.org/packages/4c/d1/45bb86376d452e42c99c34d90e33f42dda8d49c8e3c2a62264474dbfdaad/pyclipper-1.0.5-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "eed63aa98975abc542520fd1d6531cbb", "sha256": "fcf835fc2fd43128c2574a286873b34c96f0da744f5ef927ee3fb9b9788d7b6c" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eed63aa98975abc542520fd1d6531cbb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 557770, "upload_time": "2016-09-03T21:39:41", "url": "https://files.pythonhosted.org/packages/83/83/fb7ae81a5821f38af7e88649f191a063d674d399c8bcc3ea1f991a21ddb3/pyclipper-1.0.5-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "10cc4d0d73a59e5e3449129934104485", "sha256": "3dd2b1047c019d8b080f68dbb92c1fe52bd5278567db03335ca7eeaa82e4f8af" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "10cc4d0d73a59e5e3449129934104485", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 84136, "upload_time": "2016-09-03T21:39:45", "url": "https://files.pythonhosted.org/packages/d9/de/35842185905a2280edc82183956e2564b82330d1b44ad4fe9fa7c9741785/pyclipper-1.0.5-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "879bed0c90dda3fffa532cdb775f87c8", "sha256": "882c44eb313c5628745e0b5f14b3eadf09a5080947dfcbbc7124fb351977545c" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "879bed0c90dda3fffa532cdb775f87c8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 97083, "upload_time": "2016-09-03T21:39:49", "url": "https://files.pythonhosted.org/packages/93/8a/ed520b42301fd789e1ac3c5b34cf59e1bc567c81213152a1b7f90b961238/pyclipper-1.0.5-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7e6e216143930512bb1a8e164f0edee8", "sha256": "ad1f50b549eeb15b4cce9c0a2230c46714425793e66f1d7ee89d2e2f79b1db54" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "7e6e216143930512bb1a8e164f0edee8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 262618, "upload_time": "2016-09-03T21:39:55", "url": "https://files.pythonhosted.org/packages/f8/21/780c6d685ee86ea20c5c3c591d669cc4c843f2086b3e90a3697fc30a5730/pyclipper-1.0.5-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1d5c23c98473b1648c45e5910c2c46c8", "sha256": "126540c99519152e68864c7dc0ec33388233f97c8ff04418a2cde4af0dd08fb8" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1d5c23c98473b1648c45e5910c2c46c8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 536004, "upload_time": "2016-09-03T21:40:04", "url": "https://files.pythonhosted.org/packages/c3/09/21055dd1fb4732b7a82f595f15bb276b609c3262eaf49697d7e0b6ff0927/pyclipper-1.0.5-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "f4f7e4ae01d100374c175df18df98483", "sha256": "d24fb7c5ef6d49887b8a89ab771b11260013db998a75b46f47e4fb1d686b3d7d" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f4f7e4ae01d100374c175df18df98483", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 554259, "upload_time": "2016-09-03T21:40:14", "url": "https://files.pythonhosted.org/packages/78/44/f83766d0e0c8ac93e48dd234a5faf627bd3945bed537424b92135820a0fc/pyclipper-1.0.5-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ca46cd496f8595ae3f326bbc48e49c70", "sha256": "027faccafd67723b39798ff9449508cda4be07e0c4d4b6d26165266028bc6f19" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ca46cd496f8595ae3f326bbc48e49c70", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 83507, "upload_time": "2016-09-03T21:40:18", "url": "https://files.pythonhosted.org/packages/ab/88/7eee47266cb1578eceed03df4059587f5483dd14e039c10becc903695eb0/pyclipper-1.0.5-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a35421baeb947f8b782ffe50fa7388bc", "sha256": "127f026c968c644cbb9e5c9062e3d789d88ca5bcf50dbf56aa007f26c2a96ac1" }, "downloads": -1, "filename": "pyclipper-1.0.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a35421baeb947f8b782ffe50fa7388bc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 95270, "upload_time": "2016-09-03T21:40:21", "url": "https://files.pythonhosted.org/packages/a8/34/87a2ec952d782307e5302766e98accee553324636322da3d81a28929d22c/pyclipper-1.0.5-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "05c8d12c19e9d9b32b6da0bac69ec0fa", "sha256": "c26e820cb3b7ff2542a99894db2e1a88e4fc5d96e58973f01d4dc4b999a948c7" }, "downloads": -1, "filename": "pyclipper-1.0.5.zip", "has_sig": false, "md5_digest": "05c8d12c19e9d9b32b6da0bac69ec0fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117740, "upload_time": "2016-09-03T21:40:25", "url": "https://files.pythonhosted.org/packages/1c/18/dc784b3e6546e0cff89b2df6302495a9b04568bc5b2d069c05780f280c9e/pyclipper-1.0.5.zip" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "6d8b37b31fc8d20929ba472abbb52c14", "sha256": "f6af81fedc30d58054356e4afbebdb32f06b14f4f89ad4b98c3c6a281ead3fe7" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "6d8b37b31fc8d20929ba472abbb52c14", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 265730, "upload_time": "2017-01-20T13:12:20", "url": "https://files.pythonhosted.org/packages/73/a7/c1e6390984b91133badf2cb28427e20b3c6ec425eb6683ed0d79d3f25251/pyclipper-1.0.6-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "449209701459695e00bbc3a575c01282", "sha256": "879728471e65b827c74eb6ac1f41be29bbb11c05d8422aff84b4df71e2c90925" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp27-cp27m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "449209701459695e00bbc3a575c01282", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 532148, "upload_time": "2017-01-20T13:12:22", "url": "https://files.pythonhosted.org/packages/0f/40/fffa88703637a7d7fa3b00b7cb5143e0e644f41a798b0564ea048aeab04e/pyclipper-1.0.6-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "8aa6ba07a700830b991baeeda9cc1bea", "sha256": "74d94630444bb3012b0f6b26c134c6ef9b8b397fd4f2d630a0a8355f67e9fb26" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "8aa6ba07a700830b991baeeda9cc1bea", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 549320, "upload_time": "2017-01-20T13:12:24", "url": "https://files.pythonhosted.org/packages/10/7c/c2fc1ba3d0d88d96ff003d260a5e1fbcbb06a41b8206d0bbbb72c976e2f9/pyclipper-1.0.6-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "000bc4a382898d729dfb687c0576d04f", "sha256": "6d6ee9c1003525a99c2e5a78e491c51fe36c73cb7dd0a9ec3c3406f392c88eb0" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp27-cp27mu-manylinux1_i686.whl", "has_sig": true, "md5_digest": "000bc4a382898d729dfb687c0576d04f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 532134, "upload_time": "2017-01-20T13:12:29", "url": "https://files.pythonhosted.org/packages/0d/3c/fe23f0a32c36abff6bd97dafc7faaab7133198979a65270945a7050b483b/pyclipper-1.0.6-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "c6ab390823023dc450e2a69c80dfa2e5", "sha256": "86677c7414ff1030412259494d24e6fa2df25d6d0a245c18cf2fac291e6fafb5" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "c6ab390823023dc450e2a69c80dfa2e5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 549396, "upload_time": "2017-01-20T13:12:32", "url": "https://files.pythonhosted.org/packages/a8/76/0491cf4f0a4466d856712a98a48971626f803b586cda76ab2faafd028c8b/pyclipper-1.0.6-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "35ad203419021b7dca878babbdd7c2fc", "sha256": "6f872f5095985f54db3affe0bd41e4821db981783eb512c12423504c1c5f4e09" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "35ad203419021b7dca878babbdd7c2fc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 86916, "upload_time": "2017-01-20T13:12:26", "url": "https://files.pythonhosted.org/packages/5f/02/5f79000c6b2d3cffd472cda93ad5474189bc25a6f78797065a3578fbff3e/pyclipper-1.0.6-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e84ba79f0d6ac9be59d5703cd5f556f1", "sha256": "b174f4de3e8f0a34bd12d5f06f5a6ac9764db589d25841a48200212396842a4f" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "e84ba79f0d6ac9be59d5703cd5f556f1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 105339, "upload_time": "2017-01-20T13:12:28", "url": "https://files.pythonhosted.org/packages/c0/2b/8eacd265c19b9170a826a30ac53d6f39e17629a89281bf7ae1225e214415/pyclipper-1.0.6-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a6295320d02695f9ff769877b2316f55", "sha256": "2ceb6f1ab0a71239361702d745cae7ec3b68e263c2af992a2622108d85072f0d" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp33-cp33m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "a6295320d02695f9ff769877b2316f55", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 533354, "upload_time": "2017-01-20T13:12:35", "url": "https://files.pythonhosted.org/packages/35/3a/d17c9ab51b64d231aa964933f5ae9822595d463bbf08ad5376eceba4f3b4/pyclipper-1.0.6-cp33-cp33m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5dccad28ecb5bbd2722e583e691d4f20", "sha256": "e62c48587081ebc30cb8ca39b2e727c09fa7ff42b8072b54c47d5b6311fad11f" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "5dccad28ecb5bbd2722e583e691d4f20", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 551965, "upload_time": "2017-01-20T13:12:38", "url": "https://files.pythonhosted.org/packages/ec/27/6f325eec909c40c60276bd2a4bce282aff43e6248ab0e977e916281d058a/pyclipper-1.0.6-cp33-cp33m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ff39c84848926f4c64aa5ba9e6b98655", "sha256": "6ed3da6ed7395f8be7009cd9f70b7b3b9b51269d345ff85e4582bc7a8d8bb12a" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "ff39c84848926f4c64aa5ba9e6b98655", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 265285, "upload_time": "2017-01-20T13:12:39", "url": "https://files.pythonhosted.org/packages/1d/78/0c12cae32ee980e5c74925c3b95fca02822ff0a11e4704e495ac86fa7560/pyclipper-1.0.6-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3e4160fb705556d5ee85395a806e3b5d", "sha256": "d5563b5addb3215e0f5ffb3d8555fdd269e084d801be1a77d961d23e7a13c83d" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp34-cp34m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "3e4160fb705556d5ee85395a806e3b5d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 543885, "upload_time": "2017-01-20T13:12:42", "url": "https://files.pythonhosted.org/packages/95/2b/3a72b116dc8f3e2f3394cd71ba560b2b335ad3fc90f717e3585451ad1581/pyclipper-1.0.6-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "0a6bf353c86a41fb5821c22463b8ba12", "sha256": "f617ee4efb10633ad4456b9c0a836de9d6ef4b9056358856a3af5d49fa46f226" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "0a6bf353c86a41fb5821c22463b8ba12", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 565402, "upload_time": "2017-01-20T13:12:45", "url": "https://files.pythonhosted.org/packages/1a/18/2f5e1372f44bf53673dc89386716ae0796d5b0e6c4e439e1a4208bf8c62f/pyclipper-1.0.6-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "509277e06a7a9efcabee5fa8a0ff8cbb", "sha256": "cb84adfee8e673b737edae0cd79196ef456409553d802ca5038096eac2b4e621" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp34-cp34m-win32.whl", "has_sig": true, "md5_digest": "509277e06a7a9efcabee5fa8a0ff8cbb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 85250, "upload_time": "2017-01-20T13:12:47", "url": "https://files.pythonhosted.org/packages/f0/e3/44d71a4d8fe673d5c6dcbcaf113ad4c4794436227b010263a9c92301d54f/pyclipper-1.0.6-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "82fc3acb46c5ab86cedf954cc43e0886", "sha256": "5143a99f427766bf26066fd874b908b4914de7c684bcd7739aca262e65983e67" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp34-cp34m-win_amd64.whl", "has_sig": true, "md5_digest": "82fc3acb46c5ab86cedf954cc43e0886", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 98349, "upload_time": "2017-01-20T13:12:49", "url": "https://files.pythonhosted.org/packages/6d/59/08b2d4afc32add33e7bb73f84045828c2b34107628fbc01ddc543447f7b4/pyclipper-1.0.6-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a882f24ca24f310b34abbead7815409f", "sha256": "929318fa4aea60ca9571df4efe00346724429671a55836e1400955bbb4e32d8d" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "a882f24ca24f310b34abbead7815409f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 265011, "upload_time": "2017-01-20T13:12:51", "url": "https://files.pythonhosted.org/packages/e6/a2/88e86c12e6bab48149003621608b824439bf3c1626f62a911d66438f60df/pyclipper-1.0.6-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8328c37b62939037367762ab6d7382ac", "sha256": "7a1530a6645309cdc84b2e56a3a728959b0a092bd92ec0cfa57aa06d79be9a7a" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp35-cp35m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "8328c37b62939037367762ab6d7382ac", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 541527, "upload_time": "2017-01-20T13:12:53", "url": "https://files.pythonhosted.org/packages/7c/51/a148ce790f0dc722668268ff408b2c47e92293a7354762be9f6a6a823fad/pyclipper-1.0.6-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7a7e8e1d7518768e83c250ef5d8b07eb", "sha256": "63959695a37c9312dc920db50eee97dacd2ee0585857db0e880fdf045977b3f0" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "7a7e8e1d7518768e83c250ef5d8b07eb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 561260, "upload_time": "2017-01-20T13:12:55", "url": "https://files.pythonhosted.org/packages/c8/e7/a5ee28388310d82015f60134f6f10c1087eba988e16640ac421853affb5a/pyclipper-1.0.6-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f5f6fed323ef14012db7239673b536e9", "sha256": "a13ef8f2df2618e2d22c0c40b7a10b9e08a020bfd73b3e60890a79d0f523b146" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "f5f6fed323ef14012db7239673b536e9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 84682, "upload_time": "2017-01-20T13:12:57", "url": "https://files.pythonhosted.org/packages/76/0d/e58f5a637090c767ee323835eeb2dab057616f7b076827c7891ccc8b1aec/pyclipper-1.0.6-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1b49f10b610838730c01314a10dafd51", "sha256": "5ece7dac088279fe2a916546899d33bc9a5a395f934cdbe24155cbab39dfcd31" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "1b49f10b610838730c01314a10dafd51", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 96319, "upload_time": "2017-01-20T13:12:59", "url": "https://files.pythonhosted.org/packages/c5/29/47546f8741146867950a8af1ef491fe84bd733b93aebd17cfb1982aee7da/pyclipper-1.0.6-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c7d333c12f803e2dc00d46b3202ccd33", "sha256": "395401641f075a42173566286bb3410603951b004241d3f5f2994d75bf89439d" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "c7d333c12f803e2dc00d46b3202ccd33", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 265658, "upload_time": "2017-01-20T13:13:01", "url": "https://files.pythonhosted.org/packages/23/3d/5b5595dee824fcc95b34520ba8c5e7da9c931158f48423228c194282d85b/pyclipper-1.0.6-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c05be2bf7ec258445421802814bc101e", "sha256": "0f597da43e84901715e173dca667d570966565aea5139fe7df48c67564cac453" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp36-cp36m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "c05be2bf7ec258445421802814bc101e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 543347, "upload_time": "2017-01-20T13:13:03", "url": "https://files.pythonhosted.org/packages/15/b2/2036f554e039e37aecc948160598d2c999ca808192a5c4f26a806ebe6621/pyclipper-1.0.6-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "78214f48ed743a94b3e0635309c49029", "sha256": "0c692c9e30edfc79868451086a81177cd9ac193babae53cf17c860e84ae0ba55" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "78214f48ed743a94b3e0635309c49029", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 563590, "upload_time": "2017-01-20T13:13:06", "url": "https://files.pythonhosted.org/packages/c2/b0/fa8c06e893d7466f89a83456231f1ec3b6d68b94adefebb874676ac431c7/pyclipper-1.0.6-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "970c9123e3ff682942783638896328ec", "sha256": "77899aef86f22a06bb21b8d87988722f3173bf0ae5c23a12325cdb277d1ee8d7" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "970c9123e3ff682942783638896328ec", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 84906, "upload_time": "2017-01-20T13:13:08", "url": "https://files.pythonhosted.org/packages/0d/f4/a2243e9cfddc5a72b3f4c023f9a97b06d916d1db805871d7f933ae691e70/pyclipper-1.0.6-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4ea372b7de198d4fa1e579a44f2cd1a8", "sha256": "550a5994ad68e38cca43d75365bab4e9ebfa88425ba70290915fe0fc992ff71c" }, "downloads": -1, "filename": "pyclipper-1.0.6-cp36-cp36m-win_amd64.whl", "has_sig": true, "md5_digest": "4ea372b7de198d4fa1e579a44f2cd1a8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 96593, "upload_time": "2017-01-20T13:13:10", "url": "https://files.pythonhosted.org/packages/fa/dc/9fa005d9b29141ef28ee356362ea2812a49433165a2b01461a5efe83194d/pyclipper-1.0.6-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "85b47e3ff8f62212abe6c7792d1b7307", "sha256": "5ceb8ccbce0ee0c891518b35daab711381505aeac9b1e2094a7228bfc6e6f5fe" }, "downloads": -1, "filename": "pyclipper-1.0.6.zip", "has_sig": true, "md5_digest": "85b47e3ff8f62212abe6c7792d1b7307", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120819, "upload_time": "2017-01-20T13:13:11", "url": "https://files.pythonhosted.org/packages/83/52/24fdb1c63a709410d7a55fc4cdbda5481558bb245afde8cb734c29c3e292/pyclipper-1.0.6.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "f7185c8c44efe4a7699818b2f724a09c", "sha256": "ea169703d1c7a53f6eb8fcbe8ec4057db7064fabbdc402be3bc016218b72c0d5" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f7185c8c44efe4a7699818b2f724a09c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 280961, "upload_time": "2018-01-06T15:15:25", "url": "https://files.pythonhosted.org/packages/05/c8/2b9856249afcb5c6be7e9bb30156f6ddef6b8cfef85601576b2a1c9e03dd/pyclipper-1.1.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9528a58161da241c76ee3c28029c8563", "sha256": "5ef5c5633c1783836837b7b198c35dec54d9506d9ff5695b4293fe96de8b5481" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9528a58161da241c76ee3c28029c8563", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 573249, "upload_time": "2018-01-06T15:15:28", "url": "https://files.pythonhosted.org/packages/66/54/7d640d9e045a7f8c92e05c45e0ceb35592eb8475dfd2e27f3578279d2442/pyclipper-1.1.0-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "4831c0cb3ad56af5211bffb7775afd2e", "sha256": "79b2b1bf113045481d3f418e692f15e089b2053574accfc951fd9d0b73132204" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4831c0cb3ad56af5211bffb7775afd2e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 590641, "upload_time": "2018-01-06T15:15:32", "url": "https://files.pythonhosted.org/packages/03/e8/f17dc710f6887b6768438037db8af08bb510109ef024ebbd7563754e55c7/pyclipper-1.1.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e87e786cf471749e5edf7695154d15de", "sha256": "8f09d9eac721726eb7db9bd94597d1910e472a4d08dcb2adb715700124827d3e" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e87e786cf471749e5edf7695154d15de", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 573262, "upload_time": "2018-01-06T15:15:35", "url": "https://files.pythonhosted.org/packages/26/19/9c58080e3ecd642c1d1042a4f494bf3cbe092c7491aefb6222c3723d896e/pyclipper-1.1.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "64361bdcb964115524f7f266b2ead4fc", "sha256": "013dc2a39722914e2399a7608012c21da81c0e719e4aee958d0cbf3f603094ac" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "64361bdcb964115524f7f266b2ead4fc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 590644, "upload_time": "2018-01-06T15:15:37", "url": "https://files.pythonhosted.org/packages/bc/0d/6e162775af9cc8ca2cc391687dc8825b0d69295a919aa1695813443f3c6c/pyclipper-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8be16c7ccbdb340095cbbf879093819d", "sha256": "1c9c298039727c1896c013d7b25bcddd8e778b4f06d8d20c019b0a4679c26446" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "8be16c7ccbdb340095cbbf879093819d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 98358, "upload_time": "2018-01-06T15:15:39", "url": "https://files.pythonhosted.org/packages/f7/21/1b0daca4b21e815387945a4b29a96774934b9b361405c4dacba8014ba264/pyclipper-1.1.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "747b67d232d8a80016d32eb7f2fd3fe4", "sha256": "19beee2f26f6037f7d42aac0acc216d73bd2cc6dc36a6fc0565767de5080b4ba" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "747b67d232d8a80016d32eb7f2fd3fe4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 117922, "upload_time": "2018-01-06T15:15:41", "url": "https://files.pythonhosted.org/packages/58/e2/b57d505d5482d5c429b73223c70e3b0efa4b02ff3dd01e2435ff817d327c/pyclipper-1.1.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "61043118dcc48b0064ddc11549305a8a", "sha256": "e938e1a13f10d1770602ad505c00d7cad3e685adc4548c041ae2d56ca04b4dba" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp33-cp33m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "61043118dcc48b0064ddc11549305a8a", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 574267, "upload_time": "2018-01-06T15:15:45", "url": "https://files.pythonhosted.org/packages/ac/82/69bf00b16a8df9e199872607e5c37196fc6966063b7953d7bfcfb0f24335/pyclipper-1.1.0-cp33-cp33m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "1ade0e4ddc7ce51371ffce70657e1a72", "sha256": "30823cd4f27345ef303ea6c1ec7a964fa43067063a76e31cfea032954c648039" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1ade0e4ddc7ce51371ffce70657e1a72", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 593896, "upload_time": "2018-01-06T15:15:47", "url": "https://files.pythonhosted.org/packages/2f/d2/8c0fc063f025c85d24f703056d287daa650aac5acd670d861ee4bda6ff48/pyclipper-1.1.0-cp33-cp33m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b9526e8a36dd14d087e5320cbb77192c", "sha256": "9f67c98a51ed0296046f8448ecc25a8d61ab97c55b4281984b2bbfa883813c7b" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b9526e8a36dd14d087e5320cbb77192c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 281614, "upload_time": "2018-01-06T15:15:49", "url": "https://files.pythonhosted.org/packages/73/35/633f51dd14b3dacd9a73cb6aba16d3c459456800779c90b735bfdbb48a1f/pyclipper-1.1.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "31a17ae491af1bcaeed73d0009d12b3d", "sha256": "191f12cd9ec385d44f181786d250d29b07c515c0b2d6e28d91fe482649d0525b" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "31a17ae491af1bcaeed73d0009d12b3d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 585269, "upload_time": "2018-01-06T15:15:52", "url": "https://files.pythonhosted.org/packages/20/93/78fa261478235b030d27acf121eed513f1b0151672d08883896a2d7b6839/pyclipper-1.1.0-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "17a6c2cc40e6ed9561a73a3daa3b23f0", "sha256": "c158f2eab791ce072190188b82dba131475337a6ca5db3a63c78454d21ab989a" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "17a6c2cc40e6ed9561a73a3daa3b23f0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 604468, "upload_time": "2018-01-06T15:15:55", "url": "https://files.pythonhosted.org/packages/01/21/6d488e9fd00098798ce5ba1afe638d67be8dc9e4acdb4082971581129c26/pyclipper-1.1.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d66fe7aff99dee937f8d2f7dd4020cf2", "sha256": "e0cd47d425dfa2e1f9da74eeca5b0b568b439d5fa397fbf2979ac2c33eb1772a" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "d66fe7aff99dee937f8d2f7dd4020cf2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 95443, "upload_time": "2018-01-06T15:15:58", "url": "https://files.pythonhosted.org/packages/22/2c/b673ef6432e1abcb463991f8bb7f9ddf57f5fbd8327494cf3f61ae3d3eed/pyclipper-1.1.0-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "35b11eb128d266f7f132b54537f4d6bc", "sha256": "75d03cf5e6fc6c18329e51e9f1662d9d21c37f99692438761022f5ced7300ebc" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "35b11eb128d266f7f132b54537f4d6bc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 108158, "upload_time": "2018-01-06T15:16:00", "url": "https://files.pythonhosted.org/packages/c0/70/5a879036cb246a16c2c1e41b5d6ccdf6750d575b9e0438ca367a8e7ab2df/pyclipper-1.1.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f9492fa18a05aa7837a701302d9d0f0c", "sha256": "04337a635dc5cd6a17bc9a85f778eeb4b9569bb9a87d789005d1b7e86dadf8ca" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f9492fa18a05aa7837a701302d9d0f0c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 279979, "upload_time": "2018-01-06T15:16:04", "url": "https://files.pythonhosted.org/packages/2c/e2/5a69051c2787a1e9775cf9d7707fe23eee00a6ff56eab11f4796e8d23f6e/pyclipper-1.1.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f1d0ec2c08f7aec406c6983b64d5a341", "sha256": "209a770d211e760b33c8b8af60dc475ad16aea68a5f1f80e66128ce5da7bcb27" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f1d0ec2c08f7aec406c6983b64d5a341", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 583919, "upload_time": "2018-01-06T15:16:07", "url": "https://files.pythonhosted.org/packages/38/8d/ef843cd860c2087a09b81b984725704526b719d0d597a9e1ba544020525f/pyclipper-1.1.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "70a662064e241f9c537493638c92631f", "sha256": "5726921e921990915f441ad91304280b26a0d5e70882d503da4e741425100c5e" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "70a662064e241f9c537493638c92631f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 601445, "upload_time": "2018-01-06T15:16:10", "url": "https://files.pythonhosted.org/packages/8f/bc/c2f1f840aded0982f5bb79b3404da669c4a7f7c7e15fc03fd47095ec3328/pyclipper-1.1.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c52c60c7aa8032c6e47899897bcd68aa", "sha256": "b06076efafb1e3d4f14b63e8da69da34f883eb541844df108f2629866f42d02a" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "c52c60c7aa8032c6e47899897bcd68aa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 94282, "upload_time": "2018-01-06T15:16:12", "url": "https://files.pythonhosted.org/packages/26/a9/48a4a96c3a1303cb137fb72ed7afe245b1125b2d59263ce68f7594e93ae1/pyclipper-1.1.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "466e05b64c9becfb2f900920424c9039", "sha256": "b685844cc5eb196fbbcd1970e37a6216e257683bba82e4c81030dc7060c027fd" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "466e05b64c9becfb2f900920424c9039", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 107021, "upload_time": "2018-01-06T15:16:15", "url": "https://files.pythonhosted.org/packages/09/25/c81d3b20cb1bd37231e1f721b8d487eff3cc994c9845406e3cfac692473b/pyclipper-1.1.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "915a6e6624a2246a205d9584f117ca73", "sha256": "d3da370f6947c54e1146784d5deda0ab789f2184a2e189a8e05aaa2cfd9ed82b" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "915a6e6624a2246a205d9584f117ca73", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 279582, "upload_time": "2018-01-06T15:16:18", "url": "https://files.pythonhosted.org/packages/c8/e5/eed5b55df453983034d844c7c792cbc7821bcc0e5c22e63f05455784b49b/pyclipper-1.1.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "00d51291d2fe293fc4074a2b12a0ca33", "sha256": "8794d4f29a650854f503fc63f96a06baec30c604771149b474db92499edc8072" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "00d51291d2fe293fc4074a2b12a0ca33", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 585498, "upload_time": "2018-01-06T15:16:22", "url": "https://files.pythonhosted.org/packages/01/07/a50ca5e9519d012ac74ccb9516da94a82c25a85e27cf83f99b7d29b3801c/pyclipper-1.1.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "2a33cc7ba0a754f398e6d6a359e9e585", "sha256": "bf23b1343411d977b82ea018189c8c9b84f9da5ea74a3e8c9444e71318a51488" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2a33cc7ba0a754f398e6d6a359e9e585", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 603413, "upload_time": "2018-01-06T15:16:25", "url": "https://files.pythonhosted.org/packages/cd/ab/7d2d59e2feb2fe20e7ba125d8aa9413160f419f852878d332ff09627d148/pyclipper-1.1.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "43e336ece7029db9d49c56be328be112", "sha256": "a1bb42a403e1cfcaaf826384647faa6039c163b4a4a9960c194f37ee48148c00" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "43e336ece7029db9d49c56be328be112", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 94491, "upload_time": "2018-01-06T15:16:27", "url": "https://files.pythonhosted.org/packages/01/26/f051ce1b1ff3dc8188e6291f69ac23517278bd440822b0e5f3043521a101/pyclipper-1.1.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "766a61c57ba67a01d280eab4c8be6178", "sha256": "3fa17ca0bb2b78c22efd1844a13789d351b51516a54b9cd8c482afef9c2cff04" }, "downloads": -1, "filename": "pyclipper-1.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "766a61c57ba67a01d280eab4c8be6178", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 106961, "upload_time": "2018-01-06T15:16:29", "url": "https://files.pythonhosted.org/packages/61/98/8ba3be5959ba33cfb35ce968fb0af12c75791cdc69e2493de29fb0e4328a/pyclipper-1.1.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a3a5589bcf51eb900550ec9e0843d74d", "sha256": "3f11e87f0b82bccc6de57eead2628ca419694352e8b843bcd228eec9c9357680" }, "downloads": -1, "filename": "pyclipper-1.1.0.zip", "has_sig": false, "md5_digest": "a3a5589bcf51eb900550ec9e0843d74d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133364, "upload_time": "2018-01-06T15:16:32", "url": "https://files.pythonhosted.org/packages/7c/8a/dca05b87240b297f7508e3e7687921103770069f3247b94311087f877414/pyclipper-1.1.0.zip" } ], "1.1.0.post1": [ { "comment_text": "", "digests": { "md5": "b3a06288e3e9feb28b815ee67a5d1d73", "sha256": "fae29ba16ec075794c50242005be07fc3d5615b0cf3a86e2b60c1123446b574c" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b3a06288e3e9feb28b815ee67a5d1d73", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 277258, "upload_time": "2018-07-25T12:53:16", "url": "https://files.pythonhosted.org/packages/4f/ac/44fd766b10ef1c7c059e745d1400d61d26e50e5f5582c5bb3a58267fd423/pyclipper-1.1.0.post1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4a41bd606c153523840c0be3e843c279", "sha256": "c964d5808aa5e44aae9500e70d3f08d5191edf6a355e183d8c6fb8f43dde77ad" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4a41bd606c153523840c0be3e843c279", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 129783, "upload_time": "2018-07-25T12:53:17", "url": "https://files.pythonhosted.org/packages/3e/fb/16708090d02c9b3b27c9266e35e7c0a4f971432e533d39a53cd56fb12e19/pyclipper-1.1.0.post1-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "9186f33217f2ef16d3f0471d2f5e8796", "sha256": "567947b8e31de852be32941872a72e843e679af8cf0826108be0a4c6108792a3" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9186f33217f2ef16d3f0471d2f5e8796", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 128213, "upload_time": "2018-07-25T12:53:18", "url": "https://files.pythonhosted.org/packages/ea/93/3d3ceb0cacbde9e28cfc6ed5067ee69752ba92d5594e9036b0c6866ac797/pyclipper-1.1.0.post1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a606b2c5e6deeaa24ea7f23920276632", "sha256": "bed37f2d2517e18976aa24477cce319fd48efa8fbafe9407101c599ba4a2b481" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a606b2c5e6deeaa24ea7f23920276632", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 129791, "upload_time": "2018-07-25T12:53:20", "url": "https://files.pythonhosted.org/packages/98/4a/174900e0890e0b8b4356d345f8a29939921cc1db86f9c575ef3ec22037f7/pyclipper-1.1.0.post1-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "cc02c8c36c2b4d1b0798d468bea05c3d", "sha256": "db6d0580bac8a642a31b0e07f220d3c94fe2dda39f559abc2d12713bff7dd3d0" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cc02c8c36c2b4d1b0798d468bea05c3d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 128227, "upload_time": "2018-07-25T12:53:21", "url": "https://files.pythonhosted.org/packages/61/c1/a3d27aee0a67e962ff3c5d830c3a435ca686404b941ee2cb8211e59635c1/pyclipper-1.1.0.post1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "49eb34bef5e72d30481029c0649879d2", "sha256": "abfb4c65937494bb5a3bb5fb3cf44cdb33ac88805effcd702afdb0d7bfb1803f" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "49eb34bef5e72d30481029c0649879d2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 94655, "upload_time": "2018-07-25T12:53:23", "url": "https://files.pythonhosted.org/packages/c6/fb/fbaa251fe059b7bb08607a4f1db2a3183ad4fd084bac223de014950fc393/pyclipper-1.1.0.post1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a6b8a5d41de0df3a592fea69353984e9", "sha256": "b03d1dcac192412a1f7125500dcd09baa0ccf9c27f1300870e80981907197583" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "a6b8a5d41de0df3a592fea69353984e9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 114069, "upload_time": "2018-07-25T12:53:24", "url": "https://files.pythonhosted.org/packages/f9/47/f9e060ad8c5472a6d120bdeb8524af8d9b95b26a858ce9e6505b873f2d9a/pyclipper-1.1.0.post1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "189aabde4fca1388a2c50c15612461c8", "sha256": "f064528ffb7486b1b2b21f833c729a63e5331e2e6073dfbc73b1d5e96a4d00a2" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "189aabde4fca1388a2c50c15612461c8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 277328, "upload_time": "2018-07-25T12:53:26", "url": "https://files.pythonhosted.org/packages/d8/81/0cc5006d3c6bfca419f72a6eaf2a6c20346d63162096e529f10430dc67cc/pyclipper-1.1.0.post1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e513ffb4fc43a2dbea1e4f79a06e9b0e", "sha256": "0d99acc5618faf8772164a3a067c1d1abd4513cf66b7b7a8d7adaa150a18376d" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e513ffb4fc43a2dbea1e4f79a06e9b0e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 129393, "upload_time": "2018-07-25T12:53:27", "url": "https://files.pythonhosted.org/packages/77/99/0bbf2dbd3270295f0e9aeb2bdd621b0669310426e450698cbac4034288fa/pyclipper-1.1.0.post1-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "758d8055a48b6b3d8bc6099b325dd50d", "sha256": "623ab16641e4e408359420d615c6a395cb3da23a559a20e57402bebb216bd125" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "758d8055a48b6b3d8bc6099b325dd50d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 129036, "upload_time": "2018-07-25T12:53:29", "url": "https://files.pythonhosted.org/packages/74/36/13364bbce83605c29ed2aaefd187e8f780ffe9fd200bf17f4ebe86198e3a/pyclipper-1.1.0.post1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "eeed96a128c4aaebc36d694aa9b54ccd", "sha256": "f5e003f9ec3ced16691b7b0dbee39318aba3787ba85d01ef1f6627592c3ff75d" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "eeed96a128c4aaebc36d694aa9b54ccd", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 91612, "upload_time": "2018-07-25T12:53:30", "url": "https://files.pythonhosted.org/packages/b0/51/29ffe974b8827ab7f08e5ea1f251393dd4597b91b5519890623cdaa86148/pyclipper-1.1.0.post1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "68371a79fce6c6b7b734e158eebf9a66", "sha256": "78ebe32ccb6807bc8eac652ec9a7875dfa229e947b686a107acaf69259da3d8d" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "68371a79fce6c6b7b734e158eebf9a66", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 104645, "upload_time": "2018-07-25T12:53:31", "url": "https://files.pythonhosted.org/packages/53/df/09eb6b0c93da059855a3376e4949c5f2d5e3bb0bca3bb80e0faa6bb94600/pyclipper-1.1.0.post1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b126856ff995189711f89094c83e3d0c", "sha256": "bb89da8a321a9662330f18c1f8a88dd44966160e7a9e25c86ca16fbc1be31c0d" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b126856ff995189711f89094c83e3d0c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 276787, "upload_time": "2018-07-25T12:53:33", "url": "https://files.pythonhosted.org/packages/21/aa/969e0be05df8a92449a6e1fae0c1de186447c5be145f0c6de71187b4780f/pyclipper-1.1.0.post1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7367a51121449d1563cf543017333718", "sha256": "0b37d39bd9d4f330918de20c169e7d74108217a752533ec6ac54c6a8825adcec" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7367a51121449d1563cf543017333718", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130340, "upload_time": "2018-07-25T12:53:34", "url": "https://files.pythonhosted.org/packages/c2/01/2310e8bc0be053e2790f14ecea2d53d8d50bff1dcc3f8384370aa34c174c/pyclipper-1.1.0.post1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "f15890569abb14960a54165e1614505f", "sha256": "747bfd3e219d5f2c45e50d874ea6da4ae746b3a4601f28566fd29a6ab0966a7a" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f15890569abb14960a54165e1614505f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129164, "upload_time": "2018-07-25T12:53:35", "url": "https://files.pythonhosted.org/packages/7c/24/b084410bdc8f0a7fdfe80791243b95053c7b13f77984739a901f96335174/pyclipper-1.1.0.post1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "425d5afa3ad2792dc41d889e31f26113", "sha256": "ba98f5472d6066386367a3e8d44c327b5438e746a7faf356e6b116338fe6492e" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "425d5afa3ad2792dc41d889e31f26113", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 90099, "upload_time": "2018-07-25T12:53:37", "url": "https://files.pythonhosted.org/packages/12/69/b44f874cd92fd59faf0a57f8a28a5978059a76d78b3a22fce0cc4e7445c7/pyclipper-1.1.0.post1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9d9372f50bfaf76d35f9d3bec1eac464", "sha256": "8f8ff492926c2d865bc58121bc15438e8698d8a9b7751b67892ef3516838d462" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9d9372f50bfaf76d35f9d3bec1eac464", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 103695, "upload_time": "2018-07-25T12:53:38", "url": "https://files.pythonhosted.org/packages/d0/ce/41cb8414587e2702a5ceb7b30e5ebd3f0857c8a539565eb4c3a20f90e2b9/pyclipper-1.1.0.post1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5e3e91e07c8610d05fc79766b7cd17c0", "sha256": "8bb79a30fd6078e589b39c164acd969d3f5f942a566b7e951c941f6d5c7106fe" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5e3e91e07c8610d05fc79766b7cd17c0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 276113, "upload_time": "2018-07-25T12:53:39", "url": "https://files.pythonhosted.org/packages/f4/21/4c13db060c2e44ab0d17973d8188ccc42c28f358659d9bc39eddf987db96/pyclipper-1.1.0.post1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a673dd2b27dd654d49a23d9854e54310", "sha256": "7ecf2cc782ab3e3d33120aa3fc9da1bfd72155c6ad2ee358d14b81865dda2d65" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a673dd2b27dd654d49a23d9854e54310", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 130654, "upload_time": "2018-07-25T12:53:41", "url": "https://files.pythonhosted.org/packages/87/f6/6fda58869c2fb068bd04fb5b710b3bc43a515c61284cf32511b163d3a867/pyclipper-1.1.0.post1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5592435e57791718ff9e00488ba1725a", "sha256": "c0fb993da9ef2ce62a9f62dcb14fff16f90bae57c073d8d4187072490eb41a68" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5592435e57791718ff9e00488ba1725a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 129304, "upload_time": "2018-07-25T12:53:42", "url": "https://files.pythonhosted.org/packages/40/67/2691f7cbb28fb9dbf423f2302fe489f9cee34d9a50a743c95032a24ac597/pyclipper-1.1.0.post1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e70d6741cd1737a5b2538014456b9825", "sha256": "acfbfe2a3e236a474100393661291681419ec89e74fb6a51db5325ddd280ab9a" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "e70d6741cd1737a5b2538014456b9825", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 90170, "upload_time": "2018-07-25T12:53:44", "url": "https://files.pythonhosted.org/packages/71/8c/32347bdb8210fac721ea1469cc645fc8705ee0ef746fed44e1236c85355c/pyclipper-1.1.0.post1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5dc436d98125c26b4e205c9b1d86646b", "sha256": "6aa4bce5111e0bd2c50d452d940ddd87ef6c2632b2da6952fe2dec4f5e103173" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5dc436d98125c26b4e205c9b1d86646b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 103382, "upload_time": "2018-07-25T12:53:45", "url": "https://files.pythonhosted.org/packages/c2/a9/f8081ab6264f834887327d3f449c24a9e9b65efa2ce7b12e2ab1e2bdc954/pyclipper-1.1.0.post1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b6491af1bda816b69065dd54fc9ab563", "sha256": "d6a2186a8a85121ee2732bd28c2243dd0451d8095d5e8426351b845fa409b974" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b6491af1bda816b69065dd54fc9ab563", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 275598, "upload_time": "2018-07-25T12:53:47", "url": "https://files.pythonhosted.org/packages/a0/2f/6a75e90bfb924118bd65cc16ccd23df53db697f0df7a4dfa79c6d64913fe/pyclipper-1.1.0.post1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b30df724efedab6158bb3b01b33addbb", "sha256": "888e04d29717e9c47336c814094bd9523b3ec9ed371ce91dfa60636aae1de6f6" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b30df724efedab6158bb3b01b33addbb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 130486, "upload_time": "2018-07-25T12:53:48", "url": "https://files.pythonhosted.org/packages/da/f4/949f1fb50b1c5c60a4647ea1bd05fc12c2e633b9f85e3e8837712f2fb5f9/pyclipper-1.1.0.post1-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "60c228b01eb5db508fd6583fb90c8f0c", "sha256": "e17d8d1adc834112ee8b092661da6231f7cfba9700297069c6b5bce71c07b9b4" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "60c228b01eb5db508fd6583fb90c8f0c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 129248, "upload_time": "2018-07-25T12:53:50", "url": "https://files.pythonhosted.org/packages/a2/ee/581787141515af4d13b10a8de253dd8b5aee4d580b40c0b7e658f13fee6d/pyclipper-1.1.0.post1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0aaf4a8ab70d4fbdfbf80811555975c3", "sha256": "4c4e9a643f6866f1ea4361b83a6a5c6a0d64e6a391a286e79b7f0844c2ae3c2a" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "0aaf4a8ab70d4fbdfbf80811555975c3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 90058, "upload_time": "2018-07-25T12:53:51", "url": "https://files.pythonhosted.org/packages/36/c8/6d2e80c1c8e4a50da07ccb5e30bed181afe8e3f7cd7d60cfbe9327e7c6da/pyclipper-1.1.0.post1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "50810de529142673f8bc45ea0212490c", "sha256": "de693b6da86fbb69bf224bc89abfe479df205e827e20b4a431b03e37b2b5ee34" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "50810de529142673f8bc45ea0212490c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 103292, "upload_time": "2018-07-25T12:53:52", "url": "https://files.pythonhosted.org/packages/12/5f/b9061fa186071624433b1383517fe6c068ff2fc2706db070f3088f4221be/pyclipper-1.1.0.post1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d996b63cc87374589da828033c9e6fe0", "sha256": "8a8b6018d53fcce291f78dedca19994f82695eed3a2c9eff275691d4ed9aab51" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1.zip", "has_sig": false, "md5_digest": "d996b63cc87374589da828033c9e6fe0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135239, "upload_time": "2018-07-25T12:53:54", "url": "https://files.pythonhosted.org/packages/20/a3/a60a7bad5246d66f3c54127b34b90e6d34b2cc006b84135bfcbfee4514b1/pyclipper-1.1.0.post1.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b3a06288e3e9feb28b815ee67a5d1d73", "sha256": "fae29ba16ec075794c50242005be07fc3d5615b0cf3a86e2b60c1123446b574c" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b3a06288e3e9feb28b815ee67a5d1d73", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 277258, "upload_time": "2018-07-25T12:53:16", "url": "https://files.pythonhosted.org/packages/4f/ac/44fd766b10ef1c7c059e745d1400d61d26e50e5f5582c5bb3a58267fd423/pyclipper-1.1.0.post1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4a41bd606c153523840c0be3e843c279", "sha256": "c964d5808aa5e44aae9500e70d3f08d5191edf6a355e183d8c6fb8f43dde77ad" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4a41bd606c153523840c0be3e843c279", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 129783, "upload_time": "2018-07-25T12:53:17", "url": "https://files.pythonhosted.org/packages/3e/fb/16708090d02c9b3b27c9266e35e7c0a4f971432e533d39a53cd56fb12e19/pyclipper-1.1.0.post1-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "9186f33217f2ef16d3f0471d2f5e8796", "sha256": "567947b8e31de852be32941872a72e843e679af8cf0826108be0a4c6108792a3" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9186f33217f2ef16d3f0471d2f5e8796", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 128213, "upload_time": "2018-07-25T12:53:18", "url": "https://files.pythonhosted.org/packages/ea/93/3d3ceb0cacbde9e28cfc6ed5067ee69752ba92d5594e9036b0c6866ac797/pyclipper-1.1.0.post1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a606b2c5e6deeaa24ea7f23920276632", "sha256": "bed37f2d2517e18976aa24477cce319fd48efa8fbafe9407101c599ba4a2b481" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a606b2c5e6deeaa24ea7f23920276632", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 129791, "upload_time": "2018-07-25T12:53:20", "url": "https://files.pythonhosted.org/packages/98/4a/174900e0890e0b8b4356d345f8a29939921cc1db86f9c575ef3ec22037f7/pyclipper-1.1.0.post1-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "cc02c8c36c2b4d1b0798d468bea05c3d", "sha256": "db6d0580bac8a642a31b0e07f220d3c94fe2dda39f559abc2d12713bff7dd3d0" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cc02c8c36c2b4d1b0798d468bea05c3d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 128227, "upload_time": "2018-07-25T12:53:21", "url": "https://files.pythonhosted.org/packages/61/c1/a3d27aee0a67e962ff3c5d830c3a435ca686404b941ee2cb8211e59635c1/pyclipper-1.1.0.post1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "49eb34bef5e72d30481029c0649879d2", "sha256": "abfb4c65937494bb5a3bb5fb3cf44cdb33ac88805effcd702afdb0d7bfb1803f" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "49eb34bef5e72d30481029c0649879d2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 94655, "upload_time": "2018-07-25T12:53:23", "url": "https://files.pythonhosted.org/packages/c6/fb/fbaa251fe059b7bb08607a4f1db2a3183ad4fd084bac223de014950fc393/pyclipper-1.1.0.post1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a6b8a5d41de0df3a592fea69353984e9", "sha256": "b03d1dcac192412a1f7125500dcd09baa0ccf9c27f1300870e80981907197583" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "a6b8a5d41de0df3a592fea69353984e9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 114069, "upload_time": "2018-07-25T12:53:24", "url": "https://files.pythonhosted.org/packages/f9/47/f9e060ad8c5472a6d120bdeb8524af8d9b95b26a858ce9e6505b873f2d9a/pyclipper-1.1.0.post1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "189aabde4fca1388a2c50c15612461c8", "sha256": "f064528ffb7486b1b2b21f833c729a63e5331e2e6073dfbc73b1d5e96a4d00a2" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "189aabde4fca1388a2c50c15612461c8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 277328, "upload_time": "2018-07-25T12:53:26", "url": "https://files.pythonhosted.org/packages/d8/81/0cc5006d3c6bfca419f72a6eaf2a6c20346d63162096e529f10430dc67cc/pyclipper-1.1.0.post1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e513ffb4fc43a2dbea1e4f79a06e9b0e", "sha256": "0d99acc5618faf8772164a3a067c1d1abd4513cf66b7b7a8d7adaa150a18376d" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e513ffb4fc43a2dbea1e4f79a06e9b0e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 129393, "upload_time": "2018-07-25T12:53:27", "url": "https://files.pythonhosted.org/packages/77/99/0bbf2dbd3270295f0e9aeb2bdd621b0669310426e450698cbac4034288fa/pyclipper-1.1.0.post1-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "758d8055a48b6b3d8bc6099b325dd50d", "sha256": "623ab16641e4e408359420d615c6a395cb3da23a559a20e57402bebb216bd125" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "758d8055a48b6b3d8bc6099b325dd50d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 129036, "upload_time": "2018-07-25T12:53:29", "url": "https://files.pythonhosted.org/packages/74/36/13364bbce83605c29ed2aaefd187e8f780ffe9fd200bf17f4ebe86198e3a/pyclipper-1.1.0.post1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "eeed96a128c4aaebc36d694aa9b54ccd", "sha256": "f5e003f9ec3ced16691b7b0dbee39318aba3787ba85d01ef1f6627592c3ff75d" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp34-cp34m-win32.whl", "has_sig": false, "md5_digest": "eeed96a128c4aaebc36d694aa9b54ccd", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 91612, "upload_time": "2018-07-25T12:53:30", "url": "https://files.pythonhosted.org/packages/b0/51/29ffe974b8827ab7f08e5ea1f251393dd4597b91b5519890623cdaa86148/pyclipper-1.1.0.post1-cp34-cp34m-win32.whl" }, { "comment_text": "", "digests": { "md5": "68371a79fce6c6b7b734e158eebf9a66", "sha256": "78ebe32ccb6807bc8eac652ec9a7875dfa229e947b686a107acaf69259da3d8d" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "68371a79fce6c6b7b734e158eebf9a66", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 104645, "upload_time": "2018-07-25T12:53:31", "url": "https://files.pythonhosted.org/packages/53/df/09eb6b0c93da059855a3376e4949c5f2d5e3bb0bca3bb80e0faa6bb94600/pyclipper-1.1.0.post1-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b126856ff995189711f89094c83e3d0c", "sha256": "bb89da8a321a9662330f18c1f8a88dd44966160e7a9e25c86ca16fbc1be31c0d" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b126856ff995189711f89094c83e3d0c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 276787, "upload_time": "2018-07-25T12:53:33", "url": "https://files.pythonhosted.org/packages/21/aa/969e0be05df8a92449a6e1fae0c1de186447c5be145f0c6de71187b4780f/pyclipper-1.1.0.post1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7367a51121449d1563cf543017333718", "sha256": "0b37d39bd9d4f330918de20c169e7d74108217a752533ec6ac54c6a8825adcec" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7367a51121449d1563cf543017333718", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 130340, "upload_time": "2018-07-25T12:53:34", "url": "https://files.pythonhosted.org/packages/c2/01/2310e8bc0be053e2790f14ecea2d53d8d50bff1dcc3f8384370aa34c174c/pyclipper-1.1.0.post1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "f15890569abb14960a54165e1614505f", "sha256": "747bfd3e219d5f2c45e50d874ea6da4ae746b3a4601f28566fd29a6ab0966a7a" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f15890569abb14960a54165e1614505f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 129164, "upload_time": "2018-07-25T12:53:35", "url": "https://files.pythonhosted.org/packages/7c/24/b084410bdc8f0a7fdfe80791243b95053c7b13f77984739a901f96335174/pyclipper-1.1.0.post1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "425d5afa3ad2792dc41d889e31f26113", "sha256": "ba98f5472d6066386367a3e8d44c327b5438e746a7faf356e6b116338fe6492e" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "425d5afa3ad2792dc41d889e31f26113", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 90099, "upload_time": "2018-07-25T12:53:37", "url": "https://files.pythonhosted.org/packages/12/69/b44f874cd92fd59faf0a57f8a28a5978059a76d78b3a22fce0cc4e7445c7/pyclipper-1.1.0.post1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9d9372f50bfaf76d35f9d3bec1eac464", "sha256": "8f8ff492926c2d865bc58121bc15438e8698d8a9b7751b67892ef3516838d462" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9d9372f50bfaf76d35f9d3bec1eac464", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 103695, "upload_time": "2018-07-25T12:53:38", "url": "https://files.pythonhosted.org/packages/d0/ce/41cb8414587e2702a5ceb7b30e5ebd3f0857c8a539565eb4c3a20f90e2b9/pyclipper-1.1.0.post1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5e3e91e07c8610d05fc79766b7cd17c0", "sha256": "8bb79a30fd6078e589b39c164acd969d3f5f942a566b7e951c941f6d5c7106fe" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5e3e91e07c8610d05fc79766b7cd17c0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 276113, "upload_time": "2018-07-25T12:53:39", "url": "https://files.pythonhosted.org/packages/f4/21/4c13db060c2e44ab0d17973d8188ccc42c28f358659d9bc39eddf987db96/pyclipper-1.1.0.post1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a673dd2b27dd654d49a23d9854e54310", "sha256": "7ecf2cc782ab3e3d33120aa3fc9da1bfd72155c6ad2ee358d14b81865dda2d65" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a673dd2b27dd654d49a23d9854e54310", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 130654, "upload_time": "2018-07-25T12:53:41", "url": "https://files.pythonhosted.org/packages/87/f6/6fda58869c2fb068bd04fb5b710b3bc43a515c61284cf32511b163d3a867/pyclipper-1.1.0.post1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5592435e57791718ff9e00488ba1725a", "sha256": "c0fb993da9ef2ce62a9f62dcb14fff16f90bae57c073d8d4187072490eb41a68" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5592435e57791718ff9e00488ba1725a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 129304, "upload_time": "2018-07-25T12:53:42", "url": "https://files.pythonhosted.org/packages/40/67/2691f7cbb28fb9dbf423f2302fe489f9cee34d9a50a743c95032a24ac597/pyclipper-1.1.0.post1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e70d6741cd1737a5b2538014456b9825", "sha256": "acfbfe2a3e236a474100393661291681419ec89e74fb6a51db5325ddd280ab9a" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "e70d6741cd1737a5b2538014456b9825", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 90170, "upload_time": "2018-07-25T12:53:44", "url": "https://files.pythonhosted.org/packages/71/8c/32347bdb8210fac721ea1469cc645fc8705ee0ef746fed44e1236c85355c/pyclipper-1.1.0.post1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5dc436d98125c26b4e205c9b1d86646b", "sha256": "6aa4bce5111e0bd2c50d452d940ddd87ef6c2632b2da6952fe2dec4f5e103173" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5dc436d98125c26b4e205c9b1d86646b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 103382, "upload_time": "2018-07-25T12:53:45", "url": "https://files.pythonhosted.org/packages/c2/a9/f8081ab6264f834887327d3f449c24a9e9b65efa2ce7b12e2ab1e2bdc954/pyclipper-1.1.0.post1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b6491af1bda816b69065dd54fc9ab563", "sha256": "d6a2186a8a85121ee2732bd28c2243dd0451d8095d5e8426351b845fa409b974" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "b6491af1bda816b69065dd54fc9ab563", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 275598, "upload_time": "2018-07-25T12:53:47", "url": "https://files.pythonhosted.org/packages/a0/2f/6a75e90bfb924118bd65cc16ccd23df53db697f0df7a4dfa79c6d64913fe/pyclipper-1.1.0.post1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b30df724efedab6158bb3b01b33addbb", "sha256": "888e04d29717e9c47336c814094bd9523b3ec9ed371ce91dfa60636aae1de6f6" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b30df724efedab6158bb3b01b33addbb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 130486, "upload_time": "2018-07-25T12:53:48", "url": "https://files.pythonhosted.org/packages/da/f4/949f1fb50b1c5c60a4647ea1bd05fc12c2e633b9f85e3e8837712f2fb5f9/pyclipper-1.1.0.post1-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "60c228b01eb5db508fd6583fb90c8f0c", "sha256": "e17d8d1adc834112ee8b092661da6231f7cfba9700297069c6b5bce71c07b9b4" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "60c228b01eb5db508fd6583fb90c8f0c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 129248, "upload_time": "2018-07-25T12:53:50", "url": "https://files.pythonhosted.org/packages/a2/ee/581787141515af4d13b10a8de253dd8b5aee4d580b40c0b7e658f13fee6d/pyclipper-1.1.0.post1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0aaf4a8ab70d4fbdfbf80811555975c3", "sha256": "4c4e9a643f6866f1ea4361b83a6a5c6a0d64e6a391a286e79b7f0844c2ae3c2a" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "0aaf4a8ab70d4fbdfbf80811555975c3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 90058, "upload_time": "2018-07-25T12:53:51", "url": "https://files.pythonhosted.org/packages/36/c8/6d2e80c1c8e4a50da07ccb5e30bed181afe8e3f7cd7d60cfbe9327e7c6da/pyclipper-1.1.0.post1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "50810de529142673f8bc45ea0212490c", "sha256": "de693b6da86fbb69bf224bc89abfe479df205e827e20b4a431b03e37b2b5ee34" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "50810de529142673f8bc45ea0212490c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 103292, "upload_time": "2018-07-25T12:53:52", "url": "https://files.pythonhosted.org/packages/12/5f/b9061fa186071624433b1383517fe6c068ff2fc2706db070f3088f4221be/pyclipper-1.1.0.post1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d996b63cc87374589da828033c9e6fe0", "sha256": "8a8b6018d53fcce291f78dedca19994f82695eed3a2c9eff275691d4ed9aab51" }, "downloads": -1, "filename": "pyclipper-1.1.0.post1.zip", "has_sig": false, "md5_digest": "d996b63cc87374589da828033c9e6fe0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135239, "upload_time": "2018-07-25T12:53:54", "url": "https://files.pythonhosted.org/packages/20/a3/a60a7bad5246d66f3c54127b34b90e6d34b2cc006b84135bfcbfee4514b1/pyclipper-1.1.0.post1.zip" } ] }