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.5.tar.gz (33.3 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.5-pp310-pypy310_pp73-win_amd64.whl (4.0 MB view details)

Uploaded PyPyWindows x86-64

dearcygui-0.1.5-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (11.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

dearcygui-0.1.5-cp313-cp313t-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.13tWindows x86-64

dearcygui-0.1.5-cp313-cp313t-manylinux_2_28_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

dearcygui-0.1.5-cp313-cp313t-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

dearcygui-0.1.5-cp313-cp313t-macosx_10_15_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13tmacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

dearcygui-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

dearcygui-0.1.5-cp313-cp313-macosx_10_15_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

dearcygui-0.1.5-cp312-cp312-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.12Windows x86-64

dearcygui-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

dearcygui-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dearcygui-0.1.5-cp312-cp312-macosx_10_15_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

dearcygui-0.1.5-cp311-cp311-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.11Windows x86-64

dearcygui-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

dearcygui-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dearcygui-0.1.5-cp311-cp311-macosx_10_15_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

dearcygui-0.1.5-cp310-cp310-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.10Windows x86-64

dearcygui-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

dearcygui-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dearcygui-0.1.5-cp310-cp310-macosx_10_15_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.5.tar.gz
Algorithm Hash digest
SHA256 b4b505ae1d93fade90ee79a71356282107258364fc070bef494618a1d8aed67d
MD5 f290872b8f1d18a472f250e922c4932b
BLAKE2b-256 97ea7468135b9e674418819ed5a775ea4e47e5f4de04fe57c3489ee215993b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d6a9b28612fdcceca4707e94e6c0bb4182d08908dced10d9f425005529df3149
MD5 c1f9a2850ac9bf4df9cdb2bd1b8be430
BLAKE2b-256 3edf29bed3e7af8ee95bc90e2bfb1bb9249ad28ce0b52a5aed6ec5be30e7edbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02c0f06ca68cb25fb27a14d740e710fd88cd61b216ee513a4e03867f96ea39b9
MD5 5f3eb1501c86bb5ce30e60e9fd5583c1
BLAKE2b-256 c7bc34d25f2f19f87a7f1442473294d3cb700ba43d5393b25dcf676eb864d768

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.5-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 7fa3da8ff1d5dcc14706a57dc36d4c64ace1046eeface5d53a00ac9986650cb2
MD5 33eebae1f48fa7bfd02094c1023cefac
BLAKE2b-256 7ebdaa7912ae74b98eeae7153458b5fd1cea28d572cfc87000fcd19c3f72f87b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 061f8d17b4d08dbeaa2ad899409d4ca9ed86d666893f6a7aacec92f334e18d79
MD5 05b8d12bfbb26746f8e516b1cba6bbb3
BLAKE2b-256 f24fad9f65829d1b9cc3c5cc56c02ecf51f9910fab44100d26ad9b2bdfe29ff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d79ffa7a57eb208e1f03a560de51571effd8cfa7cad804e324ecc2bfa3462cb9
MD5 7764e7d4429a22ce109070fca3397123
BLAKE2b-256 e209dcbd8f26e31209725259536cc9c3f70358de9cf8fed3d0cfb5fb196fe328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5bcd6313c527a66d9f132ccf4436b104fc2927dadcf2bf9f7b1d6c37d4b532ca
MD5 67b8c08b6e9baf7e622708a53ee43c31
BLAKE2b-256 d3f1c3dfa8e0ad1f99368740d157c4ebd4fe2258c4c259a7b4333cb9ddb00b68

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e8e48af2cc01f81ce66d56c775f36bc229356c4622ce0d126dbd48a02ba3f5c4
MD5 6b542891788a074f1fd87d1fed38e4b0
BLAKE2b-256 cf51d92b7df6efd7e6471af7e41ff11c883d37c0e19c5ac4c70c63ff291e86fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2819689b09d8910445f666e7546cdd1b857f3cd875891d0316e8b54d60135dba
MD5 916399206cf149bd2e13bac0e6076193
BLAKE2b-256 abafbc07c5fe0afb9d9ab66f3c851dd3ce049952f3ecf6214ac3676810be115c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 900e522ebf35de6a87c432ff56c37c9e82dffc48aec80445ae4e41b52903ee2a
MD5 68f588a8366b7ffe6d4c7d77fec6acf5
BLAKE2b-256 c3f25296ca08a355613b94c73cabeaad90e1f796d804af2a816d59be6dbf51e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe92bc48a1aaa0327b2d41e4c5597535de27bba429cee93c5926f740836648c8
MD5 042ffbfbd8acd25122fc7ce230b9e208
BLAKE2b-256 6c3a61c5412ed3e9a37d961cc02c4dfbc6f97f75596e46eace230c900644d340

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d718915b21e954c63c599a5e32372fb637e39b08517eb510aa7f53152accf189
MD5 a2b20070153b9625450d9ed422bed28b
BLAKE2b-256 59d2e8438302a0dbe8f4d99ad6c02fd0d4d4b0d17ae3ede5912c6a8bbf1c6bae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2c1e8d11e3a7c8dc7c00ac7f8463b13a68bd18f91620b96717d85bfbfb3587a
MD5 52d500e68b985b3b7e1ae664d8187236
BLAKE2b-256 62dc523453e1fb83ad2dcb3de8e479307312c27c1debff7d5a3fadec9e89348a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d826a4f3490a70c2a9ba2b0c9bb1c8d0ab2e20e94119cda63a2b9ab967b0fa4
MD5 7e419d0b57e19b265fae53599fbb2581
BLAKE2b-256 c048c74f1de4acbe84bbdcd7c99ec8a54f5b825f63e2efd1cf3cf7db6a1845b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b5e76f402523842516239f9aeae817ada60ecf33ed2299d5a8e57407a14a8e1b
MD5 a32ca4f3508d3eb44a686b2faa5636d7
BLAKE2b-256 9ad219f2a755cdac38e4fc2dacaa371633777d91fc9eeaaab03aa2a13707c09b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e0206dba42b265b1f5126d00b2dfc95168e71966242058c94c07b7baa33d719
MD5 33349626679e8495be0b49bec44cb1f7
BLAKE2b-256 8f728605773040f9b503fc8f4ca267d608391afac865ff4ea3cd8e729a2f650f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc199f675c85f799b7de36df5b86978060f687b5f0b21243c155dee180a81a19
MD5 eee87c3fea7081668ba766163180c449
BLAKE2b-256 663a5add4b4db0bf37e2c9a384badce132f18a28affe6fd6753947a1d575ddd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 684d94b04e4ce97286f1dc95b824721a12d1288c71448c3ad02a7a8dbf068a15
MD5 e67493d257bfdd606bb9d6efeed7ae72
BLAKE2b-256 4639e1f5b40e1e008880995c91bef1fa68717d487afc00f1415472da871e9c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 48097fcf8e939dcd45b3125aa71f5aa511504d2bab27c07d838a50ae4703eb17
MD5 95844a4368a73c3255e09fa3d0b8f53e
BLAKE2b-256 0abb0cc0f5aa87b06d65504c6a5e20d7bc7f825ed097bbbd6c01111c9b340de8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b585a8c7a467ea2f45388d3ff66cb99ca9362a8d1103ca407d2ec7e725423ed2
MD5 1b7bc709f6371ecee8ed2d1686e6e6a1
BLAKE2b-256 95130a5cf1a016a9562fdbb2ac5a8fea660a6e00587c77ffe499325b0eb61f8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca04f8e0ae3e40c9b120c95203901c9b0e9aefde4daadc591f02c9f4fedf63cb
MD5 fdac7a5715a2865e733b31b9e901fb25
BLAKE2b-256 36955ceebc0e327c447986e38000beb292ef05b38c7cf97e12ef4b58648a6f0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92e812fb842c62fcbe3654b49b2701f49ebde645a077afc4c2d56db480128f3f
MD5 46e6671c2c0fe17b106a5ce49d597c06
BLAKE2b-256 cb41efed975cd85c84d9a5a841171b9aab404eac72c6d6abc3c99e82ca38e074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.5-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a843576c4c1f9f785aa7307cab5ab4e6e4e6825f2224f96b98957e424c492269
MD5 bf5abc3d4d80397b0067c38942bb6090
BLAKE2b-256 3e473dad172fbaf96b67c8f0802ec53c2f27d0dc2bf82ec6484ebc430ee11ddc

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