Skip to main content

Pymunk is a easy-to-use pythonic 2d physics library

Project description

https://raw.githubusercontent.com/viblo/pymunk/master/docs/src/_static/pymunk_logo_animation.gif

Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python. Perfect when you need 2d physics in your game, demo or other application! It is built on top of the very capable 2d physics library Chipmunk.

The first version was released in 2007 and Pymunk is still actively developed and maintained today, more than 10 years of active development!

Pymunk has been used with success in many projects, big and small. For example: 3 Pyweek game competition winners, more than a dozen published scientific papers and even in a self-driving car simulation! See the Showcases section on the Pymunk webpage for some examples.

2007 - 2021, Victor Blomqvist - vb@viblo.se, MIT License

This release is based on the latest Pymunk release (6.2.0), using Chipmunk 7 rev 0593976ef47fcb3957166bd342f6b2bafe4d0e44 .

Installation

In the normal case pymunk can be installed from PyPI with pip:

> pip install pymunk

It has one direct dependency, CFFI.

Pymunk can also be installed with conda, from the conda-forge channel:

> conda install -c conda-forge pymunk

Example

Quick code example:

import pymunk               # Import pymunk..

space = pymunk.Space()      # Create a Space which contain the simulation
space.gravity = 0,-1000     # Set its gravity

body = pymunk.Body(1,1666)  # Create a Body with mass and moment
body.position = 50,100      # Set the position of the body

poly = pymunk.Poly.create_box(body) # Create a box shape and attach to body
space.add(body, poly)       # Add both body and shape to the simulation

print_options = pymunk.SpaceDebugDrawOptions() # For easy printing

while True:                 # Infinite loop simulation
    space.step(0.02)        # Step the simulation one step forward
    space.debug_draw(print_options) # Print the state of the simulation

For more detailed and advanced examples, take a look at the included demos (in examples/).

Examples are not included if you install with pip install pymunk. Instead you need to download the source archive (pymunk-x.y.z.zip). Download available from https://pypi.org/project/pymunk/#files

Documentation

The source distribution of Pymunk ships with a number of demos of different simulations in the examples directory, and it also contains the full documentation including API reference.

You can also find the full documentation including examples and API reference on the Pymunk homepage, http://www.pymunk.org

The Pymunk Vision

Make 2d physics easy to include in your game

It is (or is striving to be):

  • Easy to use - It should be easy to use, no complicated code should be needed to add physics to your game or program.

  • “Pythonic” - It should not be visible that a c-library (Chipmunk) is in the bottom, it should feel like a Python library (no strange naming, OO, no memory handling and more)

  • Simple to build & install - You shouldn’t need to have a zillion of libraries installed to make it install, or do a lot of command line tricks.

  • Multi-platform - Should work on both Windows, *nix and OSX.

  • Non-intrusive - It should not put restrictions on how you structure your program and not force you to use a special game loop, it should be possible to use with other libraries like Pygame and Pyglet.

Contact & Support

Homepage

http://www.pymunk.org/

Stackoverflow

You can ask questions/browse old ones at Stackoverflow, just look for the Pymunk tag. http://stackoverflow.com/questions/tagged/pymunk

E-Mail

You can email me directly at vb@viblo.se

Issue Tracker

Please use the issue tracker at github to report any issues you find: https://github.com/viblo/pymunk/issues

Regardless of the method you use I will try to answer your questions as soon as I see them. (And if you ask on SO other people might help as well!)

Dependencies / Requirements

Basically Pymunk have been made to be as easy to install and distribute as possible, usually pip install will take care of everything for you.

  • Python (Runs on CPython 3.6 and later and Pypy3)

  • Chipmunk (Compiled library already included on common platforms)

  • CFFI (will be installed automatically by Pip)

  • Setuptools (should be included with Pip)

  • GCC and friends (optional, you need it to compile Pymunk from source. On windows Visual Studio is required to compile)

  • Pygame (optional, you need it to run the Pygame based demos)

  • Pyglet (optional, you need it to run the Pyglet based demos)

  • Matplotlib & Jupyter Notebook (optional, you need it to run the Matplotlib based demos)

  • Sphinx & aafigure & sphinx_autodoc_typehints (optional, you need it to build documentation)

Python 2 Support

Support for Python 2 (and Python 3.0 - 3.5) has been dropped with Pymunk 6.0. If you use these legacy versions of Python, please use Pymunk 5.x.

Install from source / Chipmunk Compilation

This section is only required in case you do not install pymunk from the prebuild binary wheels (normally if you do not use pip install or you are on a uncommon platform).

Pymunk is built on top of the c library Chipmunk. It uses CFFI to interface with the Chipmunk library file. Because of this Chipmunk has to be compiled together with Pymunk as an extension module.

There are basically two options, either building it automatically as part of installation using for example Pip:

> pip install pymunk-source-dist.zip

Or if you have the source unpacked / you got Pymunk by cloning its git repo, you can explicitly tell Pymunk to compile it inplace:

> python setup.py build_ext --inplace

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymunk-6.2.0.zip (7.1 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pymunk-6.2.0-pp36-pypy36_pp73-win32.whl (205.3 kB view details)

Uploaded PyPyWindows x86

pymunk-6.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (241.2 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

pymunk-6.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (195.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pymunk-6.2.0-cp39-cp39-win_amd64.whl (286.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pymunk-6.2.0-cp39-cp39-win32.whl (235.2 kB view details)

Uploaded CPython 3.9Windows x86

pymunk-6.2.0-cp39-cp39-manylinux2010_x86_64.whl (979.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

pymunk-6.2.0-cp39-cp39-manylinux2010_i686.whl (902.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

pymunk-6.2.0-cp39-cp39-manylinux1_x86_64.whl (979.1 kB view details)

Uploaded CPython 3.9

pymunk-6.2.0-cp39-cp39-manylinux1_i686.whl (902.2 kB view details)

Uploaded CPython 3.9

pymunk-6.2.0-cp39-cp39-macosx_10_9_x86_64.whl (265.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pymunk-6.2.0-cp38-cp38-win_amd64.whl (286.2 kB view details)

Uploaded CPython 3.8Windows x86-64

pymunk-6.2.0-cp38-cp38-win32.whl (234.6 kB view details)

Uploaded CPython 3.8Windows x86

pymunk-6.2.0-cp38-cp38-manylinux2010_x86_64.whl (984.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

pymunk-6.2.0-cp38-cp38-manylinux2010_i686.whl (906.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

pymunk-6.2.0-cp38-cp38-manylinux1_x86_64.whl (984.2 kB view details)

Uploaded CPython 3.8

pymunk-6.2.0-cp38-cp38-manylinux1_i686.whl (906.7 kB view details)

Uploaded CPython 3.8

pymunk-6.2.0-cp38-cp38-macosx_10_9_x86_64.whl (263.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pymunk-6.2.0-cp37-cp37m-win_amd64.whl (286.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

pymunk-6.2.0-cp37-cp37m-win32.whl (234.5 kB view details)

Uploaded CPython 3.7mWindows x86

pymunk-6.2.0-cp37-cp37m-manylinux2010_x86_64.whl (980.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

pymunk-6.2.0-cp37-cp37m-manylinux2010_i686.whl (902.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

pymunk-6.2.0-cp37-cp37m-manylinux1_x86_64.whl (980.9 kB view details)

Uploaded CPython 3.7m

pymunk-6.2.0-cp37-cp37m-manylinux1_i686.whl (902.7 kB view details)

Uploaded CPython 3.7m

pymunk-6.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (263.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pymunk-6.2.0-cp36-cp36m-win_amd64.whl (286.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

pymunk-6.2.0-cp36-cp36m-win32.whl (234.5 kB view details)

Uploaded CPython 3.6mWindows x86

pymunk-6.2.0-cp36-cp36m-manylinux2010_x86_64.whl (980.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

pymunk-6.2.0-cp36-cp36m-manylinux2010_i686.whl (902.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

pymunk-6.2.0-cp36-cp36m-manylinux1_x86_64.whl (980.9 kB view details)

Uploaded CPython 3.6m

pymunk-6.2.0-cp36-cp36m-manylinux1_i686.whl (902.8 kB view details)

Uploaded CPython 3.6m

pymunk-6.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (263.6 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file pymunk-6.2.0.zip.

File metadata

  • Download URL: pymunk-6.2.0.zip
  • Upload date:
  • Size: 7.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0.zip
Algorithm Hash digest
SHA256 c33d727578d4675372ab9b119db35feac98a210985564f6ba6b15d469e7472e4
MD5 f829e0c52ae0846db77258bf079916c0
BLAKE2b-256 d3036d80fc57859183ecfe9abb8b27463031822c0fcfbd806d8bdb85bc315440

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: pymunk-6.2.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 205.3 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 c4e1d77474e991837b44dd8611cbf6fae946a378c07adbe3676bd97e4bda6f91
MD5 c0f70fe0dd4cbee08ae503f6ce84c57b
BLAKE2b-256 1bf1ecd9828e0b2d9fa69eeb63cd131442ad22436c2e6cded5f3f02101dac95b

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 241.2 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e85ee65d8c271cc2d37690476d251674b57bc4808a5772991e4ed5afb72f6851
MD5 17dc6a8f86b33c7bbb0086aa53e9a158
BLAKE2b-256 01b248425cbc25ae400120e9372b49a691446adecf9f1c6603dc6a0733b863b4

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 241.2 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fda40a98a55568ecb62696381330c60c4115b9613940b39e1b1d7a772a92deb5
MD5 300528e568cef2f54adbeda957320ace
BLAKE2b-256 c1ac282fee2ed21ad9b2ade7495793deca1ce3bf94cd200518904d773a0323b4

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 195.7 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 efd420c55a99f78d9dcf4012695c7a54eac9a6282a6432b638cb1d76da594b31
MD5 d31783058fe0ad71174ee7fb070a49c4
BLAKE2b-256 1b4916be5d712c8ee937ad5416ba7d2d9e3e282583d833b87b4961be2c15552d

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 286.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e3e2857966fd286e2e1049161e186fb5f8f9ad840247fcda82db37d59d52a073
MD5 73bc9b6af1627f6352c1cca8f82be542
BLAKE2b-256 0e6a6bb9b06d2bd8818538aba3fac41da7d9781c748112aba5a88f0a4fdea178

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 235.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6f6ca538b91828ac6b30ec19981a160a792d4ffa0f60d6b16fc0519051d90258
MD5 be94a9c16b7c27343ee297edd864f3dd
BLAKE2b-256 dd29b698cc4cd24061259f218832612df4b1bae00839c9d05084425c299deabf

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 979.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b8ef621c805d4e5120f94e9f35ef43073709b032760c55ec46da14fa97710a09
MD5 2620df61ef56e51b5c9e40cdd8ac340d
BLAKE2b-256 c71e49b28848467bd349bd8e828b84fa1bf822b846805fec8da041f7e811bb36

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 902.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5d1c80e7d49da6a2ee3ce7c4cd84afb54a64c6a8d64eadd53b111dd1d4af1e54
MD5 86d5196be3acd580387602f900454a66
BLAKE2b-256 a11870f8ee605c064eee8b6f6606f3db7cb176be4c0400eb0e8b555374233931

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 979.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 495258984254f7a0e1bd37fb8ae83f7b4fa30e028f14767625768835025a020c
MD5 9cbcdc4309c8a92d9f0e52dffd798189
BLAKE2b-256 380fb26faec23385e137aed69ca7687eaa0dc4add77c677259c4b7a83134aeda

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 902.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 77c6745ffdee648759b6d88d9485150a0e961e25e4b5683473f90732a07f0fad
MD5 0c3a7900d3ade28aec17637b947a174e
BLAKE2b-256 07d2ca8f96693dd2970d047c57f76a536d1a008e0a1f0b1fa99f2e80a9a8fd81

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 265.2 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be2c310370c9e0d1b140b19e6e12b9aa977641bdbe607689319cd8b6709dd9d6
MD5 8419f1058f04cc3ef8af4aebc71cf8c6
BLAKE2b-256 b6d56f9bfc4107e17bd13e1abecce8de3a91443609be18df8ad24d41de86bde1

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 286.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 17b4d2b162a3040855983032344506943255ddee46a81676df92a30c7fb10f92
MD5 c99fe5bd82be3ead264223572b60435b
BLAKE2b-256 a8c96d9e365aa211cc212484c6f414d08615f736b36c6f7f24aaaab742b0724e

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 234.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e82872ca5b64ea6c143d1dc442c0bce8f4e4cb597d7fb7886174e4e97a9bf7c7
MD5 238dea8647d493b5b069d9a8bfdec324
BLAKE2b-256 da6f9adb730c1f1f0161418e73334af3de37670d1a2776a24fa8016323e776ae

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 984.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 72400d072f22faecf723da4f7926eab34140c4c66b24e0905779e67ae0809583
MD5 4686320881d5250403bd4ff16fb3364f
BLAKE2b-256 be01ba061a7d95b8bb3825d30345cde94ef7c01c9a8a833ee4e9cdc561f57f81

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 906.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b93612fc8a2a35495b65ebc3de282d31ebc738e26da431db0e7b49ed466c052c
MD5 bda3820bef0e3d378b9e4f7dc9352e82
BLAKE2b-256 a15c51500919520276fd5d5cb27d630afe37e47c2d7aa7bf09563e54880c9d96

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 984.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c09ce55a82a1ee240f156bf4c094236513c247cc0412b75eff87eda89b6606eb
MD5 fde38ed4d02a053b7dd53e4f95124a17
BLAKE2b-256 8386b09a53d03a71615e964b396c353e51c076ddc27e29b5f242c95bd360f5b0

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 906.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7fe1d4833fe58afd868f774a3e0872a075dff70b735927ade7ea6c5770f9d6da
MD5 5059368cda26e2bf74f073ec4bd60a78
BLAKE2b-256 6f43f8b1e210c486e45799f49fd735f71aab0b4237576eb3bc8c7df82721e6ca

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 263.7 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bcc6c9b43b81127f95bc8675e6efeef87f30944f0040beec38d3ec113cf860bb
MD5 764aa4cbc2723f51014d20c1af920ce4
BLAKE2b-256 a2d306dfb76410c13abfd0c713ce160ea24b9519d6acb0a14bba8410575b4260

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 286.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fa1dd7744af0650bcec32ac56540a3e132bac9fe2fda53f126387bedbce229f3
MD5 dc833562e46709c6cc4993444420390b
BLAKE2b-256 fc32e191999c812dcb4f721bf46d28a674baeb35c33dd2548c9b63a3d5e27ac2

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 234.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 87cb72ee070ff409d70dafedf261e9b1ba38f449f7b1f7f8306d9fb20e4ba390
MD5 6aa0b7b3903af33b160930a56ca2f8e6
BLAKE2b-256 a6807cde0741ea6ccc6c02dca6e20f233e0445ec707eec242a0790a595214c3b

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 980.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b7eaf2dc4b1a772a752d25c699832fdff851c182bfa79877f55056f4028a8daa
MD5 38c6a06808543ac9e4518cca54ce77c9
BLAKE2b-256 46a11d287d8ab95573707b12ceb7470bd6b4d87041d99d040a219743c82919d4

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 902.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b52c55aba6be06916344440ad45dd1898ab596710e3a560c627c2e43505e3694
MD5 3855cf1fec740ccd5e589446671119e7
BLAKE2b-256 56e7db1d54b8be397c9db40d316642fba16c013f193c0e9da12ebeac67fed239

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 980.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a27d2c9958250232582faefc61aefacfe5983667bd336ca654cd908e1703aa0c
MD5 b6cbcf2782bf9b2185916548282f552c
BLAKE2b-256 11889e9d8bd46873749aee400fbf95d928173b7e19b48315afa3a7f36cc48987

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 902.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 baf9eab2b1483f50cdabf9fc1dddfe5565c22c72be6f29eedd0eb34906e5884a
MD5 8951013b9da7edf57ae2b9bf521ffb3d
BLAKE2b-256 98f8f3a9d03f11eef052509a0fd16dd157b946d3e446643aa4d95e103e79d10e

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 263.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 684e9d3574c05bcc3681d8950c47549aed89820cf1a908526c38b6d989e8f451
MD5 a19db4186a72b913ddaded9b20b07e22
BLAKE2b-256 f4656940b56b6f974ce136f1b9ae8600a87a74aeee9dcd13df632a3751b0a8be

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 286.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bdc5ef2cf8381512f2822f188d73bbdccc310b0959f9ceec1c89570e1409b538
MD5 97580a176f19dd62703fe4b9832afe96
BLAKE2b-256 ea7be2ed267eb6e24f80d889b735c18543b58b582a322352804a34c32992a271

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 234.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e476ae9b55384e43e5e4a89ac400789c2ec7f39ba35df8c0e4eb1d5a44f35f20
MD5 c7bc5906a4fb163e39756da6392b87b1
BLAKE2b-256 e4a72024c33033a888475f1bca54c8bb1fdb1d00ed42e9a4c5bfd471cb53e887

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 980.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f89e34c6dd67c016cc912aaf92b29f33e6a8128c3173e28cbd72dfd388c89466
MD5 04720e15e98fb2a7d3a61188f896d3c9
BLAKE2b-256 8f8b9670818ace0ae7ac68f5dc49249d13f6f7c892189c8b06e8fb5bf8a227cc

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 902.8 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1cdf4ad3a1869263daa6e51c058f736fd7ac89cbc581856dcabcf61ec152d4af
MD5 f72c76c58d83a7a22571219617eb5d6e
BLAKE2b-256 f22fe1d3ddb7c382ed9d46b4433d8adf3509591a590e086b569500d452476e2b

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 980.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f092e830e4ec919bd95aadbfdcc8737ed9eb44c0cee0ba0556738c81d207f3aa
MD5 548326bf6777b3a20031b809b17a725e
BLAKE2b-256 87381b6fee88f8540b36c1649c41a3566925bf2f66f33f19eff053c97cb43249

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 902.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f08bec9e7b62fa321c6acd1cc7a52a4016943effa26fb442e8beb02fbc854a6
MD5 0f91b5ae75702b16b001c4f249bfc7f9
BLAKE2b-256 5ac2c6b84caa19085716306fae8c0145cc5660053717cd5def29811006327b91

See more details on using hashes here.

File details

Details for the file pymunk-6.2.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 263.6 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aeb31794b832b080a76e0e365a72d2da4104269c3a3f13e1ca9ef9d66fb5f9b4
MD5 f9c759e1e32a138c821f8c630331c8eb
BLAKE2b-256 3080af8b1616a37b50519a4e23b34e46f4e3db7b74cfa7d643ef2e17f5f00938

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page