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 an 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 simulation! It is built on top of the very capable 2D physics library Chipmunk2D.

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

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

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

This release is based on the latest Pymunk release (6.11.1), using Chipmunk2D 7 rev dfc2fb8ca023ce6376fa2cf4a7f91c92ee08a970.

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

For more detailed installation instructions, please see the complete Pymunk documentation.

Example

Quick code example:

import pymunk               # Import pymunk..

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

body = pymunk.Body()        # Create a Body
body.position = 50,100      # Set the position of the body

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

print_options = pymunk.SpaceDebugDrawOptions() # For easy printing

for _ in range(100):        # Run simulation 100 steps in total
    space.step(0.02)        # Step the simulation one step forward
    space.debug_draw(print_options) # Print the state of the simulation

This will print (to console) the state of the simulation. For more visual, detailed and advanced examples, take a look at the included demos. They are included in the Pymunk install, in the pymunk.examples subpackage. They can be run directly. To list the examples:

> python -m pymunk.examples -l

And to run one of them:

> python -m pymunk.examples.index_video

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. This is also the place for feature requests: 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 Stackoverflow other people might help as well!)

Documentation

The full documentation including API reference, showcase of usages and screenshots of examples is available 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.

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.8 and later and Pypy3)

  • Chipmunk (Prebuilt and included when using binary wheels)

  • 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)

  • Numpy (optional, you need to it run a few demos)

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

Older Pythons

  • Support for Python 2 (and Python 3.0 - 3.5) was dropped with Pymunk 6.0.

  • Support for Python 3.6 was dropped with Pymunk 6.5.2.

  • Support for Python 3.7 was dropped with Pymunk 6.9.0

If you use any of these legacy versions of Python, please use an older Pymunk version. (It might work on newer Pymunks as well, but it’s not tested, and no wheels are built.)

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.11.1.tar.gz (3.4 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.11.1-pp310-pypy310_pp73-win_amd64.whl (307.7 kB view details)

Uploaded PyPyWindows x86-64

pymunk-6.11.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pymunk-6.11.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (333.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pymunk-6.11.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (281.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymunk-6.11.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (289.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymunk-6.11.1-pp39-pypy39_pp73-win_amd64.whl (307.7 kB view details)

Uploaded PyPyWindows x86-64

pymunk-6.11.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pymunk-6.11.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (333.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pymunk-6.11.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (281.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymunk-6.11.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (289.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymunk-6.11.1-cp313-cp313-win_amd64.whl (366.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pymunk-6.11.1-cp313-cp313-win32.whl (315.1 kB view details)

Uploaded CPython 3.13Windows x86

pymunk-6.11.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pymunk-6.11.1-cp313-cp313-musllinux_1_2_i686.whl (976.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pymunk-6.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pymunk-6.11.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (990.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pymunk-6.11.1-cp313-cp313-macosx_11_0_arm64.whl (347.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymunk-6.11.1-cp313-cp313-macosx_10_13_x86_64.whl (364.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymunk-6.11.1-cp312-cp312-win_amd64.whl (366.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pymunk-6.11.1-cp312-cp312-win32.whl (315.1 kB view details)

Uploaded CPython 3.12Windows x86

pymunk-6.11.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pymunk-6.11.1-cp312-cp312-musllinux_1_2_i686.whl (976.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pymunk-6.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pymunk-6.11.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (990.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pymunk-6.11.1-cp312-cp312-macosx_11_0_arm64.whl (347.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymunk-6.11.1-cp312-cp312-macosx_10_13_x86_64.whl (364.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymunk-6.11.1-cp311-cp311-win_amd64.whl (366.5 kB view details)

Uploaded CPython 3.11Windows x86-64

pymunk-6.11.1-cp311-cp311-win32.whl (315.1 kB view details)

Uploaded CPython 3.11Windows x86

pymunk-6.11.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pymunk-6.11.1-cp311-cp311-musllinux_1_2_i686.whl (974.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pymunk-6.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pymunk-6.11.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (988.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pymunk-6.11.1-cp311-cp311-macosx_11_0_arm64.whl (346.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymunk-6.11.1-cp311-cp311-macosx_10_9_x86_64.whl (364.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymunk-6.11.1-cp310-cp310-win_amd64.whl (366.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pymunk-6.11.1-cp310-cp310-win32.whl (315.1 kB view details)

Uploaded CPython 3.10Windows x86

pymunk-6.11.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pymunk-6.11.1-cp310-cp310-musllinux_1_2_i686.whl (974.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pymunk-6.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pymunk-6.11.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (988.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pymunk-6.11.1-cp310-cp310-macosx_11_0_arm64.whl (346.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymunk-6.11.1-cp310-cp310-macosx_10_9_x86_64.whl (364.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymunk-6.11.1-cp39-cp39-win_amd64.whl (366.5 kB view details)

Uploaded CPython 3.9Windows x86-64

pymunk-6.11.1-cp39-cp39-win32.whl (315.1 kB view details)

Uploaded CPython 3.9Windows x86

pymunk-6.11.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pymunk-6.11.1-cp39-cp39-musllinux_1_2_i686.whl (974.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pymunk-6.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymunk-6.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (988.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pymunk-6.11.1-cp39-cp39-macosx_11_0_arm64.whl (346.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymunk-6.11.1-cp39-cp39-macosx_10_9_x86_64.whl (364.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pymunk-6.11.1-cp38-cp38-win_amd64.whl (366.5 kB view details)

Uploaded CPython 3.8Windows x86-64

pymunk-6.11.1-cp38-cp38-win32.whl (314.5 kB view details)

Uploaded CPython 3.8Windows x86

pymunk-6.11.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pymunk-6.11.1-cp38-cp38-musllinux_1_2_i686.whl (975.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pymunk-6.11.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pymunk-6.11.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (988.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pymunk-6.11.1-cp38-cp38-macosx_11_0_arm64.whl (346.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pymunk-6.11.1-cp38-cp38-macosx_10_9_x86_64.whl (364.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file pymunk-6.11.1.tar.gz.

File metadata

  • Download URL: pymunk-6.11.1.tar.gz
  • Upload date:
  • Size: 3.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1.tar.gz
Algorithm Hash digest
SHA256 1917849f63e1f699df21d6a1f5d1c250adddbae25e9c124f0bed765154c94ef8
MD5 fb1b10b095748639ed115be14cbe5eb3
BLAKE2b-256 10c6ea45f078e138c133d6c0c00457941bb4bd9554be9a763801f32f3470f426

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 eddafa86772af09c6ad820e5d128b994cc7200fc269c44d84b10d697dd073911
MD5 5b9f786995085dc9bf99c4a35ea98834
BLAKE2b-256 eb9342b4b6e7487d8af63a54f9161de31e893f04c6296573f6a4abd89fc110a8

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1801ee8308e70de690e3be5d42cb2737c7f02ccebf5621c67b4d025c9127b26e
MD5 3d425f8b5050565fd2514161ac73b5a4
BLAKE2b-256 04c1023d2c3b4be5c75664ee097d5993614ac44cd2865fb9c455b5f588368692

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 449157a88336326c7c59208e8d9eb2c3929ae330a8f303a30c62f4b57f6411df
MD5 edd5e9320ca871bdec29b06c2c82ee77
BLAKE2b-256 1613a56a70fce90138def3fac6fee564f2207646168f7d0bf76f842107d75933

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b397e2270c5fc9085ae2bf91a0f54e01889bd644aaad0a5ab1f7659a1bafd837
MD5 4d4c077d1f7551f673f190adb82ec951
BLAKE2b-256 a71e397c4d3838ec35ee392d1949e5d3493d9ffa7b8ce4495af68c77081c2d94

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 12998b247bd0bd2f4b2b48866e22923d7336bd6c6dfc4e389c9ccf1741a7f5dd
MD5 b83cb171a97ae2d565fb83865093cd67
BLAKE2b-256 f6f80dfd00cf56b5b86c52a0d689e2699863f0d6a730bdcc9934cd7122235905

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0575b0969262327972e246967bbe3654cf8c1d9e40ad809192ba59101de033e6
MD5 334ab85ef535a567bbcf79b229fcda9b
BLAKE2b-256 8c8013d5ba14fdf135cc99b9170092ab2eec59b17879fa945164c4e3e09e08b0

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0a39df2010f223ae056ffb8d61f40ea09144ec32fca839351fff76b88d6a0e4
MD5 a0d39bd957166710e6a4955f88d8221e
BLAKE2b-256 6cc1f7599a5318b8ce68a02436ea7c74b252846f9a60b77c0a7b25b3594eccf7

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e45a1db00475ace714b961650ae92c0c6671fe8285bfb61892776e89ba6395a
MD5 5557ec0c49ea7e6d61d50a244ed898ef
BLAKE2b-256 409f962beb54906ef4594f62635b640b771836931777e35b2820c30ff527143c

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bde2b2f655d5762e8e05688f28e8cd3965c2e63e4f161cb996a6433008215a56
MD5 d5530ac7bfb423a48f7e1b16d83d4873
BLAKE2b-256 ce2675bcc2eb1762c9d3501611a8a927e4a8bbddcedeb5b2bc2e6ef58162865f

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 11db1f273cfd335a0e6bc52ff7512de8369a69cf03fd274606c3b41bac21f08e
MD5 f282a0186618fb727230eb9d3417c2e6
BLAKE2b-256 d2cc20bed4617e80d4bb55b29906cbbea3fa9a3627834edc8c3e0496cc698013

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymunk-6.11.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 366.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7773ee2c5c9661e7a1160105eaa32791669654bdb7dfd049cea66a9a9b822ebd
MD5 f575bd06b1f7ff9ece28c52d45636aff
BLAKE2b-256 c883efad72edfdf97435daace368cd75152affa6dd4d53f6e4e5c8d1742b9d29

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: pymunk-6.11.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 315.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2ce2cbf50e9361c98b975d54db5b491b1910e91b391e9e9991de303ee4fbc07a
MD5 f05ad8c33d6c91a30fec32dbf5364567
BLAKE2b-256 8e895ed0cccd2ffe3273dbaa25355e9fe7843e46c5b5342f900c28b406f406ad

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 899340bbfdbd35a809a37714d6167ac7162dea07253c0126083d50be7e78db44
MD5 c6f657b69b37b10c8ab307c2ea7c9eb0
BLAKE2b-256 6d4e91c0a5c2a8bfba37d799c4bd0d6ed0510667a81e209ee0d5ab6d50e60c26

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89a8e7f5493e3a3faa73b5ad9bb0dd0f04d717c10bcfe4097142b4e71b95146e
MD5 ee0debc6fe63cc7aa0149fbae3d8197a
BLAKE2b-256 3239fbdadff97456c8d1301f524f8686aaece28aebefe5482e02dca4191732f9

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9eeeaf472206dbce79c39c16cea2384d6729bbeeae9a37cf89f7af1966d083e
MD5 6712aeb854c19cc101e9159de35977e8
BLAKE2b-256 d0bcc4a9a938c1eaa2477f8edc72ab892ccc0ca6e857d61736cd1f4ab990bf65

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c48fa7792429c8bc5559dcf5c054af017615fef7f06cfa370507e4a4788928a3
MD5 97a59f4a93b0730e9c48c0da025c61f6
BLAKE2b-256 fd1426946a6c277c43a5011f9f4e3240128ade918d1e6eb6167eea984fda14e4

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67c12fe2952a01dfab6c7f93a148bdc98bfdb1a3ff956b4f7db6bf8ba2be07a5
MD5 628000e372ee28eeebce169fc269f8c3
BLAKE2b-256 68dbb5b731f7937c66bdfee0f8e417c9776f3a212c3c51c322f11df543a0090d

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2fe6e2aca02c4d1971481774c96fd39d3db69628a6e3d7d67f1b612776937036
MD5 01087efc042c4b45ba11ee21dfd1aabe
BLAKE2b-256 60c65a4bc8a8e9ffdbccb2c8aa1c28c8a8681023a723a9e950f2a9d3e9b85c73

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymunk-6.11.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 366.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f747f26177c74ea9c5883bc702ae4b6096c65e50d18306596de5e8e15179f113
MD5 68aae5d8759e5c548bb96be3d30a6a7d
BLAKE2b-256 776320c7ad048493ee518ce6f8904da77863ddde2c1bf867622944fb3712e436

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymunk-6.11.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 315.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 85e46a518cc63ceb6d0b10e6b090844b111e84d89dac5b2d646c345db3dba099
MD5 74af8c78c195c6a522274c550d38e102
BLAKE2b-256 c05ceca16e3008239f6840c14c03f25842c56d1abd775fd65dd8214245ed045a

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edfc298d4697fdf2fe2e1b1caa9bb3a882c28c5f13ab72baeb30467a221e38d8
MD5 0f6b065746fd0a2ddfa198a541dd5d38
BLAKE2b-256 39a34bc599ef3f4fc48f5ada8d600fd39d16c8336bb073ea45b36b300803f636

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c44e9252fd05eee48f76454764a57d102524cd012849e427c617740d7108d105
MD5 3a9f251ce0877b7047e0bc9e5471b4a9
BLAKE2b-256 10728124c0848e1a676f4b1a2d5b4f33e820a8eda70e4becdff2cf5a87f1811d

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e63c59f4194468c741b1cecbd550c59d3d297ce977159d524fd858a40edb01e3
MD5 b141ead259b38a9a011f41586d402cb5
BLAKE2b-256 55fcd31a3773e79925c0ea263a8eed2df1507c548a92ea07e7e13536586528b8

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac35e4852660f2cc9071211ffced7bae770343d3b183b3c0261ef0af7fd4acd1
MD5 00c3415eb58197a9b598b6f6e69fc84c
BLAKE2b-256 6e7bcf379cb97a2841ec7db31153a528564f9e80262214d90acd83c0b50966b4

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc3216eda378fc190356b2b0be8d92a179b084dbc09ac6e8a541eb8b8b7cb28f
MD5 7659eecbd95017de79276005fb50b534
BLAKE2b-256 44a6cef48493f6c94df6bf540640b520b6dd770176992fec5d1bf172caa4033f

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de6bc2cb91e1840c6fff064658b1763117918a1c5762c3170087e7b6f6c6fb77
MD5 6d8d3f8abd159840ae2dd36a4d3c7de9
BLAKE2b-256 78fba815fe0b996de43f06857b14fe0839cda998df36b802c9eeb8e6b5b21f80

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pymunk-6.11.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 366.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 64e62c47c9e1743f7328eacfb9160284c071442f31a76d03005fdb9c8a648021
MD5 dba0ce4b2e37c90fbf8589df18832076
BLAKE2b-256 b28d7eefdf0f61d9f31e1d9d4b36d228a34c907e67d5fd6199ce3b56735fc053

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: pymunk-6.11.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 315.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c2e591039868698a4d8e212a2114f5ce2fc35ce963611ca097a3ad37b666603b
MD5 77e8753a67c8ab742516c0f4e8e1679b
BLAKE2b-256 54598818726fa4d3108137a8a072f1a9c33143ccb4cb89be6f69a0f5f3493891

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12c739186207043fc8931db3e3d02824c40a1c3cfd0038bc7079cbd257e6dbab
MD5 417974485e1e2bc2ef656540b9ff4152
BLAKE2b-256 2cb5f414a6b042f5461d8ebe9a6ca9ea2ce1ce80ad9915c1b32ad521963b3e6a

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15b037818cdb39653d8e6e54a535481d70c503249b07f96a3a66a1fb47855dc0
MD5 bd5626efe3c801ead56a1ff8d4178466
BLAKE2b-256 e44f2098292f8da1311a1d6c29bd2d60ecf858c56377c528ac6e80dbf20a6cf0

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a2022f2150025ae01709f07c33254c3ee189c95a9c6b40210277975a6d0929f
MD5 7181b4e80bf31d34dd9c6cd210cb55a7
BLAKE2b-256 d0b2d1d5c164642050ca52cbbd366f90842ee530f178aecc406be32b18460b67

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b98a3a64afc74346424614bc95889b005f1efa8dc21984a5f7c01792de21528d
MD5 9cb9ab216da636d621f038f38a3476d5
BLAKE2b-256 6e954af7fdbd8e4bd318452322d75272c36992611ba443bc49b71bbbd8fc4a36

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6acbe0153ad1bc26119da1ce847f35dace19a6be653a28c06b37e5eff4ba58d0
MD5 c6253df3e700584934437f2c966b0963
BLAKE2b-256 5ac89ca0cea3850627658e31e9a3c65feef16e089e4106255f2395b0ff32af34

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc914a22395683197de4c433d42ad5882383b3d47d7dd8694f93bbbcd4b111e6
MD5 ca9d13de6815460255e8266297670abc
BLAKE2b-256 70f41894b1b9c6acafdc039298dbf6a2917cb5b311f14a0b1b206df46dc58798

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pymunk-6.11.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 366.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2fcb874a48499951a363950030d0499901e7d251015c5924b3a13708cd86dfed
MD5 d3c5da0c43a7b2253450ff39fbca3d98
BLAKE2b-256 bba44d5a71fae08d3870db5cdefaaf18d515684e0a04411f47b69c6793089fa4

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: pymunk-6.11.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 315.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c7751acee225d180fb65be7a6a9d14fb34b07c0fc552c00bac89f7823a595bc9
MD5 19c11ee3551468d295156edc37ccc9f8
BLAKE2b-256 c06ec18cae7161c28ef42110d49f63de6e684bf4a236b08ae21816e1326deb4a

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1822c8a39a3a1c4dffd5c2846c60cb221a16b1b3cd7b165e7927eee6ee979333
MD5 b1a1d1f66696571eabdd63f2cea5f1d3
BLAKE2b-256 b288f9b6fcb882205ff50587aedbbb1c9c06a5208acf064dc4e0bed6860598fb

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ee8fd001cdcb3996defaea20e90b513d93b8d4c870e274a99c39c284ee420976
MD5 2cce979dd05a76ec09895fae3caa959c
BLAKE2b-256 2b7ab3659beb8ed839fdd0a3ed4f14aef3e22e9d886c44b548f4bf9a24d5482d

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b74590e0c5635e15057b73013954ee9261350c2f959aaffc67abdd52d12d8cf8
MD5 17fa232f6a7c716abcaa02e0613e4dac
BLAKE2b-256 1925763c3695565d563817460a0b98d428eaf18774d7349dced80eb387c20e76

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5477d98a0fec0eed467aa3b4f354f8c11883e4ae043de8d8aa42892489d2300
MD5 49055322f839807eb6a65c5891653c8b
BLAKE2b-256 bf1fe6b21eddfb4322432015cbc046f6faa3efaf1bfa4ed9972835c762e3c684

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 093caf8b61bdee48f407ce69e692e25396a1f09d74ab6c4fa68a6ad669d81863
MD5 ec2ccc50a47eabd4ce59051c98163d19
BLAKE2b-256 ca216a25cfce00d43ac73e1fede45f0179dc3a87f782ff4e864bc58e4e2185ce

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a35da309951638678ed3ab86e58a46844bb132c3a2966a649493c04ec9585d1
MD5 299236cd3a023fecdfea638c7a6a30e0
BLAKE2b-256 ea5023f8594d3c190a3b8e11c92aaffca3de96965ea79c5279c2f1f18e78e704

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 366.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a5da5638b63f83517b8b7f9e9df9b957dacceb5ca236fbc0ac6b1fec620ad2f1
MD5 fe7876fb16ced6bf3103114a27427dfe
BLAKE2b-256 a6c78b2487d67227cedeafadcc23b95941f7f41103bcdfb5f56fd5cf5deed7c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 315.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f2aa9488c4c47446eacf6af1adfec28a3022192eb87e3e0b7cd3ffb0e49f35f4
MD5 52f66534f9615e65d5f0b2db73ab792d
BLAKE2b-256 0fa1b717a7f75160030692fd57f4d5640e11a02ea076645c1efedc4dc1b47934

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85b8e875d8fbc343a849548f735bbbf8756cf5d9c6ca7af24dbfed0ea6473433
MD5 d7bd1b93d39bc596dde340e5b3063f37
BLAKE2b-256 4d7f2648dac1298071017e34e82d49684c6e9167c5fd3e5bb4b6814c4998bf20

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c69554eb3536172d98de28f3842597ec36f98b872edc1a424c27dbe16e02e947
MD5 5a8942ba416ac744a72470899a42702d
BLAKE2b-256 bea0c5e6a29c192d425b2925b175901e88454dd6f90b04dddf9685a896beb679

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6be043299fa8c7ffaaca419f73e7c3fd72985d120a12584bd48da935291830bd
MD5 e6a6e0ed97e2cff115675c8b483e133e
BLAKE2b-256 5b236524cc95f472532ed76af9f3f6d38a63112e4b7dd033ca701e749e958a9c

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac3ffc5f8c027905a2ba3d1d57f9df0da1bf8e0d9ae736c0edeac4b2ca57849d
MD5 80ad9adb67964599a09a1bde8967f741
BLAKE2b-256 d0694295a65d4f40b2d4df0da6ae0da5cfc576ffa325a69f148fe2d239958079

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a05b8ace0230262904cfa04ccfeeaf4ac9bcb0c2a1217d2a5aa0854f4ee07a8d
MD5 3f6c00fc6e72a24700543d19f917d17f
BLAKE2b-256 a98e160c43fec93c5236ce35a5abbce24b86d90597f15e6241d3a5612ec14db2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32d7658f10a26fa5e500e5b19e036e5c01f0a27b92e8eb34e3d06af21112e6ae
MD5 4cd2ae932c0e9869607f3caab6425e74
BLAKE2b-256 f3d87f9523c0258b47608af385a44991362691e2b943f171412f0ddda6d73343

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 366.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1871b1cd80a087c10683105cde79b54498412d4ba4fdd26bcf7ae2c6a8710af3
MD5 414114af6f73d1a63da46a713167eb53
BLAKE2b-256 0b125d07325a8b370f0251c6577efd3598ae88ec3ee90cdfa1b006a289494d8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 314.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pymunk-6.11.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 41207288644e23acb8245c4a6972abfe7c2813cbab2752cf2347ac4cfaacd334
MD5 16d8e63b401bfab30f752d615fe6d481
BLAKE2b-256 1ea17bacc30b14e892e71503c7b871b441eeb24cd66c5abcbff2f8bf5fff7b36

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2a8a0833874f9eb0c7b390c7f0348068f8f3ecfe3057e79ca19afebc74bb407
MD5 47f838433abc32468d809f546e580d64
BLAKE2b-256 5317ceaa7c11bbce8030f63d9e3acfeeed8dc3923d9f67d14c1a1b3c484946ea

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5639c44b02f14a8207e9614e2cee02b18d783443189344c8cf8886f658baa49
MD5 28d2974af85cacc9acdda3be565fe688
BLAKE2b-256 bcbab5d9b95e80aea55405c60bc4ef105e927c103291fb78ab5a1c5716961591

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9695b1d54649f08f6b2f1fb3648352db2a8761ad85b944da8beaa3fd1bbd8a1
MD5 d3b7f5886ad3c3a8f70aa7dd236339a0
BLAKE2b-256 227dd51b604a81dc69f8103b511c6219baea487038b87d1e3fd3716b3a580c66

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34b280215884882d80cc3e3afda919bfb1c279ae9f140b9f4c3a1593f9c932a2
MD5 8447f6ba09825aef7e5b223fdf6a06ea
BLAKE2b-256 a3c819d639288c1eeb3531a67c6b53bad55d06795c6d0e770e9cad297f111760

See more details on using hashes here.

File details

Details for the file pymunk-6.11.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-6.11.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86f8cdccea02766cbaf270f4aa952350686bd24a6b1d5c1f74e18126d0ba14af
MD5 6af6a6f08e09b90c3f9b974a95421021
BLAKE2b-256 7f5388b1f42d5df07e6c922333f3189dcef9952c5ce5e5cfb8e0b9197613cdcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4ddd1443aec3a1c125c3e360bb5c84597dda1e136dbb99daf9a1dd80b523d71
MD5 e90ab9a4b7b0b4f214885a6d9cc038ae
BLAKE2b-256 fddcf634050df67223639fd819b62b6f5d5083d38211dcc5fe958d86e11f153c

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