Skip to main content

Note: You can find a more complete version of this document in the official documentation site for Dear ImGui Bundle.

abc

Dear ImGui Bundle: easily create ImGui applications in Python and C++. Batteries included!

Click on the logo for a complete interactive demonstration!

sources doc manual

Introduction

About Dear ImGui Bundle

Dear ImGui Bundle is a bundle for Dear ImGui, including various powerful libraries from its ecosystem. It enables to easily create ImGui applications in C++ and Python, under Windows, macOS, and Linux. It is aimed at application developers, researchers, and beginner developers who want to quickly get started.

Interactive manual & demo in one click!

Click on the animated demonstration below to launch the fully interactive demonstration.

Dear ImGui Bundle interactive demo
Dear ImGui Bundle interactive demo

This demonstration is also an interactive manual, similar to the online ImGui Manual

Batteries included

Dear ImGui Bundle includes the following libraries, which are available in C++ and in Python:

Dear ImGui : Bloat-free Graphical User interface for C++ with minimal dependencies

demo widgets imgui

ImGui Test Engine: Dear ImGui Tests & Automation Engine

demo testengine

Hello ImGui: cross-platform Gui apps with the simplicity of a "Hello World" app

demo docking

ImPlot: Immediate Mode Plotting

battery implot

ImGuizmo: Immediate mode 3D gizmo for scene editing and other controls based on Dear ImGui

demo gizmo

ImGuiColorTextEdit: Colorizing text editor for ImGui

demo widgets editor

imgui-node-editor: Node Editor built using Dear ImGui

demo node editor

imgui_md: Markdown renderer for Dear ImGui using MD4C parser

demo widgets md

ImmVision: Immediate image debugger and insights

demo immvision process 1 demo immvision process 2

imgui_tex_inspect: A texture inspector tool for Dear ImGui

demo imgui tex inspector

ImFileDialog: A file dialog library for Dear ImGui

demo widgets imfiledialog

portable-file-dialogs OS native file dialogs library (C++11, single-header)

demo widgets portablefiledialogs

imgui-knobs: Knobs widgets for ImGui

demo widgets knobs

imspinner: Set of nice spinners for imgui

demo widgets spinners

imgui_toggle: A toggle switch widget for Dear ImGui

demo widgets toggle

ImCoolBar: A Cool bar for Dear ImGui

demo widgets coolbar

imgui-command-palette: A Sublime Text or VSCode style command palette in ImGui

demo widgets command palette

A big thank you to their authors for their awesome work!

Easily port your code between python and C++

The python bindings are autogenerated via an advanced generator (so that keeping them up to date is easy), and closely mirror the original C++ API, with fully typed bindings.

The original code documentation is meticulously kept inside the python stubs. See for example the documentation for imgui , implot, and hello imgui

Thanks to this, code completion in your favorite python IDE works like a charm, and porting code between Python and C++ becomes easy.

GPT can help you translate between C++ and Python: see this conversation where GPT4 was used to translate code and summarize the differences between the C++ and Python APIs.

Build and install instructions

Install for Python

Install from pypi

pip install imgui-bundle
pip install opencv-contrib-python 
  • in order to run the immvision module, install opencv-python or opencv-contrib-python

Note: under windows, you might need to install msvc redist.

Install from source:

git clone https://github.com/pthom/imgui_bundle.git
cd imgui_bundle
git submodule update --init --recursive 
pip install -v . 
pip install opencv-contrib-python
  • Since there are lots of submodules, this might take a few minutes

  • The build process might take up to 5 minutes

Run the python demo

Simply run demo_imgui_bundle.

The source for the demos can be found inside bindings/imgui_bundle/demos_python.

Consider demo_imgui_bundle as an always available manual for Dear ImGui Bundle with lots of examples and related code source.

Install for C++

Integrate Dear ImGui Bundle in your own project in 5 minutes

The easiest way to use Dear ImGui Bundle in an external project is to use the example provided in example_integration. This folder includes everything you need to set up your own project.

Build from source

If you choose to clone this repo, follow these instructions:

git clone https://github.com/pthom/imgui_bundle.git
cd imgui_bundle
git submodule update --init --recursive 
mkdir build
cd build
cmake .. -DIMMVISION_FETCH_OPENCV=ON 
make -j
  • Since there are lots of submodules, this might take a few minutes

  • The flag -DIMMVISION_FETCH_OPENCV=ON is optional. If set, a minimal version of OpenCV will be downloaded a compiled at this stage (this might require a few minutes)

The immvision module will only be built if OpenCV can be found. Otherwise, it will be ignored, and no error will be emitted.

If you have an existing OpenCV install, set its path via:

cmake .. -DOpenCV_DIR=/.../path/to/OpenCVConfig.cmake

Run the C++ demo

If you built ImGuiBundle from source, Simply run build/bin/demo_imgui_bundle.

The source for the demos can be found inside bindings/imgui_bundle/demos_cpp.

Consider demo_imgui_bundle as a manual with lots of examples and related code source. It is always available online

Closing words

Who is this project for

As mentioned in the intro,

Dear ImGui Bundle is a bundle for Dear ImGui, including various powerful libraries from its ecosystem. It enables to easily create ImGui applications in C++ and Python, under Windows, macOS, and Linux. It is aimed at application developers, researchers, and beginner developers who want to quickly get started.

Dear ImGui Bundle aims to make applications prototyping fast and easy, in a multiplatform / multi-tooling context. The intent is to reduce the time between an idea and a first GUI prototype down to almost zero.

It is well adapted for

  • developers and researchers who want to switch easily between and research and development environment by facilitating the port of research artifacts

  • beginners and developers who want to quickly develop an application without learning a GUI framework

Who is this project not for

You should prefer a more complete framework (such as Qt for example) if your intent is to build a fully fledged application, with support for internationalization, advanced styling, etc.

Also, the library makes no guarantee of ABI stability, and its API is opened to slight adaptations and breaking changes if they are found to make the overall usage better and/or safer.

Acknowledgments

Dear ImGui Bundle would not be possible without the work of the authors of "Dear ImGui", and especially Omar Cornut.

It also includes a lot of other projects, and I’d like to thank their authors for their awesome work!

A particular mention for Evan Pezent (author of ImPlot), Cédric Guillemet (author of ImGuizmo), Balázs Jákó (author of ImGuiColorTextEdit), and Michał Cichoń (author of imgui-node-editor), and Dmitry Mekhontsev (author of imgui-md), Andy Borrel (author of imgui-tex-inspect, another image debugging tool, which I discovered long after having developed immvision).

This doc was built using Asciidoc.

Immvision was inspired by The Image Debugger, by Bill Baxter.

License

The MIT License (MIT)

Copyright (c) 2021-2023 Pascal Thomet

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Alternatives

pyimgui provides battle-tested comprehensive python bindings for ImGui. I worked with this project a lot, and contributed a bit to it. In the end, I had to develop a separate project, in order to be able to add auto-generated and auto-documented python modules.

Dear PyGui (repository) provides python bindings for ImGui with a lot of addons, and a more pythonesque API, which makes it perhaps more suited for Python only projects.

About the author

Dear ImGui Bundle is developed by Pascal Thomet. I am reachable on my Github page. I sometimes blog. There is a playlist related to ImGui Bundle on YouTube.

I have a past in computer vision, and a lot of experience in the trenches between development and research teams; and I found ImGui to be a nice way to reduce the delay between a research prototype and its use in production code.

I also have an inclination for self documenting code, and the doc you are reading was a way to explore new ways to document projects.

How is Dear ImGui Bundle developed

The development of the initial version of Dear ImGui Bundle took about one year at full time.

The bindings are auto-generated thanks to an advanced parser, so that they are easy to keep up to date. I’ll give more information about the bindings generator a bit later in 2023.

Please be tolerant if you find issues! Dear ImGui Bundle is developed for free, under a very permissive license, by one main author (and most of its API comes from external libraries).

If you need consulting about this library or about the bindings generator in the context of a commercial project, please contact me by email.

Contributions are welcome!

History

Three of my past projects gave me the idea to develop this library.

  • ImGui Manual, an interactive manual for Dear ImGui, which I developed in June 2020

  • implot demo which I developed in 2020.

  • imgui_datascience, a python package I developed in 2018 for image analysis and debugging. Its successor is immvision.

Developments for Dear ImGui Bundle and its related automatic binding generator began in january 2022.

Download files

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

Source Distribution

imgui-bundle-1.0.0.tar.gz (60.3 MB view details)

Uploaded Source

Built Distributions

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

imgui_bundle-1.0.0-cp312-cp312-win_amd64.whl (74.6 MB view details)

Uploaded CPython 3.12Windows x86-64

imgui_bundle-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl (70.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

imgui_bundle-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

imgui_bundle-1.0.0-cp312-cp312-macosx_14_0_arm64.whl (34.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

imgui_bundle-1.0.0-cp312-cp312-macosx_11_0_x86_64.whl (67.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

imgui_bundle-1.0.0-cp311-cp311-win_amd64.whl (71.5 MB view details)

Uploaded CPython 3.11Windows x86-64

imgui_bundle-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl (56.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

imgui_bundle-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

imgui_bundle-1.0.0-cp311-cp311-macosx_14_0_arm64.whl (28.6 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

imgui_bundle-1.0.0-cp311-cp311-macosx_11_0_x86_64.whl (52.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

imgui_bundle-1.0.0-cp310-cp310-win_amd64.whl (68.3 MB view details)

Uploaded CPython 3.10Windows x86-64

imgui_bundle-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl (41.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

imgui_bundle-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (40.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

imgui_bundle-1.0.0-cp310-cp310-macosx_14_0_arm64.whl (40.5 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

imgui_bundle-1.0.0-cp310-cp310-macosx_11_0_x86_64.whl (38.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

imgui_bundle-1.0.0-cp39-cp39-win_amd64.whl (65.2 MB view details)

Uploaded CPython 3.9Windows x86-64

imgui_bundle-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl (27.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

imgui_bundle-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

imgui_bundle-1.0.0-cp39-cp39-macosx_14_0_arm64.whl (34.4 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

imgui_bundle-1.0.0-cp39-cp39-macosx_11_0_x86_64.whl (23.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

File details

Details for the file imgui-bundle-1.0.0.tar.gz.

File metadata

  • Download URL: imgui-bundle-1.0.0.tar.gz
  • Upload date:
  • Size: 60.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for imgui-bundle-1.0.0.tar.gz
Algorithm Hash digest
SHA256 7bdc4e74a0d281bf77a5fbbbfb96a7b45120ff0a0fe3f2a809cee95d06c494de
MD5 e8b79af709f36f6af905d8cbd50a2ad2
BLAKE2b-256 06f8505d73f849f58f912962c1a80151fc0a41bc8962a931ab4335d74f5dcc1b

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7c55dbfbfe1a372e972375b56c944e39c8ee721daf3b451889bfc0779109fe4d
MD5 7bba676244e311da8af80c0e9cce1772
BLAKE2b-256 b36e3d92e001be170e793a52ab1efd429b08c0ad0dc05d2a4e0546e73922fb5d

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2bcf25ac5f55e76b226c8dbca9c7c809eb4136f72c1d5d61b716ba3969dc291d
MD5 924dffb3fec72d79e0d1223e0ad5187f
BLAKE2b-256 a0db1681fc26fbcd57ef3f17ccaa9b5fe3be8c496278097463bff6b11993eba4

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4281e707b7c81b69c01f4fbe06355e19f645f59000e30aeb01100e759088b546
MD5 f532df3503730c3a42f5f407b5847588
BLAKE2b-256 0e024adb65a973336d24b93563054de3f03da492f0575d126d1f64ec483e6dd0

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 08ba4295e2855deb56220fa5a2ddae2060917ec452f2b33f4209740873487148
MD5 7eea36a873b1e734bee8f624e277fbe5
BLAKE2b-256 fa631475da4b358c2c450cecedbc1a6515aca107d18a52d18a53301090e106cd

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 049f58be9798e282abcf9b5967a5f0cf94ff0d0d98033c87ec76d8af80eae108
MD5 bbfd35aaac50551ed0e79f0be7608e43
BLAKE2b-256 197a778a91a5e0f6bf99b3822301656c9e0bb85cb73c06d48faac0abb8e8767d

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e60420c0a720a70b6ad71d88ef82cff5ade534ca5db10c110b746f7c418c7330
MD5 cd4127e74164629097ca015a3bffca7a
BLAKE2b-256 3346fa8b12ddb2713655c411597f64f40e7b57fcfdd4baaa05f49af0917e62cc

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c5ceb2bf0af8da2e8bb10e8f2c96983739115cbab5243513154e2e7684367a64
MD5 5009b8fff66777367bd0046da68ebf9f
BLAKE2b-256 110623c0cf633e628d3202c7985ff0bd9d48d76ad046f589b38dc2174066c50d

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84af6d9a6be423da71cd6e3820c6ea55f0046b77f9529a5c1911b4278067b995
MD5 fe8ea10d30265410fab479f259f6d6ca
BLAKE2b-256 a5e5c5ae66584c8657880c43c102a296db2e0952255399350ca0fa412848d2a2

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e20d6bb5c5ff2f8307b9c4317481297bd215033f363c513d857e8d27bd8b9289
MD5 41f8298196dae1581d90b3cfcd170252
BLAKE2b-256 77e7315695fb627daab85c023ba8a4be988a665d9665b157ee4f2cef2ca002d9

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 734cb31dfcce60345bd288578d857117d3fc3f8988de11938638279374e4a43f
MD5 b4035056faf2fca3c7672e9683c7e538
BLAKE2b-256 0ef2be065fd3469b76ab39143790625c1a23b3b61809fcef6232c23a47ec5851

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ab387f59046cf76f1d71cf49f7f198c2293918b6065968815355fc7ededd14d6
MD5 64616058aa00f16f37174477ea57c7ae
BLAKE2b-256 628f281ead3596058b14e906c9bb5f28e420815a2ba689920ea22445b0022035

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f9e067f79cf2824baf85b9f01ef1bba82b8f9e0f5bc4910f960718e8cd552a8e
MD5 6e5b6a9430df1bb56165434cddd2f796
BLAKE2b-256 310361a08d2e320ea3f1e0c987c034e0bb24502a278d0ac486904470c5b4a70c

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ef5a900c976d76d6fab16b67fadd95ca400c13f89d0914bf235f995deb1cdfc
MD5 69904d9298b07dd93a82ffa5061c38e7
BLAKE2b-256 0d61b437d948f5df89caf2f090af291aa308deaa835c7e144da9abdb15515030

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c26d46a29b1e96a153745591af4455e1a74d197fad8df870aacc19e47750d70e
MD5 92ad692a99ae835c489ca2cdb5191667
BLAKE2b-256 e522c236712a882e0107f7751e198eed7e2b7b13ef7d5c671a1ae7e0dbfbddf5

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cd9078e75d257f5906096aa073110b964616acd361ba1a8aed126ccf34077de7
MD5 7632ca2d7b5d0a095daec3d6db31c947
BLAKE2b-256 522152e00e242fffc304c0247ea0c5eddde907386911e225ef28ffe03623fd50

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: imgui_bundle-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 65.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for imgui_bundle-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5b1c03d0920bc367266ccabbf0be93724cf73eadb574aefb7f9e43f26e2c25de
MD5 b249e08de2c605c6bdd0c641a53f02d2
BLAKE2b-256 b12bad7dad5024e3136bcf09e6991e05ad8ed8b4e1821fecde7743d92c655180

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e0b8dcad37f5edc91b3934ece3e5bff0f7e693a531533c8bb522f2c9f87c0bf3
MD5 a572a183d4d00c2f3534998bd600b1a4
BLAKE2b-256 4a29e0923efbfd567a9b59739a250681b68b97d25c8ad917ace386e6db253cb8

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdf5cf967b4474f267b08b01ceb656a78ab2935717b3037c1704fd25fa5745b4
MD5 9b6b5174950958df35fb32ca7ff4790c
BLAKE2b-256 c171aaa3d61d6b77c855b6d17a4fea3b91f06053d975b3ef420d574875b948fe

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 441c54243080e1bfbb6a27fde6fc39a45f219fd8679544bb008a6be2b223d8c8
MD5 e785cddccccc8b445edaccab206dda74
BLAKE2b-256 cd3fc082e3429b77cf9851d56c96181f88c2a383a00c23be074bebd7e7371a10

See more details on using hashes here.

File details

Details for the file imgui_bundle-1.0.0-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for imgui_bundle-1.0.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ef28e5af8db9984c6fc2ef5da4bf2d6f819e89447a0a613e65bc41e9bda24054
MD5 6fec651b394118f0230409185c1d4003
BLAKE2b-256 f349f231a1dc0ac4cf72f6083ec18961cc4a48a2b7b23f2bec07c4e9e0eb6001

See more details on using hashes here.

Release history Release notifications | RSS feed

1.92.900

30 files

1.92.801

30 files

1.92.700

29 files

1.92.601

29 files

1.92.600

25 files

1.92.5

21 files

1.92.4

16 files

1.92.3

16 files

1.92.0

16 files

1.6.3

16 files

1.6.2

16 files

1.6.1

16 files

1.6.0

16 files

1.5.2

19 files

1.3.0

16 files

1.2.1

16 files

1.1.0

16 files

This release

1.0.0 This release

21 files

0.9.0

21 files

0.8.8

16 files

0.8.7

16 files

0.8.5

16 files

0.8.3

16 files

0.8.2

13 files

0.8.1

16 files

0.7.2

16 files

0.7.1

13 files

0.6.6

36 files

0.5.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page