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 - 2024, Victor Blomqvist - vb@viblo.se, MIT License

This release is based on the latest Pymunk release (6.9.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.breakout

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.8.2

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.9.0.tar.gz (3.1 MB view details)

Uploaded Source

Built Distributions

pymunk-6.9.0-cp313-cp313-win_amd64.whl (366.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

pymunk-6.9.0-cp313-cp313-win32.whl (315.3 kB view details)

Uploaded CPython 3.13 Windows x86

pymunk-6.9.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.9.0-cp313-cp313-musllinux_1_2_i686.whl (976.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pymunk-6.9.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.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (990.4 kB view details)

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

pymunk-6.9.0-cp313-cp313-macosx_11_0_arm64.whl (347.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pymunk-6.9.0-cp313-cp313-macosx_10_13_x86_64.whl (364.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pymunk-6.9.0-cp312-cp312-win_amd64.whl (366.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymunk-6.9.0-cp312-cp312-win32.whl (315.3 kB view details)

Uploaded CPython 3.12 Windows x86

pymunk-6.9.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.9.0-cp312-cp312-musllinux_1_2_i686.whl (976.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pymunk-6.9.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.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (990.4 kB view details)

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

pymunk-6.9.0-cp312-cp312-macosx_11_0_arm64.whl (347.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymunk-6.9.0-cp312-cp312-macosx_10_13_x86_64.whl (364.7 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pymunk-6.9.0-cp311-cp311-win_amd64.whl (366.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymunk-6.9.0-cp311-cp311-win32.whl (315.3 kB view details)

Uploaded CPython 3.11 Windows x86

pymunk-6.9.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.9.0-cp311-cp311-musllinux_1_2_i686.whl (975.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pymunk-6.9.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.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (988.6 kB view details)

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

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymunk-6.9.0-cp310-cp310-win_amd64.whl (366.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymunk-6.9.0-cp310-cp310-win32.whl (315.3 kB view details)

Uploaded CPython 3.10 Windows x86

pymunk-6.9.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.9.0-cp310-cp310-musllinux_1_2_i686.whl (975.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pymunk-6.9.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.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (988.6 kB view details)

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

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymunk-6.9.0-cp39-cp39-win_amd64.whl (366.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymunk-6.9.0-cp39-cp39-win32.whl (315.3 kB view details)

Uploaded CPython 3.9 Windows x86

pymunk-6.9.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.9.0-cp39-cp39-musllinux_1_2_i686.whl (974.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

pymunk-6.9.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.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (988.6 kB view details)

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymunk-6.9.0-cp38-cp38-win_amd64.whl (366.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymunk-6.9.0-cp38-cp38-win32.whl (314.8 kB view details)

Uploaded CPython 3.8 Windows x86

pymunk-6.9.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.9.0-cp38-cp38-musllinux_1_2_i686.whl (975.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

pymunk-6.9.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.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (988.8 kB view details)

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

pymunk-6.9.0-cp38-cp38-macosx_11_0_arm64.whl (347.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.9.0.tar.gz
Algorithm Hash digest
SHA256 765f7c561a859a1b565bc517a47cc3992d6258e860f9174c533033c218af63c3
MD5 0eeee55211840f07d43a815c9cb0026f
BLAKE2b-256 ac081513c868bc2a6bfa22d47acded27f5525c1db10bf1db4fdfa39160991616

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 366.7 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.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d6419e1531df80ff0bb6f1f8215e044f57415514386b7b212dc148919ca629ed
MD5 593c4e9ba14146b2b9d5be9001513af3
BLAKE2b-256 e07c1542df7ffbff70a4523ccb02c9241c9fe4dc24c77b747e2c16fb94891156

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 315.3 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.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a78b37bb360e715657c76caedaf40cdaaf6dab354d497eda481a976cc5cab3d7
MD5 5babd7fd435c03b3634d90310015f4b5
BLAKE2b-256 e5fb6516bd5fe565ea51a88308869632dfc896ca6b05b2579b016ffa8047a8ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65a9a93a51dbaf1c77efa4d2425549888a1eda9f5c9cd9a5a89b7ca66310968a
MD5 9b39369fec698a4d92d49becde4f1df3
BLAKE2b-256 c69064ef000011f0c930b42354f0d91a07b4bc7f70819ec5b6034b84198bf53f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6cbe3d06e468be11a615d4facecc4a870bf58c1a27c365e655b5a85685ec942
MD5 d6fb5424e3312f37f326ca57b710c907
BLAKE2b-256 01aeff7fdf1c8d32ba89d1ccada39b5f7ed66e35420b8d31bdc9af6d5d20ea2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd64ef76e9e47fda929a2961fe98759ac46b5a7b6126d1ba3e6f04493da6519b
MD5 91ce3af9aca3766bbe537d6640a72ac1
BLAKE2b-256 baa8c7ea141a1d0e3f5b08ad653f0b5a4ebc0e5854f92bc7049a2a921fbe0d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c568c7402acd5d9a55e3965565ae0a596e4603ba8a7b7b7f0952efadd0e69524
MD5 27e44dab556f6db32878ac7b083d01db
BLAKE2b-256 10a2f40bcc9be90c2af1fe8cf4ba4281385b48d9f5667f03f6834c49aba600fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cbc2d37f69d85fedc1097af64edc8f4c43973a13429d51004883cbb9342875e
MD5 7275136d0989469400451e41a59f864d
BLAKE2b-256 63b2378d54b79812da5312b10de272c27aa0ac621498e059aa50eb4eec33ab52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5c59e5cf904e148dd0d35cffb7bafe146835042de9280672cafecc3a41caf7a3
MD5 59d3da8fbd2710437f2c9a1e93e27c9f
BLAKE2b-256 b65ac76904d21f3fdb0b713b3a8056622733a0b773f7e55ef974fa4546068cbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 366.7 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.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 13246a79b599c44d174f5619596c62b656d8539797f28bdb2797c4b700c90a33
MD5 abb80865f1b122817202636452621628
BLAKE2b-256 78b40a18c632f96924f969924cc5903689afcaf474d4c472305805dab391b247

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 315.3 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.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8325c9092345764876b1c3855126cb14450dc83dc5b141ff54983a7c77fbae52
MD5 67f09360e53019f122a6297385a52f45
BLAKE2b-256 f04021c2a08b027d99f351b75daa36f8a2e2385daba45098078d225811275ff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da0e153d321073cd07a48380cfc1b7bd8d40bf4ee1b14a7ede33d90a69ee0452
MD5 9fae5b5591d6be5b34f4367178f7347e
BLAKE2b-256 91d9a69b268712dceacf227cfff74401e2292b53050383661d456605a1928a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb9520c52c043de4b2b1f83979f0d097929f6ff13c8a4059d9d211b98ae25887
MD5 24b230b8068c6ecd4d893f802a0de763
BLAKE2b-256 af67ea2ff4a26b66acad394e4f28e4e316fbe306d34909eca401baae211ca182

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7734d13e490e84665b1f03e616270b248d5279ed34e03859267f67868f1b94c
MD5 ff562eb97f59bc783ffb8ac34dbd042a
BLAKE2b-256 4add4e12fb3671a6c4f2c0604420f0f15b5402b05c4964bba001088a3d92e3b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b05dbfa58d366dea860f7259ca48483922a83620ab6a19effaa74e85a4251966
MD5 7f6f91342989a5d08082ea995e9f8896
BLAKE2b-256 91f80618a9204aff896da8b2a9df44179390b178bf00b189851affd4809b1f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6aae4f93ac686d5e2ec60b01faa1b3722a8ab630464d0c127e16462e7bef6292
MD5 ce08c1bf3e65027ca5f24bbe687d7e22
BLAKE2b-256 543e610a2f2b0c6c14038168f6f862148cb245aef867b01906ce18704acafe1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 02bb0fbbbce2b12c18a033e2cec747e6c4b0db93d2cb9a20f45e569b571ba184
MD5 02a68d0389ad169c0a9629c5bef49cee
BLAKE2b-256 9396d8505f4e9661c0e5343db5492895b90b2ada6ec4547fdc7a2df50eb0cdf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 366.7 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.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2db4797ecec3668d51bc112a37192ee1836e236bbacdf5ed12f5a994cf1bae33
MD5 120e883ace7e4cad2b7288527e652374
BLAKE2b-256 bc3c925a0193bbcca7203f46fc531f4f0703885c102c1e2c118c8db35816aee3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 315.3 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.9.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5d3ae7df3d39afe5b11633496cd464b198d5c62bec69f767f3b61f9fe7f09b98
MD5 61bce43fc3dd4b65140791f7c19ada6c
BLAKE2b-256 19fce6b8bf53255f2012dbdf4a2b063b6c02f8c13ce13b21fdfd84dda64fea80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d163dcba2e5814bc5f1274e0ee6ec2a7e06bed8bf0050f30f22b604634bf7dbc
MD5 7ef30f7f6dab1a16b958983e3c6fad71
BLAKE2b-256 ff448fd8677048aa864d91915702522c70c5aaadedfd7cd95000b75d7aabeffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70ee413899672c2d7d2ffbecabee133dba49a109867b520d77c829c0d9b3fe92
MD5 a848b7804a4a187cb07bc00df93b96b2
BLAKE2b-256 acdbff2cfa5b87d3e60992b2264a03ffedc738de64d0107b4ce96c623f9098e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f54bd14512ca5fed0e77f964b1de4e7da1a31386dbf125e33482874d69bb6537
MD5 2fb37e69f15d47fd2af8a9cdf847e7a0
BLAKE2b-256 61d0acd6a6cd8266ac0333792ac3ae36558a58859ca806e0add8f5ea01627b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc8d6fe79f77f3ed6e2f33682d355eedb6864684120b845a3501fdf2d3efdcb6
MD5 06dfe331aff56b7a84c7e2c1a7188683
BLAKE2b-256 5dd32e5763d2eea69e8953782da83fe81a0235650339c22a4f8c65ecdd07cec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e474bb748ded01d96d6eac8e282446baef324b67e0280213b495b1f936c06e7
MD5 98f14ef52cd6a978cba9a93b4f4707ee
BLAKE2b-256 199a0d4931e3114495c31b600a17f27d5541f2ee35883e7c693199e1ccdf1ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 536cf3ef9a3add0ea04d83a4c01fe090ff137fb591c3b6fff6e69102384ec5d5
MD5 0e71efb2253e51369d0b2714bdd65b41
BLAKE2b-256 6fba34524aac6c57990aa9561c4a949543794e5f7128a0b01537ed061bdaed08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 366.7 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.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 af036bb14d7c97b6be4adbbc23af70af399685ad67f1efee24c1c6e5a936c155
MD5 633026355ca519f4f4ffb18e65342e5b
BLAKE2b-256 b84a3d5e5fcfe78548583acf92d7799ce853ea324b27757adfcf5bc4ba0e56d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 315.3 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.9.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2c8e44942f1624cac7d1274b162355b8ee80633119c03528a065dd38c01f0976
MD5 d14c1d293f445313b41824e7d49c9b1e
BLAKE2b-256 1786ea82d483af26d0a1d4cd26fe6bd17238b6c7ee82319d13412da56d5e3bee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4112a72b498d142745a83c684c20304df5e454c07f9f14fced8e6d7de0fcc734
MD5 4d9b3466aa5e20c4ed1640ef4bb6c372
BLAKE2b-256 720fe4dabe24e2daf6e33a92bebee44f55759969570431c7038917d81fb83a50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 092da512f47285bf8db9ac0a2f210e78d7710bda481f6703ad1fe586e4a702f6
MD5 8aa9e15bcb9983fb53622ab429dfdc82
BLAKE2b-256 4869f1f3c46b32bc77b934fccd7729819d135c8d351a6676636919d0a7f9a3e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc3b08c16ed9cd49cb1373a01f81fb0ecd25b2acfcad401c798ac2fe9742050e
MD5 37c8e4de58e85b62b3b08d6ea664663e
BLAKE2b-256 b07adb5401c09b55eee01c6a86a35ea221e5acc87344dd8e7fd55b2deccf06f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f27085a7ff0930b362fdc0d126f4aec5bc6dcf78fd11d4756affad4e20f6b908
MD5 22dc2bdf22e4bbb55b3fb3fc82dafd7e
BLAKE2b-256 2b1bc16e8dc7101ba631c689b7fc066656ca233ad759229dcc241bb4e769a16b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cea836957dc67a5562a7eef8f002dff70bd6c8e8fb5afe983c8c3cf88905b27
MD5 0486c7181515ade0e5aa3fe80f9040e1
BLAKE2b-256 90294929010df4f6cd61eb990582db04b5ab4f4b98354e63c26ab0c8fe7b88e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 870f47391ca31490cd0e5d265fafedf30763b637af67584ef807b5f492ff12b7
MD5 ba7d178d9b71739e83286db32f60253b
BLAKE2b-256 6e26c593a7fafb5ad5a671d84babd88bcb3752a66e5dfb49b28c447814c0a428

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 366.7 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.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 55ae668fe5f98f18f02cb80ef07de43d9bf0aee471fdcf640ea47bf4060ac832
MD5 1121ace3b5039fa0129810d3c303afde
BLAKE2b-256 b279f58442e89d3b7c9921a7bf9b5bbb72ae3cb4947e2cf0c5dfe43c0ce1f239

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 315.3 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.9.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4e1c74d5c9f956e191830d0919fe5dd89fd35c805215232e0ebb2b815d5641aa
MD5 6d428534659d1ac92241070c3cdb0b36
BLAKE2b-256 b71a06affb310f7e52dddb635e7f02e3553e859b3376f7af0fc4f115ed55f97a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e77dd1e516b281ae4974c600b0911f84d164b31d2d0baa6269461dafc958231c
MD5 5809d4c5879a3617a43453fdd30aa53f
BLAKE2b-256 7fd8ef6648f5106f641bdf8b65fb2442da67f16f68c72523d5f4d09997047b0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f939d393b1ca529632641453cf2c3e107656ab33c6262c1dfc93ee6f25d114b
MD5 8834690f97e4d067211d9e96cb1c114f
BLAKE2b-256 2673094f9d419257879dfe451ad79f713fb953e4551264a1f9bed2958859af24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbc92529e41c4eb174a3f07d4e4b34ca92eaeb88336d90c9aafdf5594c7f7865
MD5 b108e473f722683b6c3a4b01199e3486
BLAKE2b-256 56352b40b58a0d6dd26c43e5172c9f783fcf6c838486bc982e0d42cff19746bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44dc55c6f7b2521087b68d1d6d1b1a18231f45b250a407dd66b8a83bb60172ce
MD5 48f43ac39a21ff6c4d0eb927e42a68cf
BLAKE2b-256 7d3707658cfa2007efef66325f0cbdda79b68fc195714c78fd331c972a603390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91fa560ff57a154514f443cd3dd54dfb83a40559ea7554fa151c538c64916c6e
MD5 34521c77905319badd6a0347d28da0f6
BLAKE2b-256 2f12d6fa45b86dd7558dab3171a552ea7c89bb02e0377122d2975d344380a864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04b11bab3a8ffe108cdbe0d89d3b0f64b9632324507faed0b2809c05e0c395ca
MD5 05d92735764bec9ce6eeee0e2ae9efe4
BLAKE2b-256 2a65053445c8566bee343dda01cf4ecf0311084ccb8964dd8d8ab1ad296d7ef8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 366.7 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.9.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fd809fc3178acf66d779bd3e28ed1c3fc637b799146e8bc86f1404ffce36a676
MD5 dec7b9e896145bb45c58bae8e6b176cd
BLAKE2b-256 99f532edf6c6f43fdb19c4b75f94f7d71ea182bec8fb23517e78113f0e937f30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.9.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 314.8 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.9.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ad87e6e0876fcefac52d07ac5416a51f7e7d78fd1415d71e524124fde16cfb43
MD5 7815d60cdd8d86d6664ff9f1a4b055f3
BLAKE2b-256 526d5275f0ab71cdc1107985eda29d95535e5b8ca52c0702f5e30d128aca7f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ee931ae87883ef25493d287dd5ff4f53f09dda8d8985c5fab89470b8b7e4eab
MD5 0f026973bce557104ed2dc67a085c066
BLAKE2b-256 c13fc9b571891ab05e885df34b6ca22b35efedf66b53bb05948947f695d423e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e1f884f2a7621ec6e55c26eac9aee81ce946d40f899b7372f1bd90b1aa85b11
MD5 1d513c0cfcfb6603b8104abd069cf322
BLAKE2b-256 2ccc81817c4798d60e80f564342d027d4003ca0720c0a5e9e62f393977a6c324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba0f71392b5be00f38424f26186be127fb624f235ae6a8a626e5b00426bb2017
MD5 d1321e7c5c0452bc0269fb28184cb465
BLAKE2b-256 5c98932cf7cd36f16a07005a3877387c3f510f97c35c3b77e18c5c059e245ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 10dcf6bd23df057aec7258e2546e3caf25abe69b6b31befac53923217b0799c3
MD5 6f61bd58283d9c19e76a49d0204916e9
BLAKE2b-256 31ef9a746919415cd374b9480e575a96cae7d54919b9482d43956c56ecd7a405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5170abc39a05200d92d8109c135d4747992bbdf98849671e7eab1a3a5045e342
MD5 322d17f8cae5bc83345c57f24a902744
BLAKE2b-256 564fbe82bce7439168471934032da5729676be4f4b42ac500b0a286b3e742f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymunk-6.9.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6724c7aa19deee27ae200e23a9eba2eca0500af99f574eeee286d0e7def07909
MD5 62e39241a90b766ae5b59f445e1e9937
BLAKE2b-256 6fe894332b6aaefb4ef00df9a5b124f2027c9a3526f5573811a3bbefb86ea287

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 Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page