Skip to main content

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

Project description

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

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

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

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

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

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

Installation

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

> pip install pymunk

It has one direct dependency, CFFI.

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

> conda install -c conda-forge pymunk

Example

Quick code example:

import pymunk               # Import pymunk..

space = pymunk.Space()      # Create a Space which contain the simulation
space.gravity = 0,-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

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

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

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

Documentation

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

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

The Pymunk Vision

Make 2d physics easy to include in your game

It is (or is striving to be):

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

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

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

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

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

Contact & Support

Homepage

http://www.pymunk.org/

Stackoverflow

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

E-Mail

You can email me directly at vb@viblo.se

Issue Tracker

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

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

Dependencies / Requirements

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

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

  • Chipmunk (Compiled library already included on common platforms)

  • CFFI (will be installed automatically by Pip)

  • Setuptools (should be included with Pip)

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

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

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

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

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

Python 2 Support

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

Install from source / Chipmunk Compilation

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

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

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

> pip install pymunk-source-dist.zip

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

> python setup.py build_ext --inplace

Project details


Download files

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

Source Distribution

pymunk-6.2.1.zip (7.1 MB view details)

Uploaded Source

Built Distributions

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

pymunk-6.2.1-pp37-pypy37_pp73-win_amd64.whl (231.6 kB view details)

Uploaded PyPyWindows x86-64

pymunk-6.2.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (241.7 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

pymunk-6.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (250.4 kB view details)

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

pymunk-6.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (194.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pymunk-6.2.1-cp310-cp310-win_amd64.whl (286.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pymunk-6.2.1-cp310-cp310-win32.whl (235.3 kB view details)

Uploaded CPython 3.10Windows x86

pymunk-6.2.1-cp310-cp310-musllinux_1_1_x86_64.whl (964.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pymunk-6.2.1-cp310-cp310-musllinux_1_1_i686.whl (892.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

pymunk-6.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (979.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

pymunk-6.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (902.6 kB view details)

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

pymunk-6.2.1-cp310-cp310-macosx_11_0_arm64.whl (257.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymunk-6.2.1-cp310-cp310-macosx_10_9_x86_64.whl (264.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymunk-6.2.1-cp39-cp39-win_amd64.whl (286.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pymunk-6.2.1-cp39-cp39-win32.whl (235.3 kB view details)

Uploaded CPython 3.9Windows x86

pymunk-6.2.1-cp39-cp39-musllinux_1_1_x86_64.whl (964.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pymunk-6.2.1-cp39-cp39-musllinux_1_1_i686.whl (892.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

pymunk-6.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (979.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

pymunk-6.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (902.7 kB view details)

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

pymunk-6.2.1-cp39-cp39-macosx_11_0_arm64.whl (257.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymunk-6.2.1-cp39-cp39-macosx_10_9_x86_64.whl (264.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pymunk-6.2.1-cp38-cp38-musllinux_1_1_x86_64.whl (968.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pymunk-6.2.1-cp38-cp38-musllinux_1_1_i686.whl (896.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

pymunk-6.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (980.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

pymunk-6.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (905.8 kB view details)

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

pymunk-6.2.1-cp38-cp38-macosx_11_0_arm64.whl (256.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pymunk-6.2.1-cp38-cp38-macosx_10_9_x86_64.whl (262.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pymunk-6.2.1-cp37-cp37m-win_amd64.whl (286.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

pymunk-6.2.1-cp37-cp37m-win32.whl (234.6 kB view details)

Uploaded CPython 3.7mWindows x86

pymunk-6.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl (964.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pymunk-6.2.1-cp37-cp37m-musllinux_1_1_i686.whl (892.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

pymunk-6.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (976.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

pymunk-6.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (902.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686manylinux: glibc 2.5+ i686

pymunk-6.2.1-cp37-cp37m-macosx_10_9_x86_64.whl (262.7 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pymunk-6.2.1-cp36-cp36m-win_amd64.whl (286.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

pymunk-6.2.1-cp36-cp36m-win32.whl (234.6 kB view details)

Uploaded CPython 3.6mWindows x86

pymunk-6.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl (964.1 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

pymunk-6.2.1-cp36-cp36m-musllinux_1_1_i686.whl (891.9 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

pymunk-6.2.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (976.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

pymunk-6.2.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (902.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686manylinux: glibc 2.5+ i686

pymunk-6.2.1-cp36-cp36m-macosx_10_9_x86_64.whl (262.7 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file pymunk-6.2.1.zip.

File metadata

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

File hashes

Hashes for pymunk-6.2.1.zip
Algorithm Hash digest
SHA256 18ae0f83ec2dc20892b98c84127ce9149ab40fa3c3120097377e1506884b27b8
MD5 bf37c891309ebea7b86479a6cc67cb65
BLAKE2b-256 d235e22b68e0745e78a883667153ca78c0338d4c7b74b489efad5d25e79fcfc6

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

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

File hashes

Hashes for pymunk-6.2.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4153571e7daa7cdfd27ad86ab9e7b74cf6b708d163622880dbce369c7d6fabd4
MD5 f0397a195cb3b7dc5ec5174509fcf658
BLAKE2b-256 808eb879a73fca6762bbcab90ad1299585e7317316ecbdc0d4789c1d576bde8b

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fc217b0171fe87b64dd8e6d33b9f577db632c287439dad3030a15db65c141924
MD5 b7e0f91718b9f73340ffca83f7b512bc
BLAKE2b-256 7090ae0464196205c49f25e5469b7defffcb8306ce9518dc962c74de68c236de

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e1e5d1a71623ee310ba11e23f6fa4bdb1fe5258e0709e7decdc4a080b3b8b741
MD5 ff98a79e6dad5375b352c55da575f756
BLAKE2b-256 f86cfe9e2a62a52843b43eead4836aac58a92486b516080532fa8f9b70430c14

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

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

File hashes

Hashes for pymunk-6.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7dc1d068450b5b1dab5e0a3bd7d6a756c6f73f3b05a66e3c8f3342929b481950
MD5 2f1dca2c297b82d11776b10b30635281
BLAKE2b-256 e612e285f000f0a200ac6ad2ec90d0931ef9f074a095ef73ff61f9568c2f409e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81ffa3087cb94ed3596166642695787950d9eb43b9b2e70f915c9eb6f74b2a2d
MD5 5ab3f922a2f923df039516b20dbd7cb3
BLAKE2b-256 8ddbeaabfdea7782512259111c8e3ee2cd941b1785f4fb5a46dbafe492617ed2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0f21b16d508b0ad1bacb557b1f3954fb6e4c613408ba4d289b5cedfd6bb4e321
MD5 2ef075da35615b6e21e48f841b653286
BLAKE2b-256 62d695d52cb26632a2592ee0143748b07a2ef3757ac195004d5b0b7de4f25f81

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 964.4 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 75e179f594a62d3adb900239a351160e4b61683543dd9901fd2c9d09a65e4de1
MD5 f557cb0c7d0e7b2c84128650948740a2
BLAKE2b-256 35aa0d7e42c224e083431dfce7f45cb31b20d4b405a46ee101e5f3f687a97c1e

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pymunk-6.2.1-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 892.1 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1fcf646dd9e0ecf1224a01026d0beefff4be381bde563aaf567ca7bfbe84d568
MD5 caffbc16459d21b3b2c5a1dbc840bb97
BLAKE2b-256 fb6cf5b0b70e508e11c2577cc02d4cafdec346f1182a5561db95293f6dd32467

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 73e80f0141709434c1adc3fbb8cb7dc9684dc3ad09985a1ae3e81ab5a3706b8f
MD5 e5813694b76361d5f27b87244df19e73
BLAKE2b-256 84c4670ed96a1a1b7e04c6e89ac7ed31178027b482210296a1e2d517c61cdc96

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fc21e0ffac12c86acb9eca61093fd5f51d3fb473dc079c36f39d2527648560f8
MD5 44a8208a1eb552fead48ffe56e2f4a2f
BLAKE2b-256 b333465a74f56c820b40a6f3e3c1d0f3696081ec3674ca1a5f3650b5d4a21805

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.2.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 257.4 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec7dbfdd12d076dd1219751aa1b48bb4a319e7fd36f017a3745211a8fd269f2a
MD5 6fed467000a537db133375b8671cc20f
BLAKE2b-256 e2031fb827be41aa4e19e29db2bd5f602d8cf8278bbf758c188af0a30ac2f93e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21c683995c7c9763070ef501cb90817e0158f1aacc95fe316338e02754f3a4bf
MD5 f5462ea8afa30932dfe5abcef05e75ee
BLAKE2b-256 7cdd6060f70624bcf79675668528c1ecb4ef3a3d090e3e8554bd4443bfdd5f0e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0303eae52578038e1692b746b4cfe625e284445340363645f1c04bd2b5e1b6fc
MD5 d7c53d1bd33bddbf428e54ee29f3bb8b
BLAKE2b-256 e4073fa04cd7b86b8f5d4d32733614d5c1fa79a9ae3177f25ce1064c8384bad6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 da71bcee179c54c68fbac290e40ba6024b005613c11bfea9fe6c43199dcf7b6d
MD5 d3290946c55a1111cf10c21396b4c83b
BLAKE2b-256 8f71b11b68056e6f244acc85488acc4b3d892d2f8028e7e7b88d2f91fa97dc41

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 964.4 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 35b5ea71f72209a86004a03d4fbe1fdd37dd4eeba274ff2119b76e363402cc15
MD5 e46d086c47b59f8559ffaa77ce267de5
BLAKE2b-256 391ff4090165129c96f5bc02fe210613d0d9d6d75cfeaae79397421abfa203fb

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pymunk-6.2.1-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 892.1 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 596e59683ea9107f52ee44d3b846b7092d6ea402d701afec08b8bc429907c6ab
MD5 bbe412dda5d3288bf1ed8e2366667029
BLAKE2b-256 16c70e12d543a900cc93cfbbc0a8bffd0a54c01b64920eb53caa5947b641583f

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e6eff022a70e096298f23322b3f3176e2d663614147c90fe7160a74fc055f33c
MD5 9e0f01b683a0e0c1a038f2cebf783f89
BLAKE2b-256 5b4226bb43b539bb48938d3563444adfceaefa028a9865ecf10617b25ead02d4

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 83270e5ff80f24f22081c6ae0333e084f9c711382b8a08b3b856ff55db5ca0f2
MD5 0923213ffb0d1d7c75dc2c3ac5d0b896
BLAKE2b-256 87837287d3f89f77b4d1b8bb9da2246ee56c3ad3eedb1bd27f91a8f4ee75fd35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.2.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 257.5 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 384dd611b4c362a74c4c97b23dc03e8588850d850581915785babb0c66ff0fbd
MD5 1c442f14629721bc3b25cfefa5d2ced7
BLAKE2b-256 cf9c7204fd419cc44c67d69064bdf5b344a13172143c8d1c198c9c612f8c609f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1a8e85166e7e543e47367e7062ac65298ec16d0e0f4f68b48a85c5da9488af9d
MD5 b9fc93a6fb02889a682a993649ba7687
BLAKE2b-256 fc40364c1d6af5b24f253cb067bc3290d96b73c7e0c404ef4de41ef70df35d3e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 de54ba2b76dcf180beac80edf0ba7ff295e282778d5e7c3f9f45f2633d6214dc
MD5 d2d8b2c43f6a8a187afeebf1f835a941
BLAKE2b-256 704c85728578478f428a65642e1b768e83c529bcfe6801288698e9ffd439e4ac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 77be3ece10f164dd4cd0d03a9dd5e172f505c38830f307ff3fca2dfef271f5a4
MD5 e4bc5dca40d4a4637c13db40913840ed
BLAKE2b-256 b491ad710b7bb11fa59d622da99e29465480e970855d79dc0713c21272c0477f

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 968.2 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23946f1677daaaae41ddf4a69d31441a24eedd5fa94aae01d0fc16fe4a6ce811
MD5 98f7e729f6c2a9f99fa0c31adada5024
BLAKE2b-256 218c83d0c502ab4bbb70827cb5c1b0a3b5516e294614cca7ca994c9d0ad5bc3d

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pymunk-6.2.1-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 896.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b56d81629f4e352c29064b0f6aa0d4a4750da4632f00b0d539504971105c4323
MD5 c1b86cf44ef49ea87f9f212bec276638
BLAKE2b-256 7c021609d074f9896c7a7b152039579a8343747d250ad569505fdf0b546a76f1

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 18392fd4c9aee9c135395707e2c55e39e1db133037b2f1e4df25f39fbc38e92d
MD5 5a279cce9d035f660f98297e8bd38fd7
BLAKE2b-256 e7cb41457438739bed8300aaa49bcff014c0d264f96628225ca53806b45b8649

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 76de49fe5597796f65a6c94c6b3842195fc61ee960f6b7625203fb3eb4a3e0fe
MD5 87f1721c474ca7c0bc1356b9299bae40
BLAKE2b-256 3a189a92194924e184f501914d520928c37d8654ef85f918f4f7ca369846af96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymunk-6.2.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 256.3 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6603dd6075b26ecb4f8e0163b467ab0e0dff956f40768230829b352f571293d3
MD5 1d32be1674190fc2e16f5b2457343f9b
BLAKE2b-256 1fdccbcd489bc2d3c399e4724383d1d3228b46585665f5c2935cdcbba7ffe636

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22910cfc972f46f1581c16ac882b17abbab69e5d3bab176ee7eb1670e79c61e4
MD5 e3a0669fb48ffc792dfa410b20e089a6
BLAKE2b-256 280f912b2d47e069db9d3214cbd0d8a400f39dbcdb7baac57b1c276b698684dc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d94a8cd325d2100280e27744e8088aa2db1feacc33e3241786653a03a2b68168
MD5 21c9c2a09edaf6aa0311f8555fb36b82
BLAKE2b-256 685840374d08a6725d310eb37eedfd932b518ca9f6d1f69e3622de9650b32f59

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e1d2cd7f5bad886dba565f779452d8c053e1e540d6bd8864281e93b6b5158ca6
MD5 d9e760019f5dfa163663c37ea4a902fa
BLAKE2b-256 b512a6ff142e38a860554a66945fd0ce4ba829bd8e10d8793698f32d2bc3d6cb

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 964.0 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8c77aa16c75028fccf25937775705673276a959f92fdc1451c69d10290504c6f
MD5 ab8fcb10bd91029ba5ccda3ca02276fe
BLAKE2b-256 159860abaa4c8a57ba32963f18387da8d3140bd8ee4c4afddb256db24889958c

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pymunk-6.2.1-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 892.0 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 75b6f8574b067be83c26b127f42b6cc457c7af75970c7d201ff4cfecd4c0f0c8
MD5 7f9c73d7ebb9b5aa32455c8c939fd45a
BLAKE2b-256 aa350950ad2e3b9968219ecaf898914d1b6d7bc8bc4b0602df5e41c64d246ef2

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 02adec146811918e6e2c69157d67a8e71a23d355f3448f2d585ee5198423ebbf
MD5 8f05a7d56ba3752d2c80cd8c1891d2bf
BLAKE2b-256 94e24644fb9c2874c67b1c0e5d63c4694a0051330daa1b2f23623778053fd5d9

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b0b983ca00549905351a91251aa67f903e2d718f228d1ea50e35c30dcd5a3f19
MD5 b8fd55cc3e86aef81ab3948601bf84f4
BLAKE2b-256 4d043e2a92942692a39357432d50ce5a7eed4741510cc79a4a9aa0425299184c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e505063fbd1ce8b1459ed71777773425bb59bf536ef7fc9e4bdb62ecd0b194f7
MD5 8951139ac3f9e3209bbf247f4ef0817a
BLAKE2b-256 33ed98526a60e5f214521ffdf02be1c6dd0e31d0e8fb4fd1bc177b198180ec44

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f1e6c4a329252decce15a4671486fd82694244a3a8d06ab7edfb411d4a20a04e
MD5 040a255903b0a685b75223fe3b35a363
BLAKE2b-256 1e049ed6ebb6ad214f6e6bb8c86c34feaf67ea8b7adec70b9ea52691f0cf4096

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 273991699791af1fc187147f99a694ca67a7dfceef862084abecc375dd2e1082
MD5 abc39c701fd62f221fb4e660a859dd04
BLAKE2b-256 c2dd0f89957f553d61331df7b77515f8b24b0c7893814cd6ceacca1d160a0ba6

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pymunk-6.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 964.1 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e6764612950df1880f180b1e3773368a851b7bb7c1e8fc8ee7f18631e4d8f0ea
MD5 b5bcc2180793035107c87e619d08f0da
BLAKE2b-256 a864e4d007ab96f84eeae2cf59d79f2ffd780bc58cb8c0de8774546fd32342e2

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pymunk-6.2.1-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 891.9 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.6

File hashes

Hashes for pymunk-6.2.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0c807fef9534865ea321c4f8fbb9d04e71dfa3e5b5f44a52c9c4fa4d4e9b49d3
MD5 eee9c84bd3f07f0e6891a8d231a5e37f
BLAKE2b-256 5ba1193a35bf4531b3f14b781956968ba542e227a82e153055f33e432cff3f10

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a706b594287d8dad6206547683fd83dacf0a1f1ce6722867c28030e90e5b502a
MD5 dc71161c98a906e72d342319aea75533
BLAKE2b-256 1f5ed555d2df179324693e11cecf5963a332ba2a22220ae6373d9c4bbb692c35

See more details on using hashes here.

File details

Details for the file pymunk-6.2.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pymunk-6.2.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 810bc1321c4b74e94574e713cd4f9f6c1742e9bd2430536515e6441090c26a20
MD5 5bd1c901d350c4fe37c21036f5d26bcd
BLAKE2b-256 bdac20dfbfc606bf0b31236f03c03a8433e6dcd422e1c7b2b2537bb88a6af81f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymunk-6.2.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fad6d3dc2bb36ff2be430fb012478231cf7b9dd8a70f918d4f145cea25285d6d
MD5 a247cc9965362182702161eaca49ffd1
BLAKE2b-256 5300df9b15499dec7a585035aa0653dc3fdf7cc7ce84084ea2135ffadd23f4dd

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