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.3.tar.gz (32.5 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.3-pp310-pypy310_pp73-win_amd64.whl (3.8 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

dearcygui-0.1.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows x86-64

dearcygui-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows x86-64

dearcygui-0.1.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows x86-64

dearcygui-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dearcygui-0.1.3-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.3.tar.gz.

File metadata

  • Download URL: dearcygui-0.1.3.tar.gz
  • Upload date:
  • Size: 32.5 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.3.tar.gz
Algorithm Hash digest
SHA256 c62a8bc5082bcc2627a939650f6c39646a054b8d7e6c2cc7d6107176d45610f3
MD5 4e74d7debd01c0a2e3f5771a9afeb049
BLAKE2b-256 15c42d6cd12a46838c6c49edff038933b920f46ebd83e80073cd2ccffbba1c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 602bb46ccae8d58e6093cdca0e4ae50f121912b64ef1c82c0408f983eb8318ee
MD5 21746ed674f4056458dbea52ebd952af
BLAKE2b-256 5dc157294fce98522c2ef146c2db3679cad1e57fb730474380b63ccfca1fc059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aea82aa84136586523f129f2448eb5b4d05371e53811dc557d07fa8d04e13e0d
MD5 2ad89df50e479f8b8819aab27136bab2
BLAKE2b-256 0365f694ad1501469af268b001675c126f9ef03606c5ed5161ef554a8da4a2f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.3-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.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 dccec80487becdfe8b91646a5fba1c6e710320c63b36c7b2ea2374a9f09aed97
MD5 c26a29b2580a7d0e0c9e7df98deb10b6
BLAKE2b-256 3b650403ca10296e9971d897ca0d1c9060bf9e0e0840abbdeb4dd6ea51819e8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44587519b4f0c9ae72b16ec57d96c865bad36b082c9dbe5d5e51412e3de4f799
MD5 0e9815d4d1a2dc97b9ac47050f833bd2
BLAKE2b-256 8de17be3c53f9d90d4e6dbd270d89f7dacf02594b6ebb310e7a1005007efbfac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 591555827b948211533c11fe1e50dc5b392679eea1aecba8dd7a9b4b2c2a3944
MD5 88217f8a47631104c9ba6447abb460f5
BLAKE2b-256 1dd20e23382db6447736545962a35a7836d5a5637b02fa070b24dd3f9357df98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5ac96dcb4073cdc2f4d141d459f8c182ab2ef2247485aba2736250ca9aa3695e
MD5 f282b95e23d923a2f338e455668146eb
BLAKE2b-256 9cbb7b056a769fb8f15dc4d1c921f514c5db0579d2bcea74a740d9a5c4fd860b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b26988b6c2582fc907aa9007eac68d44cd13d5aedcbbd9dae0de6aa02f8536af
MD5 2fb0d259dd0d7aafcde8490b7d929d80
BLAKE2b-256 f900947c07437ce2fca43737f62945182bbfdcfd8140c909c3ba86d4dc70d2d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b430c0a986541e63c838d9de2ca8b34ca29dae85312007faeb19134e2a58a9dd
MD5 2b69487c4fce402b6bdd7cde043a89f6
BLAKE2b-256 9ccad89c91d6d71a1e05a41a93a2cffc06a8212cee1d27b9cdd5b343c0209c25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83e6a3df74faf7bd7256d06516950c3dde6cb0d0d0dd8bf4778c161606a3ff05
MD5 d888b98a8a9c44804451521e7b608db6
BLAKE2b-256 48df631248b182fadfb43c48f59de48ceb573916246424fab423a19b9d4f7fe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eca61dea9d4f1f3905bb93b9caa78e3ad8f972c99444ca157e33518de22266be
MD5 a6c4caea728570130aefd0a8c79f6ba0
BLAKE2b-256 07bdbad2d00643233f69e66a18b0f4aabeb8d6b21bc2596be30b9d304500a1a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4fe48e60273226f818d54aeb9e8bacc5214865f8cfc379fddc66843aee1490aa
MD5 62fe834bc221f9ba1b7ca56e8e9ba9cc
BLAKE2b-256 aa58c38d7e053610536f033bbf05db5a66fce069b6a23bfd22e3ca42015fb049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 516e0143ccb3610717d11d80128ee9d00ca36567e869570a339fcdd5116cde7f
MD5 ac79ac38ed296ac4ec08d638e185b706
BLAKE2b-256 c95a36eae4a920063944969fa0596e877214bea27bd8888d66e8ec2627a32983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56cd30f1d88f53d89c163da0a22b99a5d64a12cee1327855af6e6e8d4cb21a73
MD5 22127b9bd8fae7ec2f420518a3b42110
BLAKE2b-256 a1dcf50658801cb4ab05bbb4c51f00743279f1a6c533e2280632c9022d43e2da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6339ab147fd3e8e57a708716d22e2ca3a8a85af15f5c751dc5bd1b835e54b642
MD5 e0c52932a8a21ee1317bdbb682c5fc1c
BLAKE2b-256 2ea3a9700c20c3f538bca3a872ccaa643be63cbd4457446cbe46deac76d9493b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e10e83335093e7635c6707344a356866a994aa07804f3dbe738fd987d742313e
MD5 892c04bca1f80ad087982e35aba68fea
BLAKE2b-256 163877df44da784381ff2f639f376644f6d2590b70d92057423adb85b1083b53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5590006652385f2ebe9f05558d5544b54b0e06d3ebda6d22c73d9e14084c8b2
MD5 76182ac9d00c8618c5259c963fd5d0a5
BLAKE2b-256 4b6dd653f98ec17420ba23186c8d602619a35e096e446fa96630fbcdb3d65ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbe95f29771929da05794e4b861421a044810ca666d6c32093d773df9e39e49c
MD5 7f43d7368aff99efe153d9b401215c3e
BLAKE2b-256 89d72740580150e58224f60a17373d5717bab60ad3d9e4339e1286f2aaf59826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 47cf60cee3b2b4488b5ae11efacb79c9dfd5f638233edb4ce6d88ab016ee5064
MD5 53fa179b537996e0d8a85b549a333d68
BLAKE2b-256 2ecb330c29505e1a549b0836572088a7e6425881375cb430d217068b38216a86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 31b9ff9cb4ce3f625476ba0477ccb18270f1b7b1a0dc92c0be83a592524901e6
MD5 d784186d2bb71085ec8ba36fb2dfca28
BLAKE2b-256 06cf1fad21b2a21e3a5dcf7f77f690e040f2ee5511d36a76b4dc16cc32b11de2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aceaad682265b3ecc87a2881cfab79a21796d67d179d76052eb46cc688da9cef
MD5 c04e090a0ef96cbb5256c21e9cc51c31
BLAKE2b-256 f1d543d00046aa8e2446742cff312ef6916cbb03b83185a28145b855d513923d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36f1fe6be99ab98adadcba3eda52ff804c496f207b5ffaff4e16965714f6d14f
MD5 2d9ed857ae172565297fe32965e30e0f
BLAKE2b-256 f7ff2480ecb4c2ce3b4f63763c3d084f0bf03f8a6fcd221b4ed16399229e3722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.3-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b89b915426d56567c05c3583f8a14c690019463477f95e94385dbeafed65ced1
MD5 f04307e52e155a763112a45a881a2821
BLAKE2b-256 bb63a620dab79b0cb14c68b7cac4f3de8eec9d9715d729d6cd1f6935d769c348

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