Thanks to visit codestin.com
Credit goes to pypi.org

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 Munk2D, a fork 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 (7.2.0), using Munk2D 2.0.1 rev ade7ed72849e60289eefb7a41e79ae6322fefaf3.

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.9 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 or Pygame-CE (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.

  • Support for Python 3.8 was dropped with Pymunk 7.0.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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

pymunk-7.2.0-pp311-pypy311_pp73-win_amd64.whl (309.6 kB view details)

Uploaded PyPyWindows x86-64

pymunk-7.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (324.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymunk-7.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (319.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymunk-7.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (285.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymunk-7.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (293.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymunk-7.2.0-cp314-cp314-win_amd64.whl (372.4 kB view details)

Uploaded CPython 3.14Windows x86-64

pymunk-7.2.0-cp314-cp314-win32.whl (321.7 kB view details)

Uploaded CPython 3.14Windows x86

pymunk-7.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pymunk-7.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (988.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pymunk-7.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymunk-7.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (991.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymunk-7.2.0-cp314-cp314-macosx_11_0_arm64.whl (350.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymunk-7.2.0-cp314-cp314-macosx_10_15_x86_64.whl (370.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymunk-7.2.0-cp313-cp313-win_amd64.whl (368.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pymunk-7.2.0-cp313-cp313-win32.whl (317.9 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pymunk-7.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (989.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymunk-7.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymunk-7.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (993.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymunk-7.2.0-cp313-cp313-macosx_11_0_arm64.whl (350.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymunk-7.2.0-cp313-cp313-macosx_10_13_x86_64.whl (368.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymunk-7.2.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (309.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

pymunk-7.2.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (288.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

pymunk-7.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (285.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

pymunk-7.2.0-cp312-cp312-win_amd64.whl (368.4 kB view details)

Uploaded CPython 3.12Windows x86-64

pymunk-7.2.0-cp312-cp312-win32.whl (317.9 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pymunk-7.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (989.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymunk-7.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymunk-7.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (993.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymunk-7.2.0-cp312-cp312-macosx_11_0_arm64.whl (350.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymunk-7.2.0-cp312-cp312-macosx_10_13_x86_64.whl (368.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymunk-7.2.0-cp311-cp311-win_amd64.whl (368.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pymunk-7.2.0-cp311-cp311-win32.whl (318.1 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pymunk-7.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (987.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymunk-7.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymunk-7.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (990.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymunk-7.2.0-cp311-cp311-macosx_11_0_arm64.whl (350.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymunk-7.2.0-cp311-cp311-macosx_10_9_x86_64.whl (368.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymunk-7.2.0-cp310-cp310-win_amd64.whl (368.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pymunk-7.2.0-cp310-cp310-win32.whl (318.1 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pymunk-7.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (987.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymunk-7.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymunk-7.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (990.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymunk-7.2.0-cp310-cp310-macosx_11_0_arm64.whl (350.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymunk-7.2.0-cp310-cp310-macosx_10_9_x86_64.whl (368.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymunk-7.2.0-cp39-cp39-win_amd64.whl (368.0 kB view details)

Uploaded CPython 3.9Windows x86-64

pymunk-7.2.0-cp39-cp39-win32.whl (318.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pymunk-7.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (987.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pymunk-7.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymunk-7.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (990.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymunk-7.2.0-cp39-cp39-macosx_11_0_arm64.whl (350.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymunk-7.2.0-cp39-cp39-macosx_10_9_x86_64.whl (368.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pymunk-7.2.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e17408dfe98cedd279c964be655fee0ac5692fe4b4f767c34d861a49c7561dc1
MD5 320890418465d4dfb35537ee671e28c7
BLAKE2b-256 deb37e3db479d72d2db216126599bcda95fe0ce82d60a1e26bad315b7d68d0b2

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0266770a4c0984c87974a02e4a5663bc8416f0061f7997c73c97c4a3f0f9c3f
MD5 0d32cd28255277c98e31e4dec1eebdf0
BLAKE2b-256 98e01d364942a0c5c17960de080af77bc947f94748799435ad56ecdefa2e3a50

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d4a2b32f82b9461dd410d1261c9f0b088d68f9ba7f3a8318060ad205b56e00a
MD5 e6caf697a0bc0cb2a5ba635d63e9d56f
BLAKE2b-256 20ad4cb37116e26cff53aee48abf7f848253277a3fff0cdd7e0305b86b6975ad

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a98b3d367386659bb9742601c0eac19e099282a9814cd3ee6f5addab82885a7e
MD5 3995af1a60fbf3073f7de929948486a7
BLAKE2b-256 098c1c7c9f9d71923bd76c67291ae096f16e0a519192edc4ac3416d55d0cd8c2

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f9b54efda50e5f15b38f2557152db4bd87c2fd3f8fe1abe21f355647a84ddbcd
MD5 8b7acbea5956b50cb13f875c0ba5d3c4
BLAKE2b-256 a5064f1b6e9fc3abc58d6aa4e88fe69f7db294987df5df7eab5bb41416f68791

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pymunk-7.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 372.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8e6ac2d25254f3f85361e1845ca779fabf4208ba934e2f144292e7596334ae2b
MD5 97fd50cc9eed835a9c73e9287b066622
BLAKE2b-256 08d5c6c5903ab58f49babc70a2eb227d67dab71b37898f8c3cf0df0d27f7c6c5

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pymunk-7.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 321.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 17f9ae8851aed0128ccd9e892f9f89cc16be8aa96c675cbe616e707ac31b65ed
MD5 a4f3a91c51f77e529dc42bcd59ecf77e
BLAKE2b-256 eb5e4aa007a14720c6c26e1a2fb20fb3e54523770066f5c6be5695265bdf526f

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 906727631afc30b2e7fea7b18cabe4ef1d5031263e9726e44b7edfb11f053d37
MD5 de3a43c2cf03b6bcd09ee0784d861599
BLAKE2b-256 fff4fa78d475a4ac2a21a2b4a360bf51f3fa3ef5197b1a580349edccd7df37cb

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fe268c368231f7bdfd5e604cc9d35ac7c354ca314e87aa0e9bbfe76f1220ebe
MD5 94075ba6393541a7b6e8a323c651e35e
BLAKE2b-256 831fdb35c7b6a27a2445516e2a82e5e83ac2074bf5b384992c7e26c7a839e769

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60d006a1715d72f2588912eef398fff688fa1e0e829a6bdfd41b2c1ecbc2dfd2
MD5 2e59222c75577ea8ee545e9400b99879
BLAKE2b-256 1ff3d6a5565ddb76501a83d596e515b8c6e3b2b3452badae7a906087a25dad99

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e3b1fa6b1813dcc2f849202b2bec9b7ec482545baefaf20ab780078c1672787
MD5 6734658fe804721cd862f9a3e2580bd9
BLAKE2b-256 1888e6a5247ab6ebfd80735255a05e18d287b45a5e467d0f1404c78e96a507e3

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 497c4a919fc7f03882cb9796b132ab3b5fcc4c4af9ead08e9631b6a9fb2da29c
MD5 888259a9fe9dd86599bac95cd52ac2e7
BLAKE2b-256 6de7c36c2df4582bd7b515d49f91e171ef841dc1ae038e50c3faf412157b4d12

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8196efee84ee14bdc25d6ba01ccfcaa7b4303ebea6a985df4a920c8ec2b422cb
MD5 506f3e19c3a47045af9f2ea230b6023d
BLAKE2b-256 4c634d7a10d3b264be29126c21f1bf940ad22901e3d26c64b314c50d27cc718c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-7.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 368.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8afab42a1f2e447662ec3182dbcd3bf796d56924ab1fe6a2043e0a3961c229b3
MD5 0e11e591198c9ef5373ad7bbaf3b0c9d
BLAKE2b-256 3eab81eadda017fe23dbfb10d8e1d665ab48bdd70719bf2d9592338fa006943d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-7.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 317.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4441dbc834449b69268b00d4577e0e179ff25d84414ab2d684e7114fde23edc0
MD5 62871dc6100a9ec792b3859697ff8d21
BLAKE2b-256 fe4166475096a2582c7d79222b3ad268007053d0815d813bf226292fa3f3b997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 198ff4d54966f4358d7261392af2a434c1334e81573c1c3499badccfec8d3793
MD5 38365e5997e34bad76968d8601429782
BLAKE2b-256 679de8940c609093f0b1a62f25279aaea5da0ba3aef368d0c04f7d9e48af809b

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24bef8812186504dea8d4d96a3ba5e5732448a2533867945af274aa46b6b82ed
MD5 eefaa472fbb0283b70d8a9dafc78359c
BLAKE2b-256 8f84172eb75de1e63c3ec90730f8d3eec728d997fdf081e003555e637a29b108

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af5322b0bc7ecfd46c5502c67dc7710c9f3860985598cb7c11007c6ee8d08e0e
MD5 fc5359f2ca9286740fde8bf74611fdec
BLAKE2b-256 139e7058ed90607afb2821c6d90a38d97c4dff246fc116b48a5ad723b4eb43dd

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a743ea43cc1dd6ba4b48c3d1a0c4891f6ea8c02c2e796014fbbb14ba728c2540
MD5 338d86eb53710cd8ea2cbcbc09655c6b
BLAKE2b-256 7af4a8e738f6be8ad83e98dc0752cc5039cec9d91726e93da55f24084e23637c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62aed0426840ee131af71551106a984362f5a6da4da14c72e08c1c10e7bf1b32
MD5 c446129b7aeb096870e19a3cdb8e58ec
BLAKE2b-256 ce3998c639f9bc9e3d466350141fa3e53723ed1e7db7dfdadf8ba1ad84bfb942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 eb6fc81275e0076156be4d5aa47fcd69ee3d196211869a7051f59ee6f7a42086
MD5 5c305b58c424ad5fcadad1d2a66b1d1a
BLAKE2b-256 cb2c79717cabe04cdbfbd10b05c1e9dba2aea61726bc492354e8604d6b78ff80

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 9eb9b6b28a3c35fb8e8a64a98011877280b8710f39a3cb8448aea75c8e9b8875
MD5 c72d95979d68d960e7ca982a36513dc8
BLAKE2b-256 b721a7a77d970e2808911de76e0d3bcc1e631a2be6a7d4eb468e91a0a0c04bf3

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 612973745e68a9d5340d4c6e3538a5ac7869c7f0ecbf241eb7f4cae83300c5c5
MD5 c3167ec68124ffe836e8acf081f7e61d
BLAKE2b-256 3c72f91843bdd6ae40f8bbfb9a7126e1f20b7d3899337c230e316cf87ded4156

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 c1074ed1b718824b931378fdc6a124613b1372202e962ffc8733379790752cc0
MD5 79999cc128f21bfc32f1ce3e9c91245a
BLAKE2b-256 d32c0c187a8728bbb0880dced0ba33e55279172969cc336e8d4028a2478dbec3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-7.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 368.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 006a5c0731cd6e47b0da7f6c1f85cbb7049af90ffbaedf87b6856502e5c8b47b
MD5 e2e1ce92edb97c7b9365a4869664d80c
BLAKE2b-256 d3b7122edb075504ff709414f2ec8cbfdcbdcb9c7e2d4a188ae389b83f536a37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-7.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 317.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4a073698e5d483ba94b0393ad242f6716b4eff6859790df9f3c0ca3262255b1f
MD5 9de7878743689509e74414f19af8bbb9
BLAKE2b-256 3de12ff42c5bdb137a74b3996848ac3e93edb7aa44eb41b8a84b404361ab9ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b24986e5539d1d63c5f8394e599c88117b16b7c673a76c2a3e503bce6fa70b3
MD5 c37c5170c9c491383b17fb1522564ca5
BLAKE2b-256 ff878f0be89a37dba05b38d619a9710b2294dc6773d982d08fb7373328b4cfd0

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3104a5c1ea5c5e8303a63583444a561e00400362215da85f9ab22b8d0a081ea2
MD5 59ee72072b5a70e2a6ae409d79e99815
BLAKE2b-256 22bccaa3689ea809a6e7645ee49408d61f07871017eb89b3ca1c38cbbe1ddc3b

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 187c919618a4ed76aeb9e1c6e19b45fbfecc1f5fe5212f7e9f847b55ea0614f1
MD5 8bed56788431bff055ed59e6f08f091d
BLAKE2b-256 53216e936168c1e37dcc806f3ffd6008bc8993af90a5a6edc84a9ec196350c09

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0fed84166c1c6cd812b9c86a56f0b0d03712c11403b178a40997e81c916b7b51
MD5 a05fad327102a1c91bf75ddc7feb8d71
BLAKE2b-256 0fd16cfeb351da4f1c51a7a6c5841e1ca004d750cd9aa20cae0efe846974ad39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b68aebe6ae78dd4741fb95c7aedd99b1e09a38b81a1bd9d02eda4a4799866c88
MD5 80db05f8f86214982fe905a8aaf9ab27
BLAKE2b-256 0725a358ce75e99bdabe38a7106e8e310a05d7fbf9357d1dbfe5a5dcb038e6f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7037e42b7c1b926916c4f41841f3822de8dafa53d794bc1f31e3bebcd47c5fe2
MD5 2b07ad6b96e0bfe34017723e4a7d312d
BLAKE2b-256 ac7c550876bf943c72c5edb9038b89db8cb1c25e6e802cd717376a9220180c4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-7.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 368.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8fff409b7394a0ceaf4258119b4a182255837e29c477af28dbdeab72e0d74fb2
MD5 d9de05527220f25e1da54a897b570d9d
BLAKE2b-256 cb48aa55c44c12dac76d407b9d30ba2df7c00369afb66422f611503640af7fd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-7.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 318.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2b577642fa48628e0a48ef945975c9e57ac2ff066c88d74ce6b6be82b3a5a5d5
MD5 a53573d1c7ca880e93e47f9cc48cb8f1
BLAKE2b-256 bc8593a89e5243c6fe75b3aace8182eb9ff7f462669866f174b4ffe1c5cd26be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65b132c0ecc0d8d9949ae78baeb54f03f59e2a21b729a4de59f25065bb410d7c
MD5 7d263927b87eef9c06f90bce21766faa
BLAKE2b-256 1d51368b2288606ba2177b4d43545231508171cc4ef6df916f2829d235ff8d24

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 638034408715848e51b083a8eaa0a66aa870ee401345ccbe8072ebde02ecb408
MD5 2905a8af6ddd3ad7d326961d572867b6
BLAKE2b-256 d4f12047cff86e2f9fb9571a5534f2390b333f088b17a60946b8075607491576

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51bd7fbd553473f7503d7a84bec58386c1e299ee25587c72f1dd2f945d7984c3
MD5 b7396a27d47ded32ff2617490a32914c
BLAKE2b-256 1c0e9ddd9f7b5b5a88a5f0eb71d4b903a6e5c464ca734dc71c91ec84a3e9b826

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f0f8e5e76e6214510ef63e8860b7c791f08510d2a38cace7ad7fd144534d8be
MD5 06413b7660d11b3ccd5125bc312a1789
BLAKE2b-256 2173ce2fcf0290766cee3410dd5558b2c0e7046d28652448770ea24c3f83f38b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94b162cca5fdbae219bab3be2ed28a426a6bc436a81bec1692a93d4422b87341
MD5 9051d48e2b5d1c835343ab2bd12e9e3a
BLAKE2b-256 24e95f8727480e224fd849b08418f071788af456e17218d70f86e9a36addbef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c66098615d50f240f6fa82801743cbc73d11e5ad96da3d9162343773b0ea1d99
MD5 9c8856defa74827dc63c11400757c02d
BLAKE2b-256 f046fea11148ce482e4b11d1c59ffe1e0cfc380d87700d5c7526d025af9ffbb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-7.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 368.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 59522910545f5486bd69b36fb35ccd65983a3a27cb3343e18a26ec2719312eaf
MD5 b11fe361fab4774e902f7cdbeddb831f
BLAKE2b-256 de31b6a6dc89d2e56b8e273a2b6757eca3a088101e4d9e281af15d450b76a868

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-7.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 318.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e0179e74a9ee76a5dc5cc031794a63a71be783901f3a2eb696b1d1130aa2228d
MD5 809893ee255f636762b6cef175da4eb0
BLAKE2b-256 139188e1807314c6468371f1ad91ef46d546825a763f818aa2e5fb0a9f5d3400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6bcbd4e8ee7755a54ed7be33376d24e93d264bd52f2fd629ec4928d61a90c66
MD5 5279e58fc8998b1ea107e676fb427205
BLAKE2b-256 1461ef18939bd60aae1e80c514193d3343fbe8f81fc980f55021f7719de87cda

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49c40aff79457ebe1dec79338f5b45e2382a2e10ba13f7facb53b3e8345c0756
MD5 41cd8d0cb93ed7f942a1478858e51b5a
BLAKE2b-256 c762fe8f2dc696e53419ebe9250c71b3a94d8457113d8016781ed0c187ced1a9

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c7afffeb5e05a2d4fb8f26aa5ddb120df6a40313af9d849ace37b6be7d38331
MD5 c503c3405bf77347d04182b47c64a828
BLAKE2b-256 f150bad0b2f27ca55c7ec2c442e2b73e18343e0c2386816abd5999c153ece9c9

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0b8d53894255cc69ee4137a391ffbbc56c2f76c4f2d05929c3b77df9b6dcd05
MD5 5ca609e7a11acfcdde85be0cc316d4df
BLAKE2b-256 bcae6c4254469e6f21ca9e05e5ba1ca0e9379d600bb0d2c7b591ef51a161d5c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c64b1ad9856d698986f2294a73b1b0ad93095363e4b2ef8e6e933b5c9d061a0d
MD5 5de2dff5b3e6884b733d6ce84821fd53
BLAKE2b-256 8ebdf974ac3cd646cf7a687be087123721892784c5801aa501e2da3e5ee46817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7e337b0ba4b58f0d20b56e3c27b91d89ccb53787eaa9fdfb006bfa341b1abd4
MD5 23c15f9d030b6b5ad473b6a0a52c5aa3
BLAKE2b-256 d1ae7bd35e2dad1ce5adf13cc85832e3e81b86f31e2389aa0426bc7f1744f0c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-7.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 368.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 782bc8aaefd558ae705912f0b1b12cc56b05dcdb6c06fcde254e70dd058af329
MD5 0d65caa4caf00c74fe9d560620763bff
BLAKE2b-256 cd57e58488c25b1dabcd119414dc88e193edceede99944e2465b798e9d5241e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-7.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 318.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fbbe595703082683b084a5fb1762a42e0b0bd498834aabcb8e48df15e3de5f91
MD5 9984a916d84992ddab56998ce269c979
BLAKE2b-256 c72ee8b39bf9d969eca5926d587ac230982eb7188531b95a249a52f30136c417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7052dda1f068cc060edc92b827c7891bf8708aea3aaf5ae26f3b61380ae8df23
MD5 2554bcea7b47d3eea0a3a3a310ced71f
BLAKE2b-256 ed4ce907d25a3f426201541ec150c31ff7f61623b12173e92143a55b4c61f5c8

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c2e9d54151f0c5447189f36419a1b34619c7cd728cff85221981bddf09172e0
MD5 4b4b980cc4b0c0ac1743fa9b8e78c5ef
BLAKE2b-256 584d429ca65178b008dcd7887de5273f21b37d1f70cb107b903c956aa66bc2a9

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca6ee960fd3aaf3957406e422c65dbaeedaf83b87b239b8aadb814b488d1beaf
MD5 f28d7c833e2adad68da4ad491d3f7bc6
BLAKE2b-256 e03048d59c3bc359b12dda9d52b46af865c5f38b12123d4ea2d1ca389329cdd9

See more details on using hashes here.

File details

Details for the file pymunk-7.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6497fc9185f39cab41291bb01361e36b5880e88b9418ed20cd869d635db9689
MD5 03721304f28fede1a239a12e041e298c
BLAKE2b-256 8aa4b461f13d1c1252df8e0639735f4353bc33f106efd77704b5766b79194ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81006fec9920619f033b64f012cbebd93aa66ae9d2b262859874cf892a51de82
MD5 d54068808777a3e586fd8834f1b69a0d
BLAKE2b-256 2bcf12d07efe25890185dc5dcdd174c4dc260463c4cf9b1e98540d9ef79635ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-7.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 314265c85f2c63b715361ab3cdc1cf97eae8a4cdf538a2bb72257d1f2d7e3034
MD5 b4721408547db3266b2648fe838873c7
BLAKE2b-256 1fb53eabebd4db827fdd6888965777ff297a364729d6f9695c72185b8d2da4ff

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