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.8.tar.gz (33.0 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.8-pp311-pypy311_pp73-win_amd64.whl (4.2 MB view details)

Uploaded PyPyWindows x86-64

dearcygui-0.1.8-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl (11.4 MB view details)

Uploaded PyPymanylinux: glibc 2.34+ x86-64

dearcygui-0.1.8-cp314-cp314t-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.14tWindows x86-64

dearcygui-0.1.8-cp314-cp314t-manylinux_2_34_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ x86-64

dearcygui-0.1.8-cp314-cp314t-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dearcygui-0.1.8-cp314-cp314t-macosx_10_15_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

dearcygui-0.1.8-cp314-cp314-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14Windows x86-64

dearcygui-0.1.8-cp314-cp314-manylinux_2_34_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

dearcygui-0.1.8-cp314-cp314-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dearcygui-0.1.8-cp314-cp314-macosx_10_15_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

dearcygui-0.1.8-cp313-cp313t-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.13tWindows x86-64

dearcygui-0.1.8-cp313-cp313t-manylinux_2_34_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

dearcygui-0.1.8-cp313-cp313t-macosx_10_15_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.13tmacOS 10.15+ x86-64

dearcygui-0.1.8-cp313-cp313-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.13Windows x86-64

dearcygui-0.1.8-cp313-cp313-manylinux_2_34_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

dearcygui-0.1.8-cp313-cp313-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

dearcygui-0.1.8-cp312-cp312-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.12Windows x86-64

dearcygui-0.1.8-cp312-cp312-manylinux_2_34_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

dearcygui-0.1.8-cp312-cp312-macosx_10_15_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

dearcygui-0.1.8-cp311-cp311-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.11Windows x86-64

dearcygui-0.1.8-cp311-cp311-manylinux_2_34_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

dearcygui-0.1.8-cp311-cp311-macosx_10_15_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

dearcygui-0.1.8-cp310-cp310-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.10Windows x86-64

dearcygui-0.1.8-cp310-cp310-manylinux_2_34_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dearcygui-0.1.8-cp310-cp310-macosx_10_15_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: dearcygui-0.1.8.tar.gz
  • Upload date:
  • Size: 33.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for dearcygui-0.1.8.tar.gz
Algorithm Hash digest
SHA256 0f25e07e68e4bfa635ee3dc87c263e16be2bf60a779b0f32d5c9951c046db70a
MD5 959de0753e8c1cd978a7df830f9b9bc3
BLAKE2b-256 7a9117570ec7348158f556e14b85d164f129ce66c7111fd8ae418e54a08261a6

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 016e0e31cb204496d26274676957b32b143263df75fcd7ab067b640103c11647
MD5 d68da39f03f201bf441e79e741206276
BLAKE2b-256 f4ae37ad02ac954faacb5e5851773cb734122c139c53c1cdc569a1e61fe0c1f0

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 0bd244d925a7fe6efa0684c060bdbef79419f5699933648f40892acabea7d962
MD5 a04624269c8cebb1e02fb0a6ccb23a40
BLAKE2b-256 c8fdf6417cb336f1e94422cc88ca1b8d415d89a1df9434ac65fb2db9e1fede9e

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: dearcygui-0.1.8-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for dearcygui-0.1.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8d769e02b440974b9f934fd8804979d23bca687c6647f0f4d6c02ab72f2ce3e3
MD5 c4d8cc6e2ff53e74fe7245fe35a61796
BLAKE2b-256 4f8b5be78562a5a40fee109221febc2c1a4662a93c64c8e81137de449303c458

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp314-cp314t-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp314-cp314t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d17dcf9fc9463ce4ea9323f46229fed4aceaa733ca9cf2a8b473429e56249de0
MD5 924cc5475210bd85a1c6715c6aa45e14
BLAKE2b-256 f9a9052246e48e6cfbc12b44b292935c956e5a9c1a8dadb6de9999a173e3f397

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e08789048ec9d7ba45177c07a7b6f7ed739dfdf1b6f75867c4b59cc0b312a42e
MD5 3bb68c4b022435102db95fb8e6eeec5f
BLAKE2b-256 5449cb13c448333e9684b986221cf1c4552bd12c68e82f965698162aa864a693

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e322f1fb5150cf024143f61c33f411e4b14209bb2d6c858ff784d834e98f60bf
MD5 a034622c71c03856f6f960c92c6409b8
BLAKE2b-256 77dd098aa951f4c36c606c856c46116799119f6127974eb043064c0acb036b4e

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: dearcygui-0.1.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for dearcygui-0.1.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a04bc5aa68434596dc591aa1772fb545370b19e963c354048572915c5de3a755
MD5 ee8bf2999d89b2c499df8e17662f600e
BLAKE2b-256 80b8cf862eef93c91c6351816b29fb0e16eee03dfe606dd8810db3de403dec51

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 47d0fecd9699b8b412f42ae68da433aa88ec1c8a74dd575eee417a17b60ddd1d
MD5 f08dd0f1a96e01957ed0b5524dbea0b8
BLAKE2b-256 3a3085f8ebf2b858e01284a77d3102704fd0fea1231d084570ef4de5eb831a68

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae973dc6ec15ed12f42747af1d32c8563262c47bf4621ea61d281c0f225ca72e
MD5 febc5372afd79fdbb8a667eeec5bf59a
BLAKE2b-256 e529cc6f527db610df59082abb8fb97475c3e48925d944a80954597f5dea374f

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1cd5b070dd17e95f05a760b4f6502271e85af5e56dd97f40e3360b91a7d46b6e
MD5 98ac6a8bf9629373d17dd348d53a5d25
BLAKE2b-256 523c28be9d95765f286721b46a49453c95277bc02190c966268eb1ed9af1a07a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.8-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 1d470559aa8625f8009c5b4882b31b9c71ad4671cd1dbdfb0ffcd559635a906d
MD5 781d6b8f621a61b9ae113d7e7eff2c42
BLAKE2b-256 ef28fc45eede7150f7d307e105bc141c30b9073fd4ba0102f25c4256f0127360

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp313-cp313t-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp313-cp313t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 7a5ea704b1b0f0582b8b8512d7d4aedf186d330a1b9603693574f97fd0568a7d
MD5 4ee1a82a81fa6f9e55447f62921c8c85
BLAKE2b-256 d025da1b8d17c2a86bd3a239a7b8f80caadc62c3ed44a23530f15b02d0a96e93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f2cfd8c813ff35df7610219be04c64a9b4606bc7b1ed6d0e19bd2707577b9f7
MD5 2c5b4a7da58fba667deca496a90c14cc
BLAKE2b-256 668ba027d3b90ce219d4ae8a40e04835484efe10227d4e952026a9f9f49269b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2fc1bb516baf51838bd28edca3059a9e4ad919f52644b81c9a0903332d8d796f
MD5 919833e9c39f1ef5b9382db1b99d29ac
BLAKE2b-256 9722959f7af28f3e3415374ea352eeb6b2aab0ca7e43a888502fece4feb65ca8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for dearcygui-0.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc9e936f97781fc8200d8360ae7c3ed20cc8b770de3cdfac0367769e2b1cfc26
MD5 f974fcb21a6a9a44037c21a18acba70b
BLAKE2b-256 93f038b48b9d2bf519ccd1a1d94a8277a2ec846ab08aace9fe98d86a754e4c05

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 536311419750e384621b73dff663993d6738693d06348b617307f23fd2e5d691
MD5 4e51f69b0b81601efb8af184ca639963
BLAKE2b-256 2b5fd8ef3d6bd4e1ea3dc073ee4efec89b834646a4252e80698f0bac4b676755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0c74e784bd725bbe8d2556dc027ae8696946a12a7fab3af0f20214f8ca50e0d
MD5 192a14bf3bbda2a6b1499b22a79a12cb
BLAKE2b-256 193489ff88589056201836fa684a9689d0618d3cc35bb4d979703d34eae36a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2219af4c9e2b2f7558fc97bf9ef30e6101a17875eee768842f34bb8ef523e2d5
MD5 b6cc271202f5403a55b7fc6256f4286c
BLAKE2b-256 15e06625ec679c72a79010dd5125e1ce374e650e6b9bceeca376a2dc72552e26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for dearcygui-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9d7eab3c92d282b0cdf435cf2c6caeb6ae78dac997b63e1cb9cc58020d4ecef1
MD5 30e3ae41b0499852c019b1ff2043c509
BLAKE2b-256 5f2906b39195ad481cf9809b9b4f012f464997a02d65bbcb309e37429ce36234

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b19cbfab195eca7e88294a9a3a6cf1f76751e3a3413655b056db5c98e3355449
MD5 3876871365d03d66753cb43378e9be7b
BLAKE2b-256 97970c8ae3cf29a4d441817a2ea07bdcdd2582230089b7fbfda6d6ab4caa1373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eedcffef7ac21f9904ce1d30c8f1f3f1460b11a1aa694f8033e1ba6fa726485
MD5 03b69af9fc6c5200b05e7a8dce7c4238
BLAKE2b-256 1605f91ac3fd679b445033b56705344fcc72147ff618333ea51f356dcbbe064b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bfdd4f564f5d0aa1b66c297ea0b17a17bc3d5bd76f570d813a4bd441a5fbab3e
MD5 5a8b5c0a68e2a7aac00252778344a2dd
BLAKE2b-256 f83ca1c4e199d2c5bb084b4dd4ce2546b092f52563e52deb47dea289b3591150

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for dearcygui-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bc3f6c2d194d927621781ec81e10aabc104322b222b2e9cd0cca55d282376b17
MD5 d54c6af6a4446d0453632aceb104d24c
BLAKE2b-256 1005d5f7c0e0c502915d6ff1e9f34144c2c47d6e7a7eb3991ad385cb2d7f661c

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 2421bece970eb956b750bb3e43eb577690fe58aed47335be2e74979bc4a0831d
MD5 73248a89073f0b8e2b8b5e575255ad72
BLAKE2b-256 49d39e660330f52fbfe0bbaef4033f438c8765ddb2efd7e6bdcfb2a88e879d14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6187da9ee45ba5b0b622b017647ee8486d968f01e4d391386cfa12b018703419
MD5 005fea12f1d982c1f0e2db92ddce38e0
BLAKE2b-256 d013e0c37df404e50fcc40b47cb09d4fa703f1b4a04f3cb4a68c2dd6cb534c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2322621ffcb6c0c67faa6604bb8813c4651f6eb89daeb9d708286c6842bf7e41
MD5 f1be38979ef07dc82bff486cc7bd8da6
BLAKE2b-256 ac94b5b7fc95163ec37d93fcae1b2ce7f2b7ba791aaa6e81b762daceea7a8f64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for dearcygui-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dc733e09acfc7b8f5fde057d634e6cee858ce14369d900c2b6e552d7a56f75f9
MD5 24f3bdb09345e14e84b6d12d312d5665
BLAKE2b-256 072440643d98a77928ff178f91a4c1ccc39263f8bcae2fa26cd672c187bb9e2a

See more details on using hashes here.

File details

Details for the file dearcygui-0.1.8-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b1186c947e1246e1c111e8f1c0a76c949b9463d9da6a8903e4c9168a21bbdade
MD5 35a5f604f25c29b55e8ffeb439bfb62e
BLAKE2b-256 d5a4702ade623d54111a89482746d6a71c7caa7294c1194b4d3679f33159b5a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdb38774670547a39f73ef6ef5d611fd73bf9d4b4d3ed3aa85cfbeb781b576f1
MD5 da0c33a76962b2eeedc04430db559d9b
BLAKE2b-256 0c3c05f489b5bc800028eda80be7b92064c6f70c3457fd151e33e5c642b23ede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.8-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1c71f1ed381d2e97b51847b4e5923f3d3453a3d14ce063a9bb7e879f64462c22
MD5 03492ea6690839a4ffe948d235ff50fc
BLAKE2b-256 15be89f5542be2665031636549034338829d93be50bcf6b84e94d0c139ada11e

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