Skip to main content

Cython-based Python bindings for dear imgui

Project description

completion Documentation Status Build status

pyimgui

Python bindings for the amazing dear imgui C++ library - a Bloat-free Immediate Mode Graphical User Interface.

Documentation: pyimgui.readthedocs.io

Installation

pyimgui is available on PyPI so you can easily install it with pip:

pip install imgui[full]

Above command will install imgui package with additional dependencies for all built-in rendering backend integrations (pygame, cocos2d, etc.). If you don't want to install all additional dependencies you can always use bare pip install imgui command or select a specific set of extra requirements:

  • for pygame backend use pip install imgui[pygame]
  • for GLFW3 backend use pip install imgui[glfw]
  • for SDL2 backend use pip install imgui[sdl2]
  • for Cocos2d backend use pip install imgui[cocos2d]
  • for pyglet backend use pip install imgui[pyglet]

Package is distributed in form of built wheels so it does not require compilation on most operating systems. For more details about compatibility with diffferent OSes and Python versions see the Project ditribution section of this documentation page.

Project status

The imgui package provides support for the majority of core DearImGui 1.82 widgets and functionalities. Some low-level API elements and complex widgets (like plots) may be missing. We are working hard to provide 100% feature mapping of the core ImGui library. The completion badge shows up-to-date status of that goal.

Project distribution

This project has a working build pipeline on Appveyor. It builds succesfully for all major operating systems with different architectures:

  • Windows (32bit & 64bit)
  • Linux (32bit & 64bit)
  • OS X (universal build)

Right now we are ready shipping the built wheels for these three systems (even for Linux using manylinux1 wheels). The build pipeline covers multiple Python versions:

  • py36
  • py37, pp37
  • py38, pp38
  • py39, pp39
  • py310
  • py311

Note: We dropped support for py27, py33, py34, and py35 starting from release 2.0. Those were supported until release 1.4.0. Pypy is only supported since release 2.0.

If none of these wheels work in your environment you can install the imgui package by compiling it directly from sdist distribution using one of following commands:

# will install Cython as extra dependency and compile from Cython sources
pip install imgui[Cython] --no-binary imgui

# will compile from pre-generated C++ sources
pip install imgui --no-binary imgui

pyimgui provides documentation with multiple visual examples. Thanks to custom Sphinx extensions, we are able to render GUI examples off-screen directly from docstring snippets. These examples work also as automated functional tests. Documentation is hosted on pyimgui.readthedocs.io.

Contributing

Contributions are welcomed. If you want to help us by fixing bugs, mapping functions, or adding new features, please feel free to do so and propose a pull request.

Development tips and information for developers are given in HACKING.md.

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

imgui-2.0.0.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

imgui-2.0.0-pp39-pypy39_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPy Windows x86-64

imgui-2.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

imgui-2.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

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

imgui-2.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

imgui-2.0.0-pp38-pypy38_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPy Windows x86-64

imgui-2.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

imgui-2.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

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

imgui-2.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

imgui-2.0.0-pp37-pypy37_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPy Windows x86-64

imgui-2.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

imgui-2.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

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

imgui-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

imgui-2.0.0-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

imgui-2.0.0-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11 Windows x86

imgui-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

imgui-2.0.0-cp311-cp311-musllinux_1_1_i686.whl (8.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

imgui-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

imgui-2.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.3 MB view details)

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

imgui-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

imgui-2.0.0-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

imgui-2.0.0-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86

imgui-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

imgui-2.0.0-cp310-cp310-musllinux_1_1_i686.whl (7.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

imgui-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

imgui-2.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.1 MB view details)

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

imgui-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

imgui-2.0.0-cp39-cp39-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

imgui-2.0.0-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86

imgui-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

imgui-2.0.0-cp39-cp39-musllinux_1_1_i686.whl (7.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

imgui-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

imgui-2.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.1 MB view details)

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

imgui-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

imgui-2.0.0-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

imgui-2.0.0-cp38-cp38-win32.whl (1.6 MB view details)

Uploaded CPython 3.8 Windows x86

imgui-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

imgui-2.0.0-cp38-cp38-musllinux_1_1_i686.whl (8.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

imgui-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

imgui-2.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.1 MB view details)

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

imgui-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

imgui-2.0.0-cp37-cp37m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

imgui-2.0.0-cp37-cp37m-win32.whl (1.6 MB view details)

Uploaded CPython 3.7m Windows x86

imgui-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

imgui-2.0.0-cp37-cp37m-musllinux_1_1_i686.whl (7.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

imgui-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

imgui-2.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

imgui-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

imgui-2.0.0-cp36-cp36m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.6m Windows x86-64

imgui-2.0.0-cp36-cp36m-win32.whl (1.6 MB view details)

Uploaded CPython 3.6m Windows x86

imgui-2.0.0-cp36-cp36m-musllinux_1_1_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

imgui-2.0.0-cp36-cp36m-musllinux_1_1_i686.whl (7.7 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

imgui-2.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

imgui-2.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

imgui-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file imgui-2.0.0.tar.gz.

File metadata

  • Download URL: imgui-2.0.0.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0.tar.gz
Algorithm Hash digest
SHA256 2fbdb8eed3b8dbd7ea98af9e4c1c6582b0bc4da942a258de16333d8c653d67e1
MD5 2adb93f700962ea0ff1453015e3c0f3d
BLAKE2b-256 f1aa4abb0d3d6054da9a4390160fc25ca743a824263a9931cc6a95f30e3d75b4

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c93d2bbeac28661efaef263f7ef139269358d42e9002357ee96d901ff851fc59
MD5 1712411a8d8a4ed890b8692fb863da91
BLAKE2b-256 9cb2e17be3499a3f28fd814491337e0b0fffaea5b6342c53a75a3dae85a7bd40

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d4dd5551d2140980fb533d7a35d7efefd5060199d9cdf0ce3e65bbb27264090
MD5 6a240a2783bb5bc017717d3378e106b4
BLAKE2b-256 7384a92531de27beb6862e0023b4aa8453a2153cf24810feb2c318fa2d04f190

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac287738a6add06da73ecc7d9a0227e74f3d013c9aace17f4014814b35e85dbe
MD5 8367486178a825d26b7789697305b508
BLAKE2b-256 63640393f84e66fc955945084a58f8cc8e20919869c5580ff853043c782a843a

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 adfd23b70ec4696a9128f64228a471fda9d2a709ab6c46affadb5ceb2b620626
MD5 93d2100e34076d3de4fe240499bdc812
BLAKE2b-256 68586cf1e769aedab5df5ece7bcfd35da2a071171f8925fff930f54af327b5e5

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4ae29fb159f83561d2fb5659509de9c34113ba46c8d7c066279fdddac391545e
MD5 a97384bd3c08bfcafc9fbc14949a0440
BLAKE2b-256 046334de0b6486417014cda62c1f747da2abc2371cf0619d6a0d89e9585cfd0a

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0e61e7f5f42391f149bfbd7196148a4009a446c7663b69fea0629ff7b857f38
MD5 b18a70980473e4e6212ba877a3e13173
BLAKE2b-256 70edc205e39405044d54ccfa98d3f6ef8233a6d2b8248aaef8f2f0dcbe2276a9

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bce66afefbc6cb383c19405255a3333eef10b5082e54d7fff075244aa8ac8cf
MD5 f63224c302d42b4c180f22edd8ccd778
BLAKE2b-256 ce9449a3300ccb48978a00c00f74735147a21f2c91482b2c513f65d6187a5860

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7541813f477e407db32e0242880205f4b46d23c72e16dd3f1890dd853e7549d
MD5 2c650d42ce7e6bfc637ab900daf7c3c0
BLAKE2b-256 9621ce262bbf6c3465fecb052a56633d154325d63c1d6991319b76b58fbcb32b

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5899bf6c8492c60b1e36dfcc850bdf27da3cc90d596cdfff7e563ecfedfa269b
MD5 b561ef34f308358613bf3a164df0ace5
BLAKE2b-256 7dd8c39ae2b85abfd10a83891f7268219df0fe1ec65ac463995fe57a104e18be

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bc50d3b4464f8b9465ab220854ea1131166af0717c963a3a175b3c7966a029e
MD5 370851b8eb9cb00eeab5ccb6b84edb82
BLAKE2b-256 36d791bfa01c45c62ebd7e2c2e53752018f84c7099447ed0a6f30ba726237c4b

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c30c11780982eeb619b6badcccab2eb90acf6141d9610902679b44fbaf588310
MD5 10027c6ed58d0cd4f624e793c91aed72
BLAKE2b-256 43b6724ceb11ab063e68a4dc91e37d569798bda611e3484e4a4c3334c69c42a3

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ef6411f9a2f1e528894bc184f4505b935aff0d80e258e38e91ab06e308b6ae8
MD5 f61cf643b13290f705e4abeb0cd928a7
BLAKE2b-256 5cef812701cef5a5b2b4c2376933fc131a0da089ce233317a1a27b3a619e91c8

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: imgui-2.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c1af2761708c40c852053dd0a7d570ea0241a75ad3c27d7b55430b12003198e0
MD5 080751683f3ebf1277b64649f22273f0
BLAKE2b-256 371213301cb057f320af784957f64a994888de24327d6dbd6cf56251d5d36706

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: imgui-2.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c4ea5d971bb781ec06697b72ecfa802548ebdd1f5144353d530982c1ef1d86b1
MD5 a4bf80aa8501ae23b6cf5d75de1d481b
BLAKE2b-256 6af8a2c6b087102e59390dd15f51a257ae0412506eeb04741e9a36c0ed0dee4d

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ffcd54fb088d20ce682cba3ade24831fbbdd620807e20ab147ab0083111d0243
MD5 76c9490d89725989fbe150f4970b1b77
BLAKE2b-256 1e77f3ea0c758712a60d671ff00290d3fd39c42b3e8720f03f0f5a01434599a9

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ea6d37ef37e4acaa6e9ea0111cb4a61db6ed32c44164ac8bebe96b01036387bd
MD5 5d9f2f025ec4214a50a7131abfbb0671
BLAKE2b-256 cf99cd6c10475b6df54104dad94793d79bd8fef6560d98481df39595ebdab342

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aba45749ee9356202d10661f1390b75a701c0540e8d3bd3f7e51dafbf6cf36f6
MD5 84b7af70a50e46ddec9480bcf986c141
BLAKE2b-256 b6ea8c1755d09c58d60bfef5791d59d68390fc3e8f538ec8732bbfd5dc9c0791

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f4fa4b7b2c917446ba285541574775fd61a4c5c23050989314961ea06c59ad1
MD5 f92ef41a08ad417fd26d6f3d986a4abd
BLAKE2b-256 9aa3c3ac78493b61493d15c77748401e5ebcd3eb7dba8d90854c8f854f621f6c

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d7449ca6380420ccfcf8d8483cb5ad838e222bf55347fbeeba51181ba9b721d
MD5 0012f99a1d18195896e1a61f3364a640
BLAKE2b-256 5c4343da1d39de98b8ebbfb2a081d1087260d95b2a14cb303f1d1e7b7876bcc5

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: imgui-2.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 377a210a1c118a19b70f6127384772f352bc4d5e78028a948db6182e37b6e343
MD5 593d95d62cd64207a803beb055ea74c2
BLAKE2b-256 8150052914d9cc0ed965a5ade46639463cf8ba04827d4e29fd4361bc17260f5a

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: imgui-2.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3da16856d89de0f1c0c0d9732d2a1dfc7ed68182545a7a6e87ecd74b93e52da0
MD5 d06b6895488b4bbde7345b1dcfb68b0c
BLAKE2b-256 27a275a0aa40431662bc0cc5132732f710fa142ad4123cb89e07bd0e0cb2f8b5

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d5e028485346057f286d9116e7bbed4e38da9990da41cdc8efc26d3bc6e010c9
MD5 9f7254869c25a95e0f8ceab92792233a
BLAKE2b-256 5a3cb7b56117ad3e2115d27d13c0b082aee05ef9f1a90f76d8a789e34ab88333

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6602d18ed735766e08cb4fb9e1c9fd420be96f8112f7357134dadd3a848a51ce
MD5 255bdf1e7890807e3dcb661637b88030
BLAKE2b-256 402bbcd105d3c422722be5ee034892b690d406080721aafebbd47de30fdb625e

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6e3a48cdd5b1289bbf6a3477b86712528d3bf3f1b74f5a481647581830527ba
MD5 fe407b495cdc698f366907ee9a9cb598
BLAKE2b-256 a2bc343d101ff86f45a19edf2a2c9d834a1930cc1fa2725d5077b633bdc12f80

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c1a88dd008046d19f9e9df95e34a8df8908007be76aefcd6a36aad759b6fe7d0
MD5 e808d038a8c33dff0204fed2b6fdd419
BLAKE2b-256 1d258fede9f8f25b2e038d5f712097b2e719042509bb44842af9e0db0e6d0019

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5876314bd7137115325d843e6985c1d939b7ab992bdc4259cbcd178988d02944
MD5 07e7623d66dd6b9b995e0848a2c1060c
BLAKE2b-256 c7d7632d1385bbf330afe871e50ecde979ab6caeba7ef25aa1c557079d288458

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: imgui-2.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bead8db082403dde37429a14b439df6fada0c909a0f06fb310c1dec94338dad4
MD5 7f4f60d381806a0157094dde74ad2f12
BLAKE2b-256 44ddab15393a50818efb99db5fd35c8b72090dfdd2aa80af1706f74c66188b9b

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: imgui-2.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e086cb9d1709b0391a06d43f1cecaa3bc384382dac3d3ca8489937050cd85efc
MD5 3d5b72e778e32a4154678c805d5af393
BLAKE2b-256 2553f51d1ff03779d7ea7a54670d57d9d49c2c61784b8a3b79ee1a60d9ae6741

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f2448957ab4052d1a69e2e134a36d2a87c7599834639385daa88f62ac5302154
MD5 66bd5a943d132f08d7f5355cbec4a9be
BLAKE2b-256 36e09bc1ac27d29b79ebf6a00dcf1246112f999e60ae5736bc6af835247f1881

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cc2c7074e07ca9802089c17ddc3a7c3059d0848c7c596a22e5aa86026d99cc18
MD5 f3a89eae6194e4fa7cd447bc8c67eeed
BLAKE2b-256 a5b6804c05bc617fcd54591f98e26f26b16effda9022deb06981e80f13d1465b

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14fcacd6645fbcc0770d4f746abb4ee631a694895f58aef0e0d2976eab431226
MD5 0476dddd57c11c41946f0e2ce70a1af1
BLAKE2b-256 ccb921278c73e817f0bbaa2b8b170042a4a31d52f61254b19990a881ac8c760e

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1f5c95505c73cd03f70d348e3f15ee2baa72b2251a636c09095b2a312c9a582
MD5 a4380cfaa10ba8e3d0ac42c592d6d667
BLAKE2b-256 318dd91496c86ad1ede3788d05208e7c0dd2f34872aa42e81ce3f66578b1da71

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbea38112f8b4c232ef065a537266f561f952324d19409ebb0e7221648632dd3
MD5 c03c70e7d31b324588199b2f0704c301
BLAKE2b-256 ad7e416a3c6ca1cb2ccd4b6753dce3eb7796431e05bbd3d99a2bf8a99468436f

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: imgui-2.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ff0aa7736067ae5d4d0d118902d339fd1133f2dd2181cafc3b246391a4f036a1
MD5 4ef235116276473782891aa39936b57d
BLAKE2b-256 885d26c661ed65a5f3856c8a06abf6a1a00503466c9e574f426679d5e381d816

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: imgui-2.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 385dbd48aa5abd297b5b9b665bd2806fbcf57c2d0f4a3b4f609bf64cc0487202
MD5 e347ed3cab542b3f563bd188930aa7ea
BLAKE2b-256 283fde559ed3f6185542feeba74f358bec72a66102ba94cac437913384f3e8b9

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e9c5985f24671571a94f21f793b487d2b775a5d96092145c2c242b8aee29e487
MD5 ad68dab1eda63cdf7b5372ee0c63e084
BLAKE2b-256 89b274168e3956f4b481ebb1e9b4b8a66c176d0da7c461708524bed484946613

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f5775be372ff7154a728a8add224560c2c7654a9c902b1feb524f9342747051e
MD5 9e50a7908732705a4ae0d3953482a165
BLAKE2b-256 0e072da6d9981965f8dede149d540520f8629946d0f01432da01e832c8eaa7e1

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3811b91e818eafa924116628b400294d023819efceb71a7ed2e4b7a6b3727ecb
MD5 8c89db1fb6c10839e4cba52dee0eb001
BLAKE2b-256 b62070e0d022d917a92ddf0f46b6dec00ce7061f545a6446f26559e257c962e8

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 66a5a3ea2c5487b83fc99d56d56df3f23b49010c2f65162ae318076beecd387d
MD5 47b7fa1d62c13eed47d5ae2037c51122
BLAKE2b-256 70130771a69bc55de11810216427dc23e819eb4545cf3ef46aaae1025c950799

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 206f217a71055d12f8395aca14a3c9e60a6411fc852791bb5e108834953ffcc6
MD5 8916ca89a3a95765e0e21ebf4db1cb44
BLAKE2b-256 e9a9b5ef742bf97487a835bf99f8f478d5d51a4cb563143fa51d7ad70a82f694

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: imgui-2.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9015a85e90be27ab8c7d730fa1fd876fac3407b8c369fbe29fa290ed044eff79
MD5 d4de1c44bbb33c8b0f00a4fb0ef673d4
BLAKE2b-256 3293ba0857ef710223f8023bd5885eac8360d39145d64b8d0957b5d3f55c4db4

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: imgui-2.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f619b045688abad4ccc1896dd911d54006fdcf33da2453b9987e803b63a9a6da
MD5 c730f01d64f3ff32c869f85edd470a22
BLAKE2b-256 9066103c034dbe4600a1ffbf71bd13b02c0c24456b4ea17157df4c92943efd12

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b22f30c640a48d2e03a85bf91f80d6ed5fa6a7d0b40643e423ccf1f8411d5612
MD5 fd8b033fbeda25e9b5771a0ebfab21f2
BLAKE2b-256 d3d719e70773f14e774aa0839f68f98054c7dc9474b50b87f67891789816db69

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0fc382e0d3fea4da7a88a5fcd395e028722fda1bdbbe4936071f4cb0420f9dd5
MD5 136ecea99596acbe439a22ade22cb94c
BLAKE2b-256 23ad40a0be03e95f6e51af6c8133e843fd500897006fada0cc70bf214e2ab70f

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c32b442874bae79b358cacfd30be416430c8af97f9c5edcba4c22375b58fc1ed
MD5 b359f309175b4313d11b554512fe32da
BLAKE2b-256 f124018963c8e9325b046142e021285d0761b8e9e626abff5630464ba28e28b7

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59cf4cce7642305b28c5b961392a7e5a72537036c84ba5fde2a6bf10c154a27b
MD5 cc504dca6ee5183aea388c578ed53f3a
BLAKE2b-256 19afdea99e774b7a900cdf674451734b287964e5296cf6e370043a9633eb55c1

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7ace8c05a17b359ddbc89882c4c0fc698d537eb9a0410254caaa0829003fa01
MD5 58303c8eaae6f2c59a164d9aeadbe37d
BLAKE2b-256 a517cce594fff81749a588b1066ca2995079ec6100e5caac98fce0ea48dd8843

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: imgui-2.0.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 23f67fc8789e1e56c8990783dc78031b6b196f37109fb6808389cde7c3fd1bb0
MD5 29dab9bed0e6f5abd8d2f52a5681daf9
BLAKE2b-256 2665c23c82abfee08e272439eb095a0caa60df5f6ef19bfde9a02d8d4e3e0dd0

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: imgui-2.0.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.7

File hashes

Hashes for imgui-2.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 94a100c9050fb41cc043076517f1adb41cb38f0bfeaf84d21452a89ec500969f
MD5 5266c4788e90380161c4447ba5f3b917
BLAKE2b-256 c50110be08090b87000283e762d715d1ce3fa0eb0add299d21713d5bb6191dcd

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a0a333d1745721fd23bb8015fdd34deb0d6e9a2450c993506688742b9c5a0941
MD5 56ab885efd645cfc6e394742f2aad8d7
BLAKE2b-256 77a650cebaf1906bd383cf8530d3b3de3c5c2aef5a30a7e318927b337b4488fe

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b994278d0d90348a471f884930e2bd731ed92b2ae36171efdc645ffc2a64db4e
MD5 8eb9526a0850372fb33afb59d39e0543
BLAKE2b-256 c5b37e025ad6a6e35e6dee59c6f2ae3a8cb26f0829260806793aab14b7d7a8c8

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51b7084e11a50a84e09d2e5baf18926a165676325951929eb53d5936b3971eb3
MD5 9b50c79119c80032e857e3bada3aefe1
BLAKE2b-256 909e9ab4a90fb9bb09fe1d7bf6fee84f8bbd90878093f3cbd7f9b8d7394a4f6b

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 772283312cda96d0a33cc7102c644a4b796b60fc51cd7e38c926e0d7d3c5e952
MD5 a37789b74ea35a76ba0d3d709d87f5c8
BLAKE2b-256 6103ac37a284f0af15497c6800389837852d7ae1981283a05891f9e9d80dde06

See more details on using hashes here.

File details

Details for the file imgui-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for imgui-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d09b85532124f2c3138bef243adc25fd57d81fa3a049d96c2a6f8c4383d90127
MD5 edf0c660aeaeacf5f099724a54846fdd
BLAKE2b-256 60b60f975fff930ef407a991600fcf0bd4a127f60048165ea42e0965de855116

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