{ "info": { "author": "Victor Blomqvist", "author_email": "vb@viblo.se", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Topic :: Games/Entertainment", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: pygame" ], "description": "Pymunk\n======\n\n.. image:: https://raw.githubusercontent.com/viblo/pymunk/master/docs/src/_static/pymunk_logo_animation.gif\n\nPymunk is a easy-to-use pythonic 2d physics library that can be used whenever \nyou need 2d rigid body physics from Python. Perfect when you need 2d physics \nin your game, demo or other application! It is built on top of the very \ncapable 2d physics library `Chipmunk `_.\n\nThe first version was released in 2007 and Pymunk is still actively developed \nand maintained today. \n\nPymunk has been used with success in many projects, big and small. For example: \n3 Pyweek game competition winners, more than a dozen published scientific \npapers and even in a self-driving car simulation! See the Showcases section on \nthe Pymunk webpage for some examples.\n\n2007 - 2019, Victor Blomqvist - vb@viblo.se, MIT License\n\nThis release is based on the latest Pymunk release (5.5.0), \nusing Chipmunk 7.0.2 rev aef346fb8b (source included)\n\n\nInstallation\n------------\n\nIn the normal case pymunk can be installed with pip::\n\n > pip install pymunk\n\nIt has one direct dependency, CFFI.\n\nPymunk can also be installed with conda, from the conda-forge channel::\n\n > conda install -c conda-forge pymunk\n\n\nExample\n-------\n\nQuick code example::\n\n import pymunk # Import pymunk..\n\n space = pymunk.Space() # Create a Space which contain the simulation\n space.gravity = 0,-1000 # Set its gravity\n\n body = pymunk.Body(1,1666) # Create a Body with mass and moment\n body.position = 50,100 # Set the position of the body\n\n poly = pymunk.Poly.create_box(body) # Create a box shape and attach to body\n space.add(body, poly) # Add both body and shape to the simulation\n\n while True: # Infinite loop simulation\n space.step(0.02) # Step the simulation one step forward\n\nFor more detailed and advanced examples, take a look at the included demos \n(in examples/).\n\nExamples are not included if you install with `pip install pymunk`. Instead you\nneed to download the source archive (pymunk-x.y.z.zip). Download available from \nhttps://pypi.org/project/pymunk/#files\n\n\nDocumentation\n-------------\n\nThe source distribution of Pymunk ships with a number of demos in the examples\ndirectory, and it also contains the full documentation including API reference.\n\nYou can also find the full documentation including examples and API reference \non the Pymunk homepage, http://www.pymunk.org\n\n\nThe Pymunk Vision\n-----------------\n\n \"*Make 2d physics easy to include in your game*\"\n\nIt is (or is striving to be):\n\n* **Easy to use** - It should be easy to use, no complicated stuff should be \n needed to add physics to your game/program.\n* **\"Pythonic\"** - It should not be visible that a c-library (chipmunk) is in \n the bottom, it should feel like a Python library (no strange naming, OO, \n no memory handling and more)\n* **Simple to build & install** - You shouldn't need to have a zillion of \n libraries installed to make it install, or do a lot of command line tricks.\n* **Multi-platform** - Should work on both Windows, \\*nix and OSX.\n* **Non-intrusive** - It should not put restrictions on how you structure \n your program and not force you to use a special game loop, it should be \n possible to use with other libraries like Pygame and Pyglet. \n\n\nContact & Support\n-----------------\n.. _contact-support:\n\n**Homepage**\n http://www.pymunk.org/\n\n**Stackoverflow**\n You can ask questions/browse old ones at Stackoverflow, just look for \n the Pymunk tag. http://stackoverflow.com/questions/tagged/pymunk\n\n**E-Mail**\n You can email me directly at vb@viblo.se\n\n**Issue Tracker**\n Please use the issue tracker at github to report any issues you find:\n https://github.com/viblo/pymunk/issues\n\nRegardless of the method you use I will try to answer your questions as soon \nas I see them. (And if you ask on SO or the forum other people might help as \nwell!)\n\n\nDependencies / Requirements\n---------------------------\n\nBasically Pymunk have been made to be as easy to install and distribute as \npossible, usually `pip install` will take care of everything for you.\n\n- Python (Runs on CPython 2.7 and 3.X. Pypy and Pypy3)\n- Chipmunk (Compiled library already included on common platforms)\n- CFFI (will be installed automatically by Pip)\n- Setuptools (should be included with Pip)\n\n* GCC and friends (optional, you need it to compile Chipmunk)\n* Pygame (optional, you need it to run the Pygame based demos)\n* Pyglet (optional, you need it to run the Pyglet based demos)\n* Matplotlib & Jupyter Notebook (optional, you need it to run the Matplotlib \n based demos)\n* Sphinx (optional, you need it to build documentation)\n\n\nPython 2 & Python 3\n-------------------\n\nPymunk has been tested and runs fine on both Python 2 and Python 3. It has \nbeen tested on recent versions of CPython (2 and 3) and Pypy. For an exact \nlist of tested versions see the Travis and Appveyor test configs.\n\n\nChipmunk Compilation\n--------------------\n\nThis section is only required in case you dont install pymunk the normal way \n(`pip install` or `setup.py install`). Otherwise its handled automatically by \nthe install command.\n\nPymunk is built on top of the c library Chipmunk. It uses CFFI to interface\nwith the Chipmunk library file. Because of this Chipmunk has to be compiled\nbefore it can be used with Pymunk. Compilation has to be done with GCC or \nanother compiler that uses the same flags. \n\nThe source distribution does not include a pre-compiled Chipmunk library file, \ninstead you need to build it yourself. \n\nThere are basically two options, either building it automatically as part of \ninstallation using for example Pip::\n\n > pip install pymunk-source-dist.zip\n\nOr if you have the source unpacked / you got Pymunk by cloning its git repo, \nyou can explicitly tell Pymunk to compile it inplace:: \n\n > python setup.py build_ext --inplace\n\nNote that chipmunk is actually not built as a python extension, but distutils /\nsetuptools doesn't currently handle pure native libraries that needs to be built \nin a good way if built with build_clib.\n\nThe compiled file goes into the /pymunk folder (same as space.py, \nbody.py and others).\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.pymunk.org", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "pymunk", "package_url": "https://pypi.org/project/pymunk/", "platform": "", "project_url": "https://pypi.org/project/pymunk/", "project_urls": { "Homepage": "http://www.pymunk.org" }, "release_url": "https://pypi.org/project/pymunk/5.5.0/", "requires_dist": [ "cffi", "pyglet ; extra == 'dev'", "pygame ; extra == 'dev'", "sphinx ; extra == 'dev'" ], "requires_python": "", "summary": "Pymunk is a easy-to-use pythonic 2d physics library", "version": "5.5.0" }, "last_serial": 5226287, "releases": { "0.8": [ { "comment_text": "", "digests": { "md5": "6fb24b3955eac666b20f798a7a5f8ec8", "sha256": "04e7607a97b6640eda158732fb497713a77075eb807e67283fee3888327c98cf" }, "downloads": -1, "filename": "pymunk-0.8.win32.exe", "has_sig": false, "md5_digest": "6fb24b3955eac666b20f798a7a5f8ec8", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 154041, "upload_time": "2008-06-15T16:22:04", "url": "https://files.pythonhosted.org/packages/83/12/274ea29d9725b1c832e987e222dfa5cf9a0b2118d8843a953d0c2bd3129b/pymunk-0.8.win32.exe" }, { "comment_text": "", "digests": { "md5": "b52f352cad851b08df4e07991c71d489", "sha256": "63191a688347db3b27a7ae52d52626e76545a5c0aeeabf167c060ab98e2a3448" }, "downloads": -1, "filename": "pymunk-0.8.zip", "has_sig": false, "md5_digest": "b52f352cad851b08df4e07991c71d489", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258658, "upload_time": "2008-06-15T16:21:46", "url": "https://files.pythonhosted.org/packages/31/28/bc1d081ba1248ac8a55b10d8e072bef87dcb2b98098b8fb0d09c799078a9/pymunk-0.8.zip" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "1eba0ad69696471ad8b80ef436b45365", "sha256": "09364c009a8fe8f00d864206c8bdd89e1e20ea7f34fe2e16255ecf39700c5b89" }, "downloads": -1, "filename": "pymunk-0.8.1.win32.exe", "has_sig": false, "md5_digest": "1eba0ad69696471ad8b80ef436b45365", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 151449, "upload_time": "2008-11-02T00:07:34", "url": "https://files.pythonhosted.org/packages/03/a0/be2cf4b2e336ebaa5854a487498378ba38703ae965163ad0a0cf77c33616/pymunk-0.8.1.win32.exe" }, { "comment_text": "", "digests": { "md5": "e1025fc07710f6c3276b57adca509d8b", "sha256": "d0d096c00c9cc837ee7922f1373788aebdef19412e29249f637404a138a981a3" }, "downloads": -1, "filename": "pymunk-0.8.1.zip", "has_sig": false, "md5_digest": "e1025fc07710f6c3276b57adca509d8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 268538, "upload_time": "2008-11-02T00:07:47", "url": "https://files.pythonhosted.org/packages/71/8f/668589dae51266570af1bc0310ca173738d5e509c3805b0f77c418d3abb7/pymunk-0.8.1.zip" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "b87f0294736f78ecbf60667363388ddf", "sha256": "19676a1e20c9d7db68f17a82d6deab7d559bd4a6c1acd5e44ad1abeee824dc1f" }, "downloads": -1, "filename": "pymunk-0.8.2.win32.exe", "has_sig": false, "md5_digest": "b87f0294736f78ecbf60667363388ddf", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 154633, "upload_time": "2009-04-22T22:19:11", "url": "https://files.pythonhosted.org/packages/24/1f/03924123527c19c2cec7abcbe46000c91323bcbfe1c4ccbc2093c75d1bd7/pymunk-0.8.2.win32.exe" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "c05a53f2406c03058a13397b8cf3755a", "sha256": "291c7e1b90932b6fe41bb38b6e9bdfd9dc2aa0da42b23d29e3ff126e55ba9d34" }, "downloads": -1, "filename": "pymunk-0.8.3.win32.exe", "has_sig": false, "md5_digest": "c05a53f2406c03058a13397b8cf3755a", "packagetype": "bdist_wininst", "python_version": "2.6", "requires_python": null, "size": 155045, "upload_time": "2009-07-26T15:41:18", "url": "https://files.pythonhosted.org/packages/85/6f/86e2b3956a96160eac1406978f9bd9b33b5c003037448578f9d844e8543f/pymunk-0.8.3.win32.exe" }, { "comment_text": "", "digests": { "md5": "26d7e5a682d0838ad64281d5bb649ca6", "sha256": "2d6f798ded3828aa1c2c2be6b25e5e9049afb19b07d03b2bbd964346a54acddf" }, "downloads": -1, "filename": "pymunk-0.8.3.zip", "has_sig": false, "md5_digest": "26d7e5a682d0838ad64281d5bb649ca6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271895, "upload_time": "2009-07-26T15:41:53", "url": "https://files.pythonhosted.org/packages/3d/c5/5c90d66b94967d63b3dce24a55c84daef0f9d3b609e76660a662d65ce50f/pymunk-0.8.3.zip" } ], "1.0.0": [], "2.1.0": [ { "comment_text": "", "digests": { "md5": "7462fec7d03306739926fd62c941a72f", "sha256": "b8c8beddb394a234b57daac48a0deb91bf4a97c1e75208286450925e00b31861" }, "downloads": -1, "filename": "pymunk-2.1.0.win32.exe", "has_sig": false, "md5_digest": "7462fec7d03306739926fd62c941a72f", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 452731, "upload_time": "2011-12-04T13:00:27", "url": "https://files.pythonhosted.org/packages/10/8b/b58f394f8df733bb700c8c474d59d60826a74dfdf13441cf8ad6be628cca/pymunk-2.1.0.win32.exe" }, { "comment_text": "", "digests": { "md5": "bb4e762550eac93d7daf535d8e1c40eb", "sha256": "9f140aeaf9ac5c6758220538b8fd22feb8ea204bc53eb895404c67d1daee9f2c" }, "downloads": -1, "filename": "pymunk-2.1.0.zip", "has_sig": false, "md5_digest": "bb4e762550eac93d7daf535d8e1c40eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 546972, "upload_time": "2011-12-04T12:56:57", "url": "https://files.pythonhosted.org/packages/3d/77/db98cbc9d44f3f80ac5dab9f80a8a7a23262cd33188af7f0d2f554396870/pymunk-2.1.0.zip" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "1cb7f8e73d33abcd5b0a98447c70c8eb", "sha256": "c2652e8cdb2d13634a8a461fa824f39a719cd3c8186ecea6e5805df78b5c733f" }, "downloads": -1, "filename": "pymunk-3.0.0.win32.exe", "has_sig": false, "md5_digest": "1cb7f8e73d33abcd5b0a98447c70c8eb", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 614919, "upload_time": "2012-09-02T17:24:51", "url": "https://files.pythonhosted.org/packages/f7/70/18b642237fde86b9811a0372b3adee640425b5a3e9f71f6ac5e8025e50c1/pymunk-3.0.0.win32.exe" }, { "comment_text": "", "digests": { "md5": "13bbf409aa5ecef751b283bcf057a59b", "sha256": "effa4d2a9564914180c41c748e5ca91f84723c53696d310d763711c414a4a933" }, "downloads": -1, "filename": "pymunk-3.0.0.zip", "has_sig": false, "md5_digest": "13bbf409aa5ecef751b283bcf057a59b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1654748, "upload_time": "2012-09-02T17:24:23", "url": "https://files.pythonhosted.org/packages/7a/e9/2d571cf38ab9ed18576b846cc7ae169e02d9becaf144fa26242f76cbf868/pymunk-3.0.0.zip" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "5887c75a7b691810c0b72dfc491ce7bf", "sha256": "8c2ec9de3626d0b4d68bcae9759c315d19528a7c8949e3ed5ccc5465cdcaa83d" }, "downloads": -1, "filename": "pymunk-4.0.0.win32.exe", "has_sig": false, "md5_digest": "5887c75a7b691810c0b72dfc491ce7bf", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 666200, "upload_time": "2013-08-24T16:26:43", "url": "https://files.pythonhosted.org/packages/37/0c/bfce9daec2de0297ea5b6f5f048646c7320e1fa13789157ee4db791a8543/pymunk-4.0.0.win32.exe" }, { "comment_text": "", "digests": { "md5": "0b1fe07990840661e22d128c1a696009", "sha256": "7102b1a63d4eeb9eb459d4733663bc0af4ea59f664e3fac2228c704ec6768937" }, "downloads": -1, "filename": "pymunk-4.0.0.zip", "has_sig": false, "md5_digest": "0b1fe07990840661e22d128c1a696009", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2009343, "upload_time": "2013-08-24T16:26:19", "url": "https://files.pythonhosted.org/packages/20/2f/3cda672816ad399f901a49ecf6f3a038a06c6853e31596b40c0780c00f29/pymunk-4.0.0.zip" } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "29386ee5e359263e48bec633d4ec8241", "sha256": "98b2a609f9ad5c11b5cc529d26265400f7a63a86ac5bed506cdd960621ddd990" }, "downloads": -1, "filename": "pymunk-5.0.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "29386ee5e359263e48bec633d4ec8241", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 165208, "upload_time": "2016-07-17T07:06:13", "url": "https://files.pythonhosted.org/packages/8c/4c/29fe8b589acae39852b08889a49b3196e18749de26597badf8937f559373/pymunk-5.0.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "ca88f155d7ed84af850d4ef146654312", "sha256": "5da45983cd7754ba5e1dfb349fc3db90c6794189b9a2c142fd26289199fcdb76" }, "downloads": -1, "filename": "pymunk-5.0.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "ca88f155d7ed84af850d4ef146654312", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 171479, "upload_time": "2016-07-17T07:06:16", "url": "https://files.pythonhosted.org/packages/84/f2/ec2215dda57a214c1ed87831395e0917de9b7c79d8c8ef5a8768f38e68b8/pymunk-5.0.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ca7051bb28e354eafba04dfe6fc9bb78", "sha256": "4708eb37846162c33d86f6c148c8b5c68d7cd7841be3ba792585ee10350a69ab" }, "downloads": -1, "filename": "pymunk-5.0.0.zip", "has_sig": false, "md5_digest": "ca7051bb28e354eafba04dfe6fc9bb78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3979832, "upload_time": "2016-07-17T07:06:25", "url": "https://files.pythonhosted.org/packages/bb/d9/ac5ed69c68de238dfe8e4f56064a83a75ff31bebc38ced60f21db84f25e2/pymunk-5.0.0.zip" } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "6f4750cf5fad80c29cee22c654a8ff3a", "sha256": "9710fffcf9c9822082c9fb4b3840089b2337df3e64aa80918b8ec69e69887f92" }, "downloads": -1, "filename": "pymunk-5.1.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "6f4750cf5fad80c29cee22c654a8ff3a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 169027, "upload_time": "2016-10-16T16:10:13", "url": "https://files.pythonhosted.org/packages/78/9c/5aadb42c2186fc1187c286b970dc5e8be1f04b09bbcbc5b78e576b5d9814/pymunk-5.1.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "4d15462d1a55b26ef2a2bcb94c251b32", "sha256": "293dfca1f1ee55ab79c3bdb067e7d55135599a45da87f717666d4f2f27137632" }, "downloads": -1, "filename": "pymunk-5.1.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "4d15462d1a55b26ef2a2bcb94c251b32", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 175302, "upload_time": "2016-10-16T16:10:20", "url": "https://files.pythonhosted.org/packages/db/5c/f1b65e838117c1c5b9a119479b11821f2675862e6bcf3421022dfac62197/pymunk-5.1.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a83fe3ef182bc00c6ecb39f3a17788de", "sha256": "83b3c6db9b556af215d5cb858b88745924afab53f0025f20e89491e65f606424" }, "downloads": -1, "filename": "pymunk-5.1.0.zip", "has_sig": false, "md5_digest": "a83fe3ef182bc00c6ecb39f3a17788de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6924112, "upload_time": "2016-10-16T16:12:49", "url": "https://files.pythonhosted.org/packages/6e/c3/ac05e3309dc4b4a2f450822fa0de569bf5fe40f57a56e009319f99636955/pymunk-5.1.0.zip" } ], "5.2.0": [ { "comment_text": "", "digests": { "md5": "ccd0c46b57cee1d6e4d14ea7161cdaf3", "sha256": "122b97475dd2f28c15ca8a81f4154e2f7e3f8cd70f79ce8ef384f6b9ed3e9905" }, "downloads": -1, "filename": "pymunk-5.2.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "ccd0c46b57cee1d6e4d14ea7161cdaf3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 170109, "upload_time": "2017-03-26T09:43:38", "url": "https://files.pythonhosted.org/packages/b8/18/9bd3ce743623b3b3a6f2ff7d7af94c904f233d7a39c7b994ddff12703c81/pymunk-5.2.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "fbe29e586ff322ab9116ccea46b1968e", "sha256": "10a57414854e74551ff3403a4aa1ab4213f1fe8be1ab008b0a583ee6f8976080" }, "downloads": -1, "filename": "pymunk-5.2.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "fbe29e586ff322ab9116ccea46b1968e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 176379, "upload_time": "2017-03-26T09:43:39", "url": "https://files.pythonhosted.org/packages/c1/ce/777972008d61aa7d2b4fbc14ba71a7aa46f8eadcc254d09df4f66dda66cc/pymunk-5.2.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c89a7d51e786e5991dbc553a766ab9b4", "sha256": "46b9eb35b759518f43b5674f2c46618e815711429db50d36f11bac9e0a8584fa" }, "downloads": -1, "filename": "pymunk-5.2.0.zip", "has_sig": false, "md5_digest": "c89a7d51e786e5991dbc553a766ab9b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9648772, "upload_time": "2017-03-26T09:43:44", "url": "https://files.pythonhosted.org/packages/5e/bd/e67edcffdee3d0a1e3ebf0050bb9746a61d616f5502ceedddf0f7fd0a896/pymunk-5.2.0.zip" } ], "5.3.0": [ { "comment_text": "", "digests": { "md5": "1a3b33042b6f65a5726027c18261ee5c", "sha256": "d6accdea92690246bb7a9b36dc13bd1456d2c1beab589dfa1c90b378f4129bbc" }, "downloads": -1, "filename": "pymunk-5.3.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "1a3b33042b6f65a5726027c18261ee5c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 173143, "upload_time": "2017-06-11T21:05:48", "url": "https://files.pythonhosted.org/packages/d9/3a/61cc54762de42c0da70ded5341b373b2f451392752bfd8a0dfa4485bc504/pymunk-5.3.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "40673dbbf4e00d908c2e86f508ed2dcd", "sha256": "31aea0f41ed0f47255039fa6e452317281c6710cae6c089d621e6b393e651b93" }, "downloads": -1, "filename": "pymunk-5.3.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "40673dbbf4e00d908c2e86f508ed2dcd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 179413, "upload_time": "2017-06-11T21:05:50", "url": "https://files.pythonhosted.org/packages/60/76/15e7f2cb1afa8844a92bd2c276ecbaee7fcdca963c7dcf7f197b0c06089a/pymunk-5.3.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6a37edd4716ccef39da143cbdf7bf3a4", "sha256": "d595b5d6a13fcb82e46c9fd4573d578e4dfdf202fe3f0f6afd4106870e7b1caa" }, "downloads": -1, "filename": "pymunk-5.3.0.zip", "has_sig": false, "md5_digest": "6a37edd4716ccef39da143cbdf7bf3a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5682327, "upload_time": "2017-06-11T21:05:54", "url": "https://files.pythonhosted.org/packages/a4/78/f8a4aaf3aabfcc2d8e00858f4fbfad1f48fd4b51c90c1800fd3bdc0b034b/pymunk-5.3.0.zip" } ], "5.3.1": [ { "comment_text": "", "digests": { "md5": "0ce9368bd893354a3835756937554506", "sha256": "ba9ad9977c653b75e149393558610615923310f042b4312173cb435335a7a3a8" }, "downloads": -1, "filename": "pymunk-5.3.1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "0ce9368bd893354a3835756937554506", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 172795, "upload_time": "2017-07-15T18:47:00", "url": "https://files.pythonhosted.org/packages/18/01/447d7b36b513cea911c4458e1f1c08ef196555cd4cb5d8f385cebcdda10b/pymunk-5.3.1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "d8fe80997172134ae8686cb7ffa2c1f2", "sha256": "1676ee7d61818e9178945262d1093d0e4f190d967976f444d260eb21a07e9b80" }, "downloads": -1, "filename": "pymunk-5.3.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "d8fe80997172134ae8686cb7ffa2c1f2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 179069, "upload_time": "2017-07-15T18:47:03", "url": "https://files.pythonhosted.org/packages/50/e0/51794a693200787f4bf3d63abdbe3efbe1e99883540dde46b511c6a0b938/pymunk-5.3.1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "98beb73c4022d5469e9cb45399bcf33f", "sha256": "9204cc4cd7146f622b893dbfdd578c38ae10c0325fb70d92e72e7c6ffba8129c" }, "downloads": -1, "filename": "pymunk-5.3.1.zip", "has_sig": false, "md5_digest": "98beb73c4022d5469e9cb45399bcf33f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5682069, "upload_time": "2017-07-15T18:47:06", "url": "https://files.pythonhosted.org/packages/8a/f5/25c26dd6995142e1605c549934bebe92d642bc01287fa28b95bcad1283ba/pymunk-5.3.1.zip" } ], "5.3.2": [ { "comment_text": "", "digests": { "md5": "3037ca62283383c8c2f5aae2cfa24c85", "sha256": "44b9a9f88efe1be508aa4bd7ed28af53ba4625c8d197ff5e1a2302bfd0845f97" }, "downloads": -1, "filename": "pymunk-5.3.2-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "3037ca62283383c8c2f5aae2cfa24c85", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 172801, "upload_time": "2017-09-16T19:01:17", "url": "https://files.pythonhosted.org/packages/95/cf/634fb47e3bad2f1c9d6ff4c9c11708110df93df29b1ef61d9f0cbd0bb997/pymunk-5.3.2-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "054bbe0d665e1a023f71cfe96181ed07", "sha256": "9368cade04e7718a87f7f0652ef890aa54fe909974b0ffa6b5c37cf623f35dfe" }, "downloads": -1, "filename": "pymunk-5.3.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "054bbe0d665e1a023f71cfe96181ed07", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 179076, "upload_time": "2017-09-16T19:01:19", "url": "https://files.pythonhosted.org/packages/b4/e4/28164af8fb663eb0312e00f30a5e869e1ec64d1571802d611bc74344e407/pymunk-5.3.2-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cf1d89b3debc9b5ff58f2319f22963cb", "sha256": "d8b22479c71b886b34c103ca7d272aa207a974057ba90eeb85be2e793ff36d4a" }, "downloads": -1, "filename": "pymunk-5.3.2.zip", "has_sig": false, "md5_digest": "cf1d89b3debc9b5ff58f2319f22963cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5684476, "upload_time": "2017-09-16T19:01:23", "url": "https://files.pythonhosted.org/packages/07/a7/1770c435971e2178d77052e36d6f69cc27eab7f395f7668d477db2e70163/pymunk-5.3.2.zip" } ], "5.4.0": [ { "comment_text": "", "digests": { "md5": "f1da1f71cd3f2dae08cbb69a22c48453", "sha256": "ce3652d702e6acddf8890e116cdfaccca61a9b4195dfb57d7c7b35590efd13b4" }, "downloads": -1, "filename": "pymunk-5.4.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "f1da1f71cd3f2dae08cbb69a22c48453", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 526114, "upload_time": "2018-10-25T20:31:19", "url": "https://files.pythonhosted.org/packages/2b/59/5e89e69ec9510cc8039c2aa3a954c3fffc282da856220f28f253d43f7c9e/pymunk-5.4.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "1ca451ccb34de46e69c088838b547076", "sha256": "969f6bc5554f4f9d5596b6d3285fa197eb0eaaec200afd56d6eb5ebe23ac5d6d" }, "downloads": -1, "filename": "pymunk-5.4.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "1ca451ccb34de46e69c088838b547076", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 560576, "upload_time": "2018-10-25T20:31:21", "url": "https://files.pythonhosted.org/packages/2d/1b/f5eb38b1fb9b8acf3e966492a7c6c970abea5fda01558a13b6f345453809/pymunk-5.4.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "25b6727cbe136e59695b789ddabd75ab", "sha256": "dcd92862927c57873a3d138a41330ecf0a553609b4c60887221c872a9fdf1054" }, "downloads": -1, "filename": "pymunk-5.4.0.zip", "has_sig": false, "md5_digest": "25b6727cbe136e59695b789ddabd75ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9497259, "upload_time": "2018-10-25T20:32:06", "url": "https://files.pythonhosted.org/packages/d5/fd/1ff321558e2da1dff30a83e2e4ef3344fa7bc57c97d061691b0e05f542ae/pymunk-5.4.0.zip" } ], "5.4.1": [ { "comment_text": "", "digests": { "md5": "e35f3caaaccb41d2a99a47093db208af", "sha256": "0793fb3088ae4a651b9db4e9977a32ebed8ce900408baaac8fc2168f727a63aa" }, "downloads": -1, "filename": "pymunk-5.4.1-py2.py3-none-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "e35f3caaaccb41d2a99a47093db208af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 304422, "upload_time": "2018-12-31T21:06:35", "url": "https://files.pythonhosted.org/packages/20/d3/a2ca695f22109954f3997e610f78deb2a6a8e79f35e5a08a1c7b646a8258/pymunk-5.4.1-py2.py3-none-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cae9d58195c92e8d01c1f04d6a41297f", "sha256": "614a32e3888b663fddf03e07410d9499ebe064b847d843d4ba098a76286e2402" }, "downloads": -1, "filename": "pymunk-5.4.1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cae9d58195c92e8d01c1f04d6a41297f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 494400, "upload_time": "2018-12-31T21:06:36", "url": "https://files.pythonhosted.org/packages/f1/9b/a37e121455aa23a17afc19cf48ae653c6981674f7b94381c563368b2b9bf/pymunk-5.4.1-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "742857371608db655f9d42e85778bcd7", "sha256": "09365a7e82f081f6e0e930e1165ad66c4102d1e75faa08c788c3948d420827ab" }, "downloads": -1, "filename": "pymunk-5.4.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "742857371608db655f9d42e85778bcd7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 533792, "upload_time": "2018-12-31T21:06:39", "url": "https://files.pythonhosted.org/packages/09/d7/09589240801af4b952a443ad18dd7f510999451747ae153a3214e08206d5/pymunk-5.4.1-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "eae1f0a13ba6b8d249ff115bc7eb7c72", "sha256": "e6205b55c5d6f6c3769abed06dba871639944f45e15179bd4cf0ff7ebb7602ba" }, "downloads": -1, "filename": "pymunk-5.4.1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "eae1f0a13ba6b8d249ff115bc7eb7c72", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 607002, "upload_time": "2018-12-31T21:01:39", "url": "https://files.pythonhosted.org/packages/c1/c4/518251bbd16d077da2fed856e964c50b6b64cb4fba094aa60cfa5b35b0a4/pymunk-5.4.1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "29a90ca2bc216c5fa4df36334dd0aead", "sha256": "679021829c1edb2309a64c19c97e14864e9fa74e71c22afe9059997a3d41af92" }, "downloads": -1, "filename": "pymunk-5.4.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "29a90ca2bc216c5fa4df36334dd0aead", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 771270, "upload_time": "2018-12-31T21:03:19", "url": "https://files.pythonhosted.org/packages/a2/e3/12d78da0d2e9bb7fe8ac85f79568566e3d60db9b4b0b47e3f67873a08c97/pymunk-5.4.1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9389ea0ede1d999367d20ef04d669507", "sha256": "d85ae4dc1bc6ee5a0a9ff6f5ff95b4f8a5892cf11985a2433a9eb52daf6515bf" }, "downloads": -1, "filename": "pymunk-5.4.1.zip", "has_sig": false, "md5_digest": "9389ea0ede1d999367d20ef04d669507", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9500588, "upload_time": "2018-12-31T21:01:45", "url": "https://files.pythonhosted.org/packages/b0/96/51c7b8032a1d44e7dfc8ad3b9023c2d6c05bfbbf55fae8c91f6a6398d997/pymunk-5.4.1.zip" } ], "5.4.2": [ { "comment_text": "", "digests": { "md5": "67d7603b171188172db35677119a23c4", "sha256": "44893fda0e6c5e9c72bab0f60bdd3761a7dabac0f9e73696e22a22e7b0d27fbb" }, "downloads": -1, "filename": "pymunk-5.4.2-py2.py3-none-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "67d7603b171188172db35677119a23c4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 304503, "upload_time": "2019-01-07T20:33:05", "url": "https://files.pythonhosted.org/packages/86/7b/bed659414507a861056675377c6cb575a22d0e02789ae7dbed3fdd81529f/pymunk-5.4.2-py2.py3-none-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "74cb026bbab3a2394217f8dd07f0181a", "sha256": "085fa079d10d6af8b0681167c63f780d68707d15b569b8e74d359056f5b63f09" }, "downloads": -1, "filename": "pymunk-5.4.2-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "74cb026bbab3a2394217f8dd07f0181a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 494499, "upload_time": "2019-01-07T20:33:07", "url": "https://files.pythonhosted.org/packages/14/1a/83d89de82fdeca042335067ae480ac52c537cebdc1c6c2d012cb05eec6b4/pymunk-5.4.2-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "14f46dae0f37b81f5b17e3d7054e1fab", "sha256": "0cbef48bad7d9195a7af69dc8dbf04be6ff6505acdc36a52c3343c54bd695361" }, "downloads": -1, "filename": "pymunk-5.4.2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "14f46dae0f37b81f5b17e3d7054e1fab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 533873, "upload_time": "2019-01-07T20:33:09", "url": "https://files.pythonhosted.org/packages/98/ff/46fd8ac162fed4fad2f0eec706cf48d3a6bcc290c735ff65dfbd677d9824/pymunk-5.4.2-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9a03bc4d76af959810c8db27da60d444", "sha256": "72bdf45cabe824458518f0fd9934c92ee2ab932f8d314ac3124c1966dc6b94ba" }, "downloads": -1, "filename": "pymunk-5.4.2-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "9a03bc4d76af959810c8db27da60d444", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 587576, "upload_time": "2019-01-07T20:33:11", "url": "https://files.pythonhosted.org/packages/98/f5/d23c8f778030c69e9e4d6e387f30df2234954a44625c69eb5c5bff41a350/pymunk-5.4.2-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "398e9d067b632997911bb0997dc83a6a", "sha256": "e28da2d7bf6268a5173e9474a9b3a61db9e68e1298db35822d121e9095f4c674" }, "downloads": -1, "filename": "pymunk-5.4.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "398e9d067b632997911bb0997dc83a6a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 759225, "upload_time": "2019-01-07T20:33:13", "url": "https://files.pythonhosted.org/packages/14/78/49bd1012168004252e0c7281ff96e022985ef3bee14ebe323f81d5222347/pymunk-5.4.2-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3ddf6bdc4a060857a30de0f778646ea5", "sha256": "fc77d5a7585513a3499fc71d2bdbc641d379cf9b6de5258e498aa96848a1fd46" }, "downloads": -1, "filename": "pymunk-5.4.2.zip", "has_sig": false, "md5_digest": "3ddf6bdc4a060857a30de0f778646ea5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9503598, "upload_time": "2019-01-07T20:33:18", "url": "https://files.pythonhosted.org/packages/f7/97/1cf87a451b81c4b1385c92045274adca0769ce84d30a8981ef147fb58dad/pymunk-5.4.2.zip" } ], "5.5.0": [ { "comment_text": "", "digests": { "md5": "815cd89677238d910673d695fcef025d", "sha256": "cbd1c2a6fa747dce7c463ce2fdc647cf9ab9164415fe74238ddc889d278e4e1a" }, "downloads": -1, "filename": "pymunk-5.5.0-py2.py3-none-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "815cd89677238d910673d695fcef025d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 305406, "upload_time": "2019-05-04T17:58:47", "url": "https://files.pythonhosted.org/packages/29/64/4ac51b99c9b32d669e144138ecd76ad13aeef504587c8c3d4824fa0c8070/pymunk-5.5.0-py2.py3-none-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1dce407bca8ff2fddb31e716ebc98e3e", "sha256": "56ab5fdc12306465fb2560c4b403856d4f01a716b8ae118914e97bf4e79db612" }, "downloads": -1, "filename": "pymunk-5.5.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1dce407bca8ff2fddb31e716ebc98e3e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 496577, "upload_time": "2019-05-04T17:58:49", "url": "https://files.pythonhosted.org/packages/35/ac/2103e6106cdc45c2b1bef7442af153d2cfe84b0418397e868e7e7288f9c3/pymunk-5.5.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7a33fb8515c6c8bd3be1578d734f39fc", "sha256": "db739555d3351b1ebd3bf1f76afdc10a5395454946e0b15cfb691ffe76c81393" }, "downloads": -1, "filename": "pymunk-5.5.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7a33fb8515c6c8bd3be1578d734f39fc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 534699, "upload_time": "2019-05-04T17:58:51", "url": "https://files.pythonhosted.org/packages/e8/93/ae1a346355fdba73322fa5aa89464338b80338e3e571c71756d6562db70f/pymunk-5.5.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "af61f355dd03b045071c9d8a6875a0e5", "sha256": "8d585d5281f3c254c5dd6cb6816f2dbe1e28dba6d81383f8eb8f3c7bfff45777" }, "downloads": -1, "filename": "pymunk-5.5.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "af61f355dd03b045071c9d8a6875a0e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 593457, "upload_time": "2019-05-04T17:58:53", "url": "https://files.pythonhosted.org/packages/17/c1/01138da1a13b89f24d33d2f8f8831a042856b72dcfe9b8b0f3a08947541e/pymunk-5.5.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "3ffe0682e0076c3f3cbb0752b46282a0", "sha256": "e51e1bb49e446b13ecbdf8981599a532698d7cd39bf0d811b01571ef1a9e0447" }, "downloads": -1, "filename": "pymunk-5.5.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "3ffe0682e0076c3f3cbb0752b46282a0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 761846, "upload_time": "2019-05-04T17:58:55", "url": "https://files.pythonhosted.org/packages/f8/91/155b16b74a8ea69502918c8fdd951a5979c284825228319c6abc98f95df4/pymunk-5.5.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4ec5c562b1dbcf955c5a1975a159e418", "sha256": "9ebaf08f0a8f8e9b7c50b1079829f3a4934d499a6c71d284ba5111ea865d6051" }, "downloads": -1, "filename": "pymunk-5.5.0.zip", "has_sig": false, "md5_digest": "4ec5c562b1dbcf955c5a1975a159e418", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5978044, "upload_time": "2019-05-04T17:58:58", "url": "https://files.pythonhosted.org/packages/ad/af/3ddb99151074c52ddaa7dcf2b1a0e9b41670a79adc904001d7f3c62e77ea/pymunk-5.5.0.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "815cd89677238d910673d695fcef025d", "sha256": "cbd1c2a6fa747dce7c463ce2fdc647cf9ab9164415fe74238ddc889d278e4e1a" }, "downloads": -1, "filename": "pymunk-5.5.0-py2.py3-none-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "815cd89677238d910673d695fcef025d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 305406, "upload_time": "2019-05-04T17:58:47", "url": "https://files.pythonhosted.org/packages/29/64/4ac51b99c9b32d669e144138ecd76ad13aeef504587c8c3d4824fa0c8070/pymunk-5.5.0-py2.py3-none-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1dce407bca8ff2fddb31e716ebc98e3e", "sha256": "56ab5fdc12306465fb2560c4b403856d4f01a716b8ae118914e97bf4e79db612" }, "downloads": -1, "filename": "pymunk-5.5.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1dce407bca8ff2fddb31e716ebc98e3e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 496577, "upload_time": "2019-05-04T17:58:49", "url": "https://files.pythonhosted.org/packages/35/ac/2103e6106cdc45c2b1bef7442af153d2cfe84b0418397e868e7e7288f9c3/pymunk-5.5.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "7a33fb8515c6c8bd3be1578d734f39fc", "sha256": "db739555d3351b1ebd3bf1f76afdc10a5395454946e0b15cfb691ffe76c81393" }, "downloads": -1, "filename": "pymunk-5.5.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7a33fb8515c6c8bd3be1578d734f39fc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 534699, "upload_time": "2019-05-04T17:58:51", "url": "https://files.pythonhosted.org/packages/e8/93/ae1a346355fdba73322fa5aa89464338b80338e3e571c71756d6562db70f/pymunk-5.5.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "af61f355dd03b045071c9d8a6875a0e5", "sha256": "8d585d5281f3c254c5dd6cb6816f2dbe1e28dba6d81383f8eb8f3c7bfff45777" }, "downloads": -1, "filename": "pymunk-5.5.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "af61f355dd03b045071c9d8a6875a0e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 593457, "upload_time": "2019-05-04T17:58:53", "url": "https://files.pythonhosted.org/packages/17/c1/01138da1a13b89f24d33d2f8f8831a042856b72dcfe9b8b0f3a08947541e/pymunk-5.5.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "3ffe0682e0076c3f3cbb0752b46282a0", "sha256": "e51e1bb49e446b13ecbdf8981599a532698d7cd39bf0d811b01571ef1a9e0447" }, "downloads": -1, "filename": "pymunk-5.5.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "3ffe0682e0076c3f3cbb0752b46282a0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 761846, "upload_time": "2019-05-04T17:58:55", "url": "https://files.pythonhosted.org/packages/f8/91/155b16b74a8ea69502918c8fdd951a5979c284825228319c6abc98f95df4/pymunk-5.5.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4ec5c562b1dbcf955c5a1975a159e418", "sha256": "9ebaf08f0a8f8e9b7c50b1079829f3a4934d499a6c71d284ba5111ea865d6051" }, "downloads": -1, "filename": "pymunk-5.5.0.zip", "has_sig": false, "md5_digest": "4ec5c562b1dbcf955c5a1975a159e418", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5978044, "upload_time": "2019-05-04T17:58:58", "url": "https://files.pythonhosted.org/packages/ad/af/3ddb99151074c52ddaa7dcf2b1a0e9b41670a79adc904001d7f3c62e77ea/pymunk-5.5.0.zip" } ] }