Skip to main content

DearCyGui: A simple and customizable Python GUI Toolkit coded in Cython

Project description

MIT License

DearCyGui is a powerful, performant GUI library for Python that offers a refreshing approach to creating modern graphical user interfaces. Built with performance in mind, it bridges Python's ease of use with the speed of Dear ImGui through efficient Cython bindings.

Demo Screenshot

Key Features

🚀 Performance First

  • Blazing Fast Rendering: Efficient rendering based on Dear ImGui
  • Low CPU/GPU Usage: Renders only when needed
  • Multi-thread ready: It is safe and efficient to update the UI from any thread.
  • Smooth Animation: Maintains high framerates even with complex, animated interfaces

🧩 Rich Widget Collection

  • Core UI Elements: Buttons, sliders, checkboxes, input fields, and more
  • Advanced Components:
    • Color pickers with multiple formats (RGB, HSV, HEX)
    • Tables with sorting, filtering, and custom styling
    • Tree nodes and collapsible sections
    • Tabbed interfaces
    • Tooltips and context menus
    • Pop-up and modal windows
    • Build you own custom widgets and dashboards

📊 Data Visualization

  • Extensive Plotting Library: Built on ImPlot for high-performance data visualization
  • Plot Types: Line, scatter, bar, histogram, pie, heat maps, error bars, stem plots, and more
  • Scientific Features: Logarithmic axes, time series, annotations, and legends
  • Interactive Elements: Pan, zoom, and data selection capabilities

🎨 Styling & Theming

  • Complete Theme Control: Customize colors, sizing, padding, and more
  • Theme Inheritance: Create theme hierarchies for consistent UI design
  • Four Theme Types:
    • ThemeColorImGui: Control colors for UI widgets
    • ThemeStyleImGui: Adjust sizes and spacing
    • ThemeColorImPlot: Customize plot colors
    • ThemeStyleImPlot: Fine-tune plot styling
    • ThemeList: Combine multiple themes
    • Your custom items can adapt to the theme

💻 Developer Experience

  • Pythonic API: Clean, intuitive interface designed specifically for Python developers
  • Object-Oriented: Full subclassing support for extending functionality
  • Context Management: Use Python's with statement for cleaner code
  • Auto-Layout: Dynamic sizing and positioning with flexible constraints
  • Extensive Documentation: Comprehensive guides and examples
  • Asyncio compatible: Integrate the rendering into an asyncio loop, or use asyncio in your callbacks

🔍 Advanced Features

  • Drawing API: Create custom antialiased graphics with various shapes and advanced visuals such as dashed lines
  • DPI Awareness: Proper scaling on high-DPI displays
  • Customizable Tooltips: Add helpful information throughout your application
  • Font Support: Use custom fonts with FreeType rendering

Quick Examples

Basic Window with Button

import dearcygui as dcg

def button_clicked(sender, target, data):
    print("Button clicked!")

# Create context and initialize viewport
C = dcg.Context()
C.viewport.initialize(title="Hello DearCyGui", width=400, height=200)

# Create a window with a button
with dcg.Window(C, label="My First Window", primary=True):
    dcg.Button(C, label="Click Me!", callback=button_clicked)

# Main event loop
while C.running:
    C.viewport.render_frame()

Data Visualization Example

import dearcygui as dcg
import numpy as np

# Create sample data
x = np.linspace(0, 10, 100)
y1 = np.sin(x)
y2 = np.cos(x)

# Create context and window
C = dcg.Context()
C.viewport.initialize(title="Plotting Example", width=600, height=400)

with dcg.Window(C, label="Plot Demo", primary=True):
    with dcg.Plot(C, label="Trigonometric Functions", height=-1, width=-1) as plot:
        # Configure axes
        plot.X1.label = "x"
        plot.Y1.label = "y"
        
        # Add data series
        dcg.PlotLine(C, X=x, Y=y1, label="sin(x)")
        dcg.PlotLine(C, X=x, Y=y2, label="cos(x)")

# Main loop
while C.running:
    C.viewport.render_frame()

Custom Styling

import dearcygui as dcg

C = dcg.Context()
C.viewport.initialize(title="Styled UI", width=400, height=300)

# Create a theme
with dcg.ThemeList(C) as my_theme:
    # Customize colors
    dcg.ThemeColorImGui(C, 
        button=(100, 50, 200),       # Purple buttons
        button_hovered=(130, 80, 230), 
        text=(240, 240, 240),        # Light text
        window_bg=(40, 40, 50)       # Dark background
    )
    # Customize styles
    dcg.ThemeStyleImGui(C,
        frame_rounding=5.0,          # Rounded corners
        frame_padding=(10, 5)        # Padding inside frames
    )

# Apply theme to a window
with dcg.Window(C, label="Styled Window", primary=True, theme=my_theme):
    dcg.Text(C, value="This window has custom styling!")
    dcg.Button(C, label="Styled Button")
    dcg.Slider(C, label="Slider", min_value=0, max_value=100)

while C.running:
    C.viewport.render_frame()

Installation

pip install dearcygui

For the latest development version:

git clone --recurse-submodules https://github.com/DearCyGui/DearCyGui
cd DearCyGui
pip install .

System Requirements

  • Platforms: Windows, macOS, Linux
  • Python: 3.10+
  • Dependencies: freetype, automatically installed with pip. Does not depend on numpy.
  • Optional dependencies: skia-python (svg support), uvloop (faster asyncio), pymd4c (Markdown), numpy and imageio (Demos)

Documentation & Resources

  • Tutorials: Getting Started Guide
  • Demo Gallery: https://github.com/DearCyGui/Demos
  • Documentation: Extensive docstrings for all items. Documentation on the main concepts available in the docs folder
  • Examples: The main_demo folder contains a runnable and readable demo of most features

Why DearCyGui?

  • Unlike Tkinter/PyQt/wxPython: No complex layout managers or event loops to manage
  • Unlike other Dear ImGui bindings: Higher-level API designed specifically for Python
  • Unlike web-based solutions: Native performance without browser dependencies
  • Perfect for: Data visualization tools, scientific applications, mini-games, debugging interfaces

Community & Support

Credits

DearCyGui is built upon several excellent open-source projects:

License

DearCyGui is available under the MIT License. See the LICENSE file for more information.


Portions of this software are copyright © 2024 The FreeType Project (www.freetype.org). All rights reserved.

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

dearcygui-0.1.1.tar.gz (32.4 MB view details)

Uploaded Source

Built Distributions

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

dearcygui-0.1.1-pp310-pypy310_pp73-win_amd64.whl (3.8 MB view details)

Uploaded PyPyWindows x86-64

dearcygui-0.1.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (10.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

dearcygui-0.1.1-cp313-cp313t-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.13tWindows x86-64

dearcygui-0.1.1-cp313-cp313t-manylinux_2_28_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

dearcygui-0.1.1-cp313-cp313t-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

dearcygui-0.1.1-cp313-cp313t-macosx_10_15_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13tmacOS 10.15+ x86-64

dearcygui-0.1.1-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

dearcygui-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

dearcygui-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dearcygui-0.1.1-cp313-cp313-macosx_10_15_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

dearcygui-0.1.1-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows x86-64

dearcygui-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

dearcygui-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dearcygui-0.1.1-cp312-cp312-macosx_10_15_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

dearcygui-0.1.1-cp311-cp311-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows x86-64

dearcygui-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

dearcygui-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dearcygui-0.1.1-cp311-cp311-macosx_10_15_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

dearcygui-0.1.1-cp310-cp310-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.10Windows x86-64

dearcygui-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

dearcygui-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dearcygui-0.1.1-cp310-cp310-macosx_10_15_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

File details

Details for the file dearcygui-0.1.1.tar.gz.

File metadata

  • Download URL: dearcygui-0.1.1.tar.gz
  • Upload date:
  • Size: 32.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for dearcygui-0.1.1.tar.gz
Algorithm Hash digest
SHA256 9a7ab674c7e2ba00f6a14793ccad046ef98fccde48ab26773084aa3723e5a0f6
MD5 b222c79b5b2f0f518f4ddf21985214b4
BLAKE2b-256 f71e6db41d537056891f0071639ddf0b3de43eaf66e1cfb4832afcbb83d5b71e

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b010d0a13f39f585175d3535e26a27d62eae897986a12e9b9a5b51e610edd498
MD5 f9968e7a39195cef9f2c663d18a41dd1
BLAKE2b-256 74388e2fc126358d7347698c7768d9e7460427a1f3e4b7f6fa9d4417b213dc92

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78018a5b34a50cbe5aec378dd21c91061f65aca47baf5f7b45cdd23dced8c55c
MD5 c0537de16e0a72f86c4b6dbcbb9d89bd
BLAKE2b-256 7d13e9e4aae3177fb40dbf9ac6a9cd82b02bb80560e55351b56ce70f385dc04c

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: dearcygui-0.1.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for dearcygui-0.1.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e60a45693f7ba00148b0a3c5374b8440a9118d7227c43622fb8b072cb68ba2a8
MD5 213ce9d757ef6a7238a6243b27d0f524
BLAKE2b-256 0ce904709c8259afd46072a78e4266691ed63a1073ab33364a4f6ddfb439c80d

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 145b670cb21eb939c5e5733ba3478449e1575fbb510d87e1e680c5c33abc375c
MD5 c07d2070740d552a47df7fbcfe094093
BLAKE2b-256 4912eec983b6ddc2bf211fd03790a55b70e8244f48713bf204465e17ba75f6ab

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18f253d95c435195f7ab5e34cd9918a97b18b44b3c34ce14ec9e4365789d57a5
MD5 7e4b339913ae6358a15b0ae51a9cf4d1
BLAKE2b-256 ac9b5a101f45cbaf2f9b0aa10c211ea1e3067b00869a7ca6d907a09d4417ef3c

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp313-cp313t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 71fa11a738f1dcea6bf9ea4ac31791f695dfe10e57c651f845b086eb83456eb9
MD5 4f9be87654a6f93f780d5f812eae9423
BLAKE2b-256 700708e5eae7b071d4dc7fde0a88f380c43bc2602c110b729021a73e2b9320cf

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dearcygui-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for dearcygui-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fec97be74abd5d1684b1e499a2eae9e59ee906d57fbddd8af89b473080eaa5e6
MD5 91ac49bbc27c5fc2a118f1d8b29e71ce
BLAKE2b-256 82f45bddbf97e4fdd1340dd8e39c09e049bd59b317b86ecd9cec547d40c1bb3a

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c961e1ba01efaea9113e753bf00c217b1139eb51059706dc264378d6cf88764
MD5 ade2978fe72bc3cbf1d77f3e7b999fb2
BLAKE2b-256 5f23eea6b3f95c564014c620742a1b7cb44ac30ad8ccb7be4f082704b7d90099

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f4b194f9c78fab75486461943646718c882bf14c9dcf43a5a0e3db8fda3b42e
MD5 628cd1a5f83da61dbd6d1b26524341a6
BLAKE2b-256 55f716c8a286946cf122e0aa56e7622164d46df3963b185c692c9da8da73bffc

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17afbef4884c26ed79b433c48dec60b83eec77b48b1a8e2a04948112f34aea51
MD5 bb07b15d6d561a188c45d13896d953a2
BLAKE2b-256 2fc546f07106221a078c3a804262b8faacfae554137e1b694f3ac5af2206f276

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dearcygui-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for dearcygui-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eac2d731aeacba7cd80d242c22be026a9abea98114272599c016042c21b91998
MD5 3ab97d016c7cccc7b0b24b2e2aaa3f07
BLAKE2b-256 2472be68f60521a69c82ec39e4226553a6dea01fc80ee62876f623f7223f8d0f

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9eef9f9afe1b260bef8504cac197f3fa36eca0a9a25f8a16de3338c9e72f4f3
MD5 8ea02f98ffae3b0d3348bd28fb7092c9
BLAKE2b-256 5b581cc604e4e10a1e2a9049c290e2e4f55b597d3f12d83e8f568a930f1b6705

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de8568cf1f4c351b0b8b0162689a8b69f88a6f20a0b024173ba6401f5676c942
MD5 b98323b32dc27f29723e5c20b7fbc255
BLAKE2b-256 e017e886d19935e83b8027423893cbd224c0d183f6d94f82e51a993e5ae2e75d

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 23c926c490eeefa212d7d4fb7152dbf2228ac90c72342056c4bd19716721a798
MD5 669ee20f599a5c8c1e1ae18a0e86da97
BLAKE2b-256 603f644d65a23b4158ba8f527d867cba3e998d6f3f08a9bb2f8c2fc0872d1271

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dearcygui-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for dearcygui-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9379d3edc5a18acb5e0d6c4c12f21f08347035bb6d5bf9f66417283bb1eac1f9
MD5 932e7ed6794089dcd7c2a0126c563a54
BLAKE2b-256 a59716f90bd344aa5eae2d8f81bf409e4ba9cd30b0a99f0f5c7d3601c0f108b9

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11b8d4078190f5baa33e94dd187c4a76233778efa8170547e201c2ce1a20d968
MD5 78ebacff427265716e0f307ed9a8fd5a
BLAKE2b-256 369585b3a64dd1f8a60526254c94a1236cc0b897e8921f72b28658bb8f37ecbd

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5aeae680df3e7028e6f212f0f250616b9465d1c07c25b9a1185b0ace3a942fd
MD5 0afae878785c4f978d0b15acda96fda4
BLAKE2b-256 b059ac37dff68cf359640020d59a1d78a93d5db74efdc0f1fd3aa0c0543a2326

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 697549854a8cb4b4c3bf16855e71f60bb9c52490e22d4ac45a8ff75de26a6973
MD5 8b1a44df4eb35cac6bf3bc21de58ee1d
BLAKE2b-256 adec1d75d2fe9f00174044179a2e25faa84bc0fb74687b5fcae61221c17a3004

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dearcygui-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for dearcygui-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 79e0b11f4458448d91bf931bfe53d2820003f74081dec9cc759886d38da2767f
MD5 a14e528bdf960ff6c4966d74560aa9d3
BLAKE2b-256 7a66379fd37895c8cbd9559391232f971556ba18f0b1128cc572b4718245c20b

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aef4b29b2f0bc9f54a4274c629e3bae682b3997f3146dc10b3c591f2b33906af
MD5 3093d99cf652a2232ecf664fdcc4c09d
BLAKE2b-256 2798f5c25bf1f66285ac4425180ef68ad9dcfd04e331f78a8fa05bcaf7b25c3f

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e93d6f695a1adb08c141cdd76f095f2c3433b293d96d8550ee8f3a9b3a010f9
MD5 c0f4685016820d4321cd51b11f8c32b2
BLAKE2b-256 87ddf6ce8a1f6acaddbe75e25fcdc4f740504e9bb6645f8b02d72ff5edeb49ae

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 79a18cd0214a53a76502efcc3a78bb48e762d1861a3e0872872aa4c4caa6c2f5
MD5 4c135a3c65ba6ae18c8010682fc72ad4
BLAKE2b-256 016bd33b76002dfd9faaa397bd8552a11ebca09a23802292d725c8e8b5d5631c

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