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.2.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.2-pp310-pypy310_pp73-win_amd64.whl (3.8 MB view details)

Uploaded PyPyWindows x86-64

dearcygui-0.1.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (10.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

dearcygui-0.1.2-cp313-cp313t-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.13tWindows x86-64

dearcygui-0.1.2-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.2-cp313-cp313t-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

dearcygui-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows x86-64

dearcygui-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows x86-64

dearcygui-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows x86-64

dearcygui-0.1.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dearcygui-0.1.2-cp310-cp310-macosx_10_15_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.2.tar.gz
Algorithm Hash digest
SHA256 880352a9ea6853daa874aa368137219b2a67463cf8aaff32beba14a4fb274564
MD5 fd4a2e3ab867884b6f3577f1f4d0d161
BLAKE2b-256 0c033245d0ca3f86928efbcee3c0c395e532005b7408d8ae39d8a002b23326f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b215e3c6c65e544d456f009bda50c057ab2fefafb45ef727840b5d7013619ae3
MD5 33ee7daeceafe1efb8a21e69def6a6cb
BLAKE2b-256 ea642e11d8774119a569525f0f708ac6357e195f83bf772946985c823eae1ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e70fe99ef7e0b59824a1e6cbd9bfd4b1b1542e7a219d203ddd1ef70d155a1a0f
MD5 dba350854135d5dc1ca2d457ec9dc1f4
BLAKE2b-256 f04f7ac164e6bea9438c2447e5bdd8418d3c22fbf85529b54d0174086187c319

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 f1a21a04ce458ddf93d4b192ce13b977078aaafaa7d3288ae7785fd8a27e9c0c
MD5 326625fcf87e459813610a4ba8ae3375
BLAKE2b-256 eaf91ab675708c1e04d30f2635950138a331b43983b2a0e1dad1dce4ce6d0eb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68d2931031d96469585221c49e2ab13e6a03f733c61293b77120b7fbb115194a
MD5 8e14dd937d6e68ba59752929a05685f6
BLAKE2b-256 828aa184c222d7bb3b3a55c27e4f85015618c9644b00a3fb70db573a9aff5b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cedf91c36c0e9db9a0ca99a1c1627175402b7323b54adfb91a3b59b8530434d2
MD5 dd162f544c396596d82854e3e7c6a9b3
BLAKE2b-256 7e17b8486d609a6f3a985290ff5f326b557dc321b74ace795e9abdb3f66fe551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 839d9ec9e049b8c7e60a01685551edb49304598b5a70323c1ca481fdd4e7e4fb
MD5 c030ce8a87f8d77e627cc6e58525a452
BLAKE2b-256 8b7eaa263a4ac561eaaeadf44479db403dfc01be2290bca7ef99bc23e455f56e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.2-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.5

File hashes

Hashes for dearcygui-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bd15c1f2dc9ace6cc0eb96c8b31de0ac7b621ddf3951e204a6eff903828d2c46
MD5 df137c2ddb8585a8f218b556c447cedb
BLAKE2b-256 2a24a7aa88dae323f14b5a587ab59bc5d8851f037b8ba2e7c0167fade105d0f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19f56f746d5a7f84ca082deaa6067562a4e7a7efee41cafc68b4f609211341f0
MD5 238b4261f8cf101654204f999d43e16c
BLAKE2b-256 277639a9dd459dbb54fb51ff10599d3e161fb754fff5c8937395d3a2657977cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b31e0bf36d41b463463a891b2ba3b836157c54eacffae691c1560e19a98605c4
MD5 af603da407ec0f87225913ce633255de
BLAKE2b-256 30f18108617864ae20eb42dd98f7707e7749fb4a66316f54ddb7821a20505c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 829f22cb439e3804ed817f478b6edb184ef30c2ff60e7965a674df4222fe49c7
MD5 d3fcd025d85eca2faa52841a7cb8f2a3
BLAKE2b-256 049c5216a53543dba8b6a8dc190002c75623ff2fea066a937b2c13f2b454d9ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.2-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.5

File hashes

Hashes for dearcygui-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a18a0821908644630512cc877485f646f8d7756c69465462e19da05c62e7620e
MD5 859849471a3778afcc37fa99009d9779
BLAKE2b-256 d36059f2dbcecd3a8f2fb41cf4c6f48f5b006fb1b893d3d6fc4f8299e77ac9b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 156394615dda192f855189e02d9f931c54b59897b3116d0ddc614279149ae53f
MD5 e5864885ce339e7a83523a6ab2f944b1
BLAKE2b-256 1024cf979ee590e757ec53e4cdd0e467296fc2ea78d89c07cf185d91ef799d38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22dbcbdd40c29142f10950468e3d7e4859183a0f64d0907bbd0110144d0f7406
MD5 af6c3d72a4151a316c214180798ecb47
BLAKE2b-256 6162864c5bc0c04fbad18a612cad508ef3e861e3d7848f391e4ef77885e100d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 62a52998e9ff3ca605f54fd0daada8e09b4bdd370c87a128c2a946cea0a92d7f
MD5 d0e09b34c5b35223e78eff30adcfc822
BLAKE2b-256 2522a4d8868dba46503b47fdc370cd0212b07cc504e8e80c092f098ac02c11db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.2-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.5

File hashes

Hashes for dearcygui-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c2a27da7bc1796bc323fcd8786d803dd3168b277b1a7c13267825d29e3112a69
MD5 8a86a6bb766163b0ce7791b3a2dbac24
BLAKE2b-256 c191312394343f75cee20252b3dc35e89478439fb4d9559508b36568c3409a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6ce181f14c45dee68ba34a6fe7f5d753be349d860d6f68c5bb1442df69090db
MD5 baf550e72cd3e46311355be400f11a87
BLAKE2b-256 a9fef936d2d6ee14c3bb75a750b3e31c07aaebbf13eb0f1cb823af7be94adebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6e4ad14d7321735b02b77c99d94ae5cef8c04431a592eb65f162581e54fbc3d
MD5 4cdc2c54fc5ef6ae2ae225952c15b9bc
BLAKE2b-256 558a04235e4ee3f4ab8b182e41ebf70d7a2cdd086d89a8777c6f25f279c832a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 495febfbc022d81acb992661bb22a54946dc220da7907f897b5090064696a472
MD5 449de2926086703afd3aed559a0c2cbb
BLAKE2b-256 dc60cd3ed018085d98fa365fe019cd77ae45cae458a22470f5e1e4ec03e52710

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.2-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.5

File hashes

Hashes for dearcygui-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1392f4e32096063302abfa4deec9fcb9ab54e21563958008e518b3ee71a67982
MD5 2a225586dffad62c96a9aba8488c6838
BLAKE2b-256 678d7553bb424946067c828075205fe21d7f06c4fb02b99ea2fa4506930210dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f413a39dd5e5188a8c168f96bc54bfc1676c3f72ec66907a2e75fdf77465986
MD5 1dcb20462e751c2aff8c4295a2a42d3b
BLAKE2b-256 60613ff8074f1dadae70d2a0b8cc5cc65e85f323e05d58848740b911bef8b294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 963d46f03e477deb3812c99fb7e4492707c1d82a53ba04e8ae8d533d7cd6bc05
MD5 8be0c32826550cf4c3e9194f8f8b9529
BLAKE2b-256 325903fbda2377f5c153475be00797b0bf6064422a0b7163f37d21e9c29b9f2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e8aa8b0f280262a31278f3b3407c4c14da87f8d53cecabe52a283a13e4e3f289
MD5 2bb4df3cf219998300497a302ec9a3e1
BLAKE2b-256 72d5fcacb82c794f37bf506d8e7e5b1e1ed30d89c99d1af41f4253539d8bdfc4

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