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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

dearcygui-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows x86-64

dearcygui-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (11.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows x86-64

dearcygui-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dearcygui-0.1.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for dearcygui-0.1.0.tar.gz
Algorithm Hash digest
SHA256 3931b10edda9a6400377f3f1a189940e2a7691a741d56acc9dff503a1683c0df
MD5 5721fe031396d5a40f2eeff3baf891e3
BLAKE2b-256 980760de29d93d31909156c8b55cf9dff02f0d84170fe7cf7caeb2e8e1640234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 985fcf0da21be2ba00133d366e4b9b69e45376cdcbc1011345216ad143375b9e
MD5 cf988f42c93ba64b87555ee98d4d4bff
BLAKE2b-256 c94795d6a9bf6f69e0dac39f38c477f1741d7f7779c34501cc8c8f9c18240434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ac7aee2c3292d4312e5c39fecb97f85e2fde5d62f0bccee778fe5b8c69b0858
MD5 4dda8f96183181bd68d1e425afebceb5
BLAKE2b-256 fa30c5240e1526a93f6ca3949815f26ec77f95f996b10fecf929b77fc2e33915

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.0-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.0.1 CPython/3.13.3

File hashes

Hashes for dearcygui-0.1.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c3b4b39ee6390e8deb49d6755322b53dfbe9c378046385295e54f9c2b2e607ac
MD5 8b1b1d7f791327e83e9ec63058f3c6c8
BLAKE2b-256 4e389b322c2c01c3b83a40612be5d29a4d1ae5f7ca7f843f128a60271e73870d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 606776d025d3e1fb9a910ea8c58cf85df00dabdc21ce61ca7d58cfa68c74d22d
MD5 106c347885bd194ea97d005599b9745b
BLAKE2b-256 e17a7d63f9819129615fd1d54d1b5a33dd7c753c22b6b7a585dd53309a3f0940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7942403e639161e064caebf837d3633b040904df8d20419b32ca885ea49167d9
MD5 595fedef4d461db45734970028f8a2d9
BLAKE2b-256 9106b401e39b0a195aa565c0a8b72489b235d96df28e29bfc598d291362c1ebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f39c1b43c06284bdf39f0638f421ff6024b5baad9125e8b4368aa656787d64ad
MD5 cc7f26cd054e732058b3a1583b18cdba
BLAKE2b-256 7d92ed663a04b505df5256b92e70c95a7271bfade0f7fdc5d3cbfc49a1b438c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.0-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.0.1 CPython/3.13.3

File hashes

Hashes for dearcygui-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb7880a5671c1634332200fa16e3f7e060a49b1e211924880ec5d2e84a16db2b
MD5 a729f8d9fee26b064978e0bd5bd10422
BLAKE2b-256 31e2447c514d022c203c2d984f81c74ad8aa4c0e8f4cd7e6a402aeeb03747ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0674fe6718cad8a22464e67efa343d68dffe89d9355801e63197039d4ddf8d17
MD5 a7e99a0e82e392c094573163bfc66910
BLAKE2b-256 cf5182ba6be028abdb9398e40cd5b8ee479213057a96d4436e24604bcdcf0610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddceaa075d7ac6c08f4dd3116a58617414ea4ff4fa3a0d6fa2cc5f4545e40730
MD5 a11c0629e8862bb9895cf3376c3c4c32
BLAKE2b-256 2d99f15af2f8774d2b9780d885b2c1c352ec38c88ed8913972d9721947cb957a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4ee7ab93f1523bcde74e85d8f3cd9a798376cdc7f60f2b04369cc497c78ed885
MD5 52564a125c7cf9d9aa265cb654fbf6f3
BLAKE2b-256 e542d358997a174cac862b2038370349371259d5643724404c1f89524d7dab8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.0-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.0.1 CPython/3.13.3

File hashes

Hashes for dearcygui-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7247f4da0c84181b666556c7c6ce017fcf3d17c2829bebe4063852855ce1582a
MD5 4addf25258fd7d389c0e3706f8976db0
BLAKE2b-256 61f0fcef9872d09cb5985ee6e03a3de034a3cf7390a239b0692eb11180aec7eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a79c7771664a26b2d400076742d3791748e04645f2aef33aea117858d954ff16
MD5 a12d691c75eadfcfd9a7f53a1eb7b2ed
BLAKE2b-256 51c5700628b3febaeb97e7879f8e7170b9898bf8c22e54bdf7f9b97857543eb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca894cd0a0f84a10a334a72d76c4f70386f0e2159c047e601bdd3ade2979fc1d
MD5 f3f30e7663199ff49ba5f92fbd986f25
BLAKE2b-256 ecf211cd2b061ab4919a3538f00b68c5d15401e0ac5869264f7144034a923ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e3dfb32faeaa891349faf1e7c6d2526c5a22efa2c8e5d5c51c530171ce2218a3
MD5 e873d85beab2feb19e02208fdb945db1
BLAKE2b-256 21d3eb1e932800463b1e9131446d1cb7a3bce6317f3812728870b84333a515aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.0-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.0.1 CPython/3.13.3

File hashes

Hashes for dearcygui-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 07d5be097d1834791cff2dfc36c692b2522f103ae1c3da8488d25f57c569d21b
MD5 1abc7b7653678d3b4b03e74bf5368448
BLAKE2b-256 8d0209d7db8bc108baabbee5ed59bb559e3378cbb2abffe9dbf1044ed0d39d22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc34a913f90aa65a9b9ddebb9ae9e76992503db973ea9eadddc77f66433dc2d7
MD5 5865b8fccd7e641e586f9b263d8bcf8d
BLAKE2b-256 f748c3af5169052b7c8dfc7462a2fe751a80f2200b2416637aa49999c18fc38c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 390eac2931a717b2190f25f59ee5f582efeff0973eb45fb9854eaa602397c9d7
MD5 f9e4038dfaffd2f58bd4511d5cdcb952
BLAKE2b-256 72f9a9a5ce67d581b9501d082a5b3d1a5ac1aa570c623360c76119ef0da62b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17559d6a15c37c632dc7822421ef054d4a892af130702d9ddd8fad659a9b2ffe
MD5 cefe8d9c031974d20ffafc6507ba48d8
BLAKE2b-256 5502da8e50360b31bffe7c093f4677d3c9b761ca912fc77b96c1b6f4db0d4412

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.0-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.0.1 CPython/3.13.3

File hashes

Hashes for dearcygui-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b986e95dc2e7c673666a2f8ae6e775c030e949a400fdcf5d6a761ff8d31575ee
MD5 f682d7c0289b144e43c0f635e0dbd458
BLAKE2b-256 bf3d29404e1f47a17737dae37c9b3bf6737fb3eb27e80152c61d17db93043583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee256ef2af8afa4d3cd413de35ffbba13341f2f5efd575fbc113db719a042a07
MD5 ee385c0a3251cd328c961eba37b7cc68
BLAKE2b-256 5a78a1207d62c3e85f73144340bcec65175ac788780de59024624fdabbfffb1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c26bba54cafdf13f34f85992ebdee6550b4b4a0a157fd064864253b5e5406877
MD5 f43719c3be87c66cd3cfccc101d8ce45
BLAKE2b-256 cc548c54b4c73b4f9eceec3e0c398d72dc679367c5628462f5fe632bbe3edeb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ccbf9107c1a7d11d866e46c8570a3162d173d66de1ed6eaffe9e97588e171de0
MD5 2335c17026c81bad7818575701a396aa
BLAKE2b-256 740dae8922cf7dad2dc6a824e0da497ccf24f7d8d3a5f7e5b6aa95dc9b4261a5

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