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.0), 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.0.tar.gz (3.4 MB view details)

Uploaded Source

Built Distributions

pymunk-6.11.0-pp310-pypy310_pp73-win_amd64.whl (308.1 kB view details)

Uploaded PyPy Windows x86-64

pymunk-6.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pymunk-6.11.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (334.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymunk-6.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (281.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pymunk-6.11.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (289.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

pymunk-6.11.0-pp39-pypy39_pp73-win_amd64.whl (308.1 kB view details)

Uploaded PyPy Windows x86-64

pymunk-6.11.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pymunk-6.11.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (334.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymunk-6.11.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (281.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pymunk-6.11.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (289.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

pymunk-6.11.0-cp313-cp313-win_amd64.whl (366.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

pymunk-6.11.0-cp313-cp313-win32.whl (315.6 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pymunk-6.11.0-cp313-cp313-musllinux_1_2_i686.whl (976.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pymunk-6.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (990.7 kB view details)

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

pymunk-6.11.0-cp313-cp313-macosx_11_0_arm64.whl (347.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pymunk-6.11.0-cp313-cp313-macosx_10_13_x86_64.whl (365.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pymunk-6.11.0-cp312-cp312-win_amd64.whl (366.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymunk-6.11.0-cp312-cp312-win32.whl (315.6 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pymunk-6.11.0-cp312-cp312-musllinux_1_2_i686.whl (976.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymunk-6.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (990.7 kB view details)

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

pymunk-6.11.0-cp312-cp312-macosx_11_0_arm64.whl (347.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymunk-6.11.0-cp312-cp312-macosx_10_13_x86_64.whl (365.0 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pymunk-6.11.0-cp311-cp311-win_amd64.whl (366.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymunk-6.11.0-cp311-cp311-win32.whl (315.6 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pymunk-6.11.0-cp311-cp311-musllinux_1_2_i686.whl (975.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymunk-6.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (989.0 kB view details)

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

pymunk-6.11.0-cp311-cp311-macosx_11_0_arm64.whl (347.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pymunk-6.11.0-cp311-cp311-macosx_10_9_x86_64.whl (364.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymunk-6.11.0-cp310-cp310-win_amd64.whl (366.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymunk-6.11.0-cp310-cp310-win32.whl (315.6 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pymunk-6.11.0-cp310-cp310-musllinux_1_2_i686.whl (975.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymunk-6.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (988.9 kB view details)

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

pymunk-6.11.0-cp310-cp310-macosx_11_0_arm64.whl (347.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pymunk-6.11.0-cp310-cp310-macosx_10_9_x86_64.whl (364.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymunk-6.11.0-cp39-cp39-win_amd64.whl (366.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymunk-6.11.0-cp39-cp39-win32.whl (315.6 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pymunk-6.11.0-cp39-cp39-musllinux_1_2_i686.whl (975.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymunk-6.11.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (989.0 kB view details)

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

pymunk-6.11.0-cp39-cp39-macosx_11_0_arm64.whl (347.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymunk-6.11.0-cp39-cp39-macosx_10_9_x86_64.whl (364.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymunk-6.11.0-cp38-cp38-win_amd64.whl (366.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymunk-6.11.0-cp38-cp38-win32.whl (314.9 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pymunk-6.11.0-cp38-cp38-musllinux_1_2_i686.whl (975.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymunk-6.11.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (989.2 kB view details)

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

pymunk-6.11.0-cp38-cp38-macosx_11_0_arm64.whl (347.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pymunk-6.11.0-cp38-cp38-macosx_10_9_x86_64.whl (364.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymunk-6.11.0.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.0.tar.gz
Algorithm Hash digest
SHA256 3ac6e70b98281ffe8020d7aef950418cf3811b904d3a11c5455cf4d86eccf796
MD5 e7bc5472353fd32bbf9c88422bba04bf
BLAKE2b-256 af958caf3261ba3b1375d77c35854edf1430a677008dac4fca70275ad1b340c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c3cc233c194b0e7e895c0a990e9b5777145c5a4b59b4efaace7ce5eeb60a0cfa
MD5 f9ba3ff679cf957343a758f8076d68c4
BLAKE2b-256 9012756cec9c1e15d67b0d1b597bbb1f64be362682e548a9b4a25f6a1ee197f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af064efe6ac4f56bbdcee99675e3b341a7e9190c24bfbf1c455a4169baa6799d
MD5 4ecc055b482e169c27efea5b4c4c5a87
BLAKE2b-256 96d5625aafd7dec264715427727ba70519b2f9ca5ee5803f2248226157587757

See more details on using hashes here.

File details

Details for the file pymunk-6.11.0-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.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6dec1b8ddc5ac1574ed2501679df65f451908bfdb8382f45a049fe05bbd77206
MD5 6c4e7c6f602a61020c3d5cf50aa856ad
BLAKE2b-256 83fde7d6d0c00d7ac4f01444fe4c1762bce140f9b17f1cf7af80003cc544fe67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 befe5208ada85750b8b0624c09b6ad2fc472d2bca8a523b623e43eaa264a4713
MD5 9977a4a0f295d47ecda0a9a978c834e5
BLAKE2b-256 4a445002faebb6aee275893ba1e5800b1b87406bf2b84a7121b1711cf7a95e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef988643eda90bed7cb5e84724c5858a0baf2fb1ef0a9ed913212292d410e7ec
MD5 bf6413d6075fa4bc35d345e60c77af4f
BLAKE2b-256 8f11be2a7a78fb4099513bfa6cfa39154e3c6fe56332e1f675b2074adbf3b5f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5734f9e5155780e9b95b1109ebd6ff06f007122ad69b81735dd1d2aea6191006
MD5 f1eea0b71c65a75702831c7e22089433
BLAKE2b-256 f2cfdefaeb3b96b07f2d5b054b9218e09d598b0eec707598b765b6e21b3715a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a02c70bcc11a8829c5ada64befe0a5468c4b6ae964a91fe25573d309c615dd93
MD5 0ca19ebe7c0e1237ed6989ab4d2f8421
BLAKE2b-256 0535733d52cab27d29e63783b0af49d222ce194d4c776e32d0eaa2b91a6add04

See more details on using hashes here.

File details

Details for the file pymunk-6.11.0-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.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5bedf33acda3ef01b376342ec342a7827dac3432ce6a635741fa752ba172e2ff
MD5 23b4d41e171968ed047345d11c64396c
BLAKE2b-256 37cc8724fda118ec1eae34b139a3db0aa7c111395e64b4deef19cd0ae9aa4883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00c37404fac0167d3a9084f0a5396c973097c47312a7dfc60b3f2a66da53a31d
MD5 bb37ad5cfd1e5d45dced989b6211d522
BLAKE2b-256 e822b6714e911b475f16535f9efeb565d5ebd13750c28aacb1add50a63ad9163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 10fed53ea5d0cb3c8c75ad3352c48f534bb03b19f262b539704108a3f232e7d2
MD5 d19e8312b92c381ca6a5477e351fc2be
BLAKE2b-256 4c84edc1a41e1247d26fb6473ce4e5b98ce9388acdcb174112c3ee56d3258af0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 366.9 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc7b0192dd1a8d15be08c91a596ccaf78b9a3d8643ca8374f543bbf90ded7d85
MD5 cd5dc90e8114c03af9f868afe4e85114
BLAKE2b-256 aa9b0a88f4a03692ed20ecb6da372cd880eddde7a748e980da5bcab2ced09a51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 315.6 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 54180ea60a96549d9ee9d9398a19d44667099e82e6794c0e22d326998bd8b4e3
MD5 722526b5d29333f4836c8cf0247e7dfa
BLAKE2b-256 5ce63b24ba6578941caed93c00b64424b9e4225191dd6f590d46b2c835c308a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cce20c4f7f9bf2df4334448099b3e736bf926b99069fda78c245c36304d2a285
MD5 eaf14ce57466faa76f671836b7b7e871
BLAKE2b-256 26a768417c0a161ac806ca919e58b1ce52075bbdf34221e6030ecf69d2d556f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22928a950db49f66b12ac33de21953b0a896c405727c91f78100300c8b60635e
MD5 2f89ee6fec35f365d23bcd04c897c486
BLAKE2b-256 992ac2854e5bd2d276ac53ebf517da6fa4e43bceb8ffd6162f9d256e9b7b1972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0345b6fed28b41dfb7d5973a96335f40a19c7c62ecc6941d3a27459ce490c76f
MD5 bf1c0746e4ac791d830ec50fdc1a08c0
BLAKE2b-256 190a82f130e7e8b8f9b297bbe8b4dd63d5f9b378ac5f3b646646bc7b2258fcc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5101ec2488a59bcedd11eef66dbe0ced18a63b4ae0843350b84f4e13c5dfc139
MD5 ffd9e6b9fafc077837035dde1551bb7c
BLAKE2b-256 8ac16d50604c63e0ceeb66f56781d8f36ad9e217a5800a980273932f9dd3b874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fc0e25d52752adea82eaae29077de08090e05e9e4d025affe80ad0239e39839
MD5 93bd020cf54f5cbaf6e3f8c44a9275e1
BLAKE2b-256 fb5f492f5ab6c3b79fa85307fc8c431773358423725816553335b9c5b8bca7b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 aabdd315a76ec972726419ce644f62adc0d51dfe540003554cd00afdb1aeda0b
MD5 e073c94f010b108ff43dfc30e6ab0122
BLAKE2b-256 73efd099e5c6a90428642242e24b2c4e15aa4fc65b32351201c16af62fe6f220

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 366.9 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7656b5f6def4272cd53b5476f64f5f7a66578630a6f92137f26a2e3d8572cd09
MD5 35369523f26ac0d706d7536d83c9665e
BLAKE2b-256 0d0ae379dbfa3be00109e4eb93c47e143c8659818b99b4089ee3cb80d372de3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 315.6 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1fee1d496e72b4ac795875bd0e7f2089583b5746d55e6b1bd074e4e228b1b695
MD5 a52e694ce73159b87972baa1f7064436
BLAKE2b-256 0a6031b22fc1c3f993ea9e84185af18b2f7b26b2c23833b051cb09f21b8eb9c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9567f4288a933d6d96e94c7710925b41e3ca0cd93799e8b34517ec943f66932b
MD5 cd24d2f08ebf0eb029942a2dce0865c2
BLAKE2b-256 e55a64ec48156345b28c9a4195e4b093febe46b38f60e0789479945ff45c8249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 986f807fe44da499178e221bac614bc5aa11c34077887ffae8865c379d2e341e
MD5 7d23b6146b8ce460abfdecb644a19816
BLAKE2b-256 fa37092e673fb084266ab9b4743a2976f684c72fd3dc4c95e94c9c62a411762c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f9133c86a5e1509613043eb1afdc1d9430dfe7f8dfd66ea27bb46acfa1a8d9a
MD5 705cb57425a1b93e34e2b4bd5cb2ec6d
BLAKE2b-256 e34a3fd020663c2bda0ae690c6cee14e6aef5f9819938ef93c8591c219c626bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db5184355a72dd5b4d8fdee6960296ff4829cafa9d8596f7833e230dd439ca29
MD5 d20255349ed5cd9b501a0d306ce6c664
BLAKE2b-256 bb0c5538bbe402a5c35413413f7be1a1be291329f008e6c1d9fb13f090f401be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20d93c66fe4928fa828604207547b18e01ed578629c352ca2e1921b00af6ccf4
MD5 97acc5220624156fbb9506e6e9720e46
BLAKE2b-256 e903b93457dc0a8c14c19f0eb9c6940447ec47aa149cdf63817d0ad53cff125f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 39d19e759a7b5664350eea7e1ae358a679d01e714443a854c2a9a64116920dc9
MD5 f54a6b09b84c873be2790ea5c7ea04ce
BLAKE2b-256 7243f25044c5d3d9b8a5679dc1820ad1ab5fc007603935e940f05ce67ccf4a6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 366.9 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dbd45427f27d93ec3a6a537bbf416ad810de6507648a63626a35a7dd10fd0da2
MD5 3513a6f7970257f2dc1088d33822309d
BLAKE2b-256 3ff7f841c85a050adb543ff483f3576f7aca6eea6a6fee4f7b94e6313361984d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 315.6 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b40e4f0fb77d5f7ce73a0faa89d2dc55ca2ee1cdf44e2a8a89a1acabff4b505d
MD5 aab0d1c1038ac92807ad8e88100023c6
BLAKE2b-256 a544a991d2a83207eedc3fa176f62e4a98c6c099dbaa7473c980ffdacc1119a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 febe659290ea06d24c6fe69bfa010f45f240884aa6da4c1dfc2b33fba5ccd093
MD5 acc8cdbcd16c38990f938ccf50d92c74
BLAKE2b-256 4728d1efac5a5a9e37e173729d96917bce3c70cdadf98b8cfb942e373d171c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2fc76d66e4f44e5acc6a96172aaa45a9da4ede17eb90580e844cde8a956b68ab
MD5 8c950061a7d01b37cf79ac39a3a5f4d1
BLAKE2b-256 26c2c62a73f4cd4c1bd95203716c1b5a85dd2fb8e4b802815878946aa8279a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cfe3323fa4b554bf2ea07c56eb879477e4a27d7f5a401077a966cf161ba72b4
MD5 d06bbda5bbfd2b99aae23f921afac15e
BLAKE2b-256 0da2f6dbed59213c14f485aeaa11b9b9ca8f331e14ecb00758a9a8f99a00f28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e483827a0d74a306d252247004a2fb588d79eb7053517b3e7b27a078818956e8
MD5 dc47d6ca9555933b20a347ecc0da1101
BLAKE2b-256 c8b73f52f748c65dfd46d55db8bc48ccbbfc0705acf4d4c875e6af4e8b214c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f95a70b1d32095579e2ed4ca03473ddb7163283f6d278495bde95dfc9229e55e
MD5 2d218d9d35cea706584c30ef3acc385d
BLAKE2b-256 ef30e661850b835a0ce3586cf0dd15611a42beab89000cbae5c5682f3cfcc459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 306ac1a5790ff0203d4704c588933c9fd8092119af3623c417b55b0be805aa53
MD5 52a328ee1da3017ceb6becc3ca239b6b
BLAKE2b-256 8f4fa81dff1f9c96bf2d7e2c95d0e2cde97db72f0e8d3811ec053f7a1cab0ada

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 366.9 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a521dfac30947f2320370ae67d72ffb7141eb10b474d5f2d810313bfce3a950b
MD5 c78a395228d02641408f9e811b6b0c49
BLAKE2b-256 ce08462fd3de163883379fff77a0a52e583ed909886461652b8c89eef387f840

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 315.6 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5c8f241e5e37eea7c285f055320e34adcead10845ffc0d2f886dcf5a3a0c6fdd
MD5 02d9090edba9e7040f0e2550858588cb
BLAKE2b-256 e186f068f17bb43962883c40dcf2e1d648bc133e6fe23d82d8041b307177aba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aeaa9fe45b7e8cc9d694fe1a65d66e6e3cbb089b72fc60c3879040ca1ce94d42
MD5 fa5fb6396bcf2179072e8ff9eacc8548
BLAKE2b-256 c79927eefcb8d92120f37fc3e36ed4d2d578d01695b4c3e382e54b8697385733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 adac693cf90018b55403e91fa8b0efa807ff584440c49cc0f1d0cb7a9e92ebf2
MD5 27af83f1b018aeea9c15abeb3e0328bb
BLAKE2b-256 f96aae17942d7115606898df0bf3829129b3b921af9977e9aec1f65274ae975b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dcc496808ef6f5752ed1a5ead35098a596e661e9f625f978ed204ccf539bb23
MD5 b5f8619918cdd638913ae92409543b39
BLAKE2b-256 348255111d0ca5839f71821274429c1f0f6647c21577475ee6e472b223ec0560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21103d3660dd46c913ed0888cb2602d00aad77a66d81edd36349132a3dd25f91
MD5 006e1c2424f37290de4672f0cd24e8b8
BLAKE2b-256 80350d37d6c1c4ffedf1ed0cbfa3b6381a0a5fdb6355e520c1c9ae70521cb980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 463ac2dca6d7090ac133bffbabe38b00589ae9b600c8e63ab7ef6af281f2107d
MD5 6f5be0eea62fa2893f2a61476d1ea5d0
BLAKE2b-256 95b8cde08ef4ce1fd642533d8254c2c3cb96be3404791008f42c22a1919f47ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76ee20adbf40a93f85963083a1d36b860e1f6cd7b06a27029d0d388b8775cdf9
MD5 d9a9f1827316eeea4242f4c259424b7e
BLAKE2b-256 ab1758a21117c67d056357c7d8213819d96dfb4773837b7f5afe9d59c3e7db08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 366.9 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d283441141df0be208c5511dd15073c4b7516817962f88526832fac14c906a5e
MD5 51a75269027110913367bbaecd793d7d
BLAKE2b-256 30f30f75c64e27f74ba7c58d09aba54320b68bdb616c9cebb0fa694854e81aa8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 315.6 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8378bc0ca871e3430346523c72c0259e9499c3794f5f51c89649b7d40e56e44d
MD5 02ef25cfe47a9c6964a74f5b2d8bc081
BLAKE2b-256 67507af0518752ee03a69eb275263f004118f1f715ea84c99f71b667177943ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e7d40a102099507fc4a5e51b638151d47d0cc4c1c6adfb1fbcf5a856b7cec90
MD5 c3d5eb0d64001c706b1ed5baef814ebf
BLAKE2b-256 612ee10d3ae5027d6b533c381680ba6a5d5e2b43c853f830ee1d1d65d94bcbad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e76708c8015e5263fc31103b5775eae26020ec5c8f8d9abb9b30621fee06edab
MD5 d77ba185adcd330baa2b32b2efa669d2
BLAKE2b-256 93bd8fd22e97dda9c0a37cb039a90e941f4f9cb97d490029922c7d81c7845062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6abe61213af2fe9ba2f2b87c90d8dead2066f85f1bd65b86c6d63a99a8ac29e5
MD5 4f17a92319e2a6cf62f544339ca8cd9b
BLAKE2b-256 ae467f09df0874ea24cd54a1676d1c11e06d78dac1ffb57096806a5c1ccfeaec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c266e6228831ea16b469008159d1267584e7635dc334d260b1a1a219bc35a8b
MD5 a5d7fb7c05ab625cc8ee5b2390d8cb6d
BLAKE2b-256 07450ad2664a5473d8f19617dbf89ec8f43ba30159af8b7c0ea5b25d257fad73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9894a5c410567e694237a9e10df297783d358658cee8f648ab3846d7a0cf8b23
MD5 8d4a47be3c4b6b000f7f427494813558
BLAKE2b-256 6ba34c3c14565686a55479442193a08808d901612e530c5211a17fd4c6cf2d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 031f56710ca7a2bb5741cb9a1e01c579c88bf1d6cb9a72efc26f7951c6648da5
MD5 807df19009586bb770b699f4fca125b9
BLAKE2b-256 06533dd7f84fe3701efd25c581116b10ad16ee8ac652e7fac9286d11ea36124d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 366.9 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 90df332f37fe67351aaf0c0dccec01f9f9d07845e19a6d11feb37b4cf07759c8
MD5 0a781e665d1663915a3952d45c58fa5b
BLAKE2b-256 44a774377e5af0d1b58fd81ab0d4cd32abf6756807411774e0684d849ab840d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.11.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 314.9 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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 513a6c64059083db5df4710792f308465d6d7d4dba08a4130c656422ded1321b
MD5 b0a71a76835d96662b1e10c52369690e
BLAKE2b-256 549da3e968111ecb3c2c61c6c9d223ef17d57a22aff396fb8b24d61db3fd2ad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0ea43eda245aa85ee4dc0225d40346c7f50134372162179841cd2a4808a9c85
MD5 9e40bb3fc7f38fdbb2bc250f1da48ce3
BLAKE2b-256 740515b1f1b2e03f7936e1a4dcec8db7669456d6666fdc6f03f7929915789734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57242ec485ea6359b8941013f6a79593cb25a3bc9f97a793762a53bea50e7f29
MD5 09ba26435cfccac4c125a2c95c8812ac
BLAKE2b-256 08988ab44e726221f2ab322652516bcec8ad07be20b27350fa7f91bafcbed0d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6ff89fc966123d0696a4ed887f92f64fbcf7302fa77d93c659a12d104d33bd2
MD5 d7df287f8312b39e73dd80a08c75e946
BLAKE2b-256 7d915598b1d5d71eee99bccdb66391118611a6380e221df45f0d9fb160950b3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 496e78423ed709750a0e5820a5b4158d6f0e204dc90c7124fe9b53e6c663d2f4
MD5 ad47130ac82de7dbed2e4a6225e8fdb1
BLAKE2b-256 50833ab2b545c9bb39559d02f852cf59f4ef59be7137e3f5b74451dff2bf78e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d046d972124a19a215b55f42e611b91e96536800ecc931cfd89cd8f91ee08422
MD5 600c0ac300cde351c5a26f2833f57ac6
BLAKE2b-256 a30f6ff909363f4274211c4ab82c58b20d76415c3401a2c9d579b0c96c7ee3c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.11.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 463af5777857d42f0dccceae52d18d476d65fb10ebe2a4555de76f556f136460
MD5 8c4b7076dcab1af674ae35f38271d029
BLAKE2b-256 e1cea58e88f31e8046f297b2c9bf3af90a565f110381a9d54d15b94c24d09a0b

See more details on using hashes here.

Supported by

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