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.7.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.7-pp311-pypy311_pp73-win_amd64.whl (4.0 MB view details)

Uploaded PyPyWindows x86-64

dearcygui-0.1.7-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl (11.2 MB view details)

Uploaded PyPymanylinux: glibc 2.34+ x86-64

dearcygui-0.1.7-cp314-cp314t-win_amd64.whl (4.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

dearcygui-0.1.7-cp314-cp314t-manylinux_2_34_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dearcygui-0.1.7-cp314-cp314t-macosx_10_15_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

dearcygui-0.1.7-cp314-cp314-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.14Windows x86-64

dearcygui-0.1.7-cp314-cp314-manylinux_2_34_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

dearcygui-0.1.7-cp314-cp314-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dearcygui-0.1.7-cp314-cp314-macosx_10_15_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

dearcygui-0.1.7-cp313-cp313t-manylinux_2_34_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

dearcygui-0.1.7-cp313-cp313t-macosx_10_15_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13tmacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

dearcygui-0.1.7-cp313-cp313-manylinux_2_34_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows x86-64

dearcygui-0.1.7-cp312-cp312-manylinux_2_34_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

dearcygui-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dearcygui-0.1.7-cp312-cp312-macosx_10_15_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows x86-64

dearcygui-0.1.7-cp311-cp311-manylinux_2_34_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

dearcygui-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dearcygui-0.1.7-cp311-cp311-macosx_10_15_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows x86-64

dearcygui-0.1.7-cp310-cp310-manylinux_2_34_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

dearcygui-0.1.7-cp310-cp310-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dearcygui-0.1.7-cp310-cp310-macosx_10_15_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.7.tar.gz
Algorithm Hash digest
SHA256 e7ed29cb91c411a872bc2b13c8ba95a6ba5e2d778621b1ee8d9773d19b5c48ef
MD5 3da45d35c44197f752de27912a70801c
BLAKE2b-256 83084fe54b862fa16c30952e32177999ec31aa0ff184b4248c794e2534d3d107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a7994af3daee0d8723447ab32e3df52624afc47d9d41afe642fa617c2bae4bbd
MD5 0537cc4a302d96ed33e223a6666b8200
BLAKE2b-256 f9f0e9fb55e8a477244f7ebccfc14408584f95e2afe1e7c0e58d4b34ec8cd198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 bda3acb95f000f96806afbc2050554d4674b0b77a542ccab8d52644ceeab858d
MD5 f50444f1e19a2077af36df47e6b00cf2
BLAKE2b-256 51f795ae5aeeaa138b1556422537ceb795086f4fb32523b8917bc427cc750036

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3600a40bfde7ed96bba05f50d30453e0c0676fe6175b82cc7678d1ab4dec2243
MD5 b1366eee8f9125bb09be767ac1987af2
BLAKE2b-256 a2161b67601fde9251d0601dc0c45861810330e53d61bdcdceb1462a6b0c9dcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp314-cp314t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 2301947b44b704f6d119b10cd24afad6785b973791c016a7ec757525bdc8bc31
MD5 f639f055ee52ad2761ab4fc026533a88
BLAKE2b-256 e76a24344ecf73e4012e9bb2825fc7b128f11b735d927d852ca74fed6fec870f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b376fcc7a8666eee2bcbbce4b9250584ee5f2023f0234946d4b44108ff83ee2
MD5 a693668960fe98da583924af2657bde6
BLAKE2b-256 21f60b049427c142e2671ca6638e8dae177daf7d90f557f38fc7bd74f9b0e693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b4eda7403233d324e155b0bae3d0bf7ef4a1196360decfe6b3094ab1777b8643
MD5 29f36053f34397af36fbfeaaa26b0e5b
BLAKE2b-256 c6052c6d3e6ad7c871b7ea799316b084073aa0d466e209bb1d9af23692055aa3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d708a9b252d9e81f8b48077af686ae4c81e145d2cc750ff081bdd31e74d9ef0c
MD5 6025d40c79ddb2d273e8c068f993b04b
BLAKE2b-256 2d34d7e3902b9541df42c591dfdbc16b719766b77c6d29c5093b7bd837ec511a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f8633876065eb754629c777657b2495a7a8086210024e4d1b5d4977ef167e6ef
MD5 2e295dac515a00054f5096912c5d750c
BLAKE2b-256 803088303ec7b1f5ab1eace038f4bf8bba73dd68d3b291d153199a6d3bbc6cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05f4427a99e0ba2ca0df344ad98bce92f34407d1630258d38cad7a4e80b0dc7f
MD5 f2452f2c3ed62a4c6108e858baa67c90
BLAKE2b-256 02b5e04da0aa1ff033d10fd00e77d8628a6d00477ecffbd7ea60363a2bad70a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cd28080d1bdc5dd6a61da471699bbf9b05b93143bbd111b193213a2f6fd4eff0
MD5 fcc7a81370434cb7ceaadd81c6d38017
BLAKE2b-256 536b1398cba5d04743e8c7f1da10cc10eb40ba76f80db0a00113e9146322991b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.7-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.2.0 CPython/3.13.7

File hashes

Hashes for dearcygui-0.1.7-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 24315e006e5114f42fbc3e1ac835e5ce39248b4756935ebd10972418dfda2330
MD5 c9e835943776e957635dec4846fd769c
BLAKE2b-256 74dd4bc6b8b83e5dab744130efb1e68ea6c48623aaa946ef528072b9e46f0e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp313-cp313t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 376ecc27ddfeee0f5944e5347e53268519e76a1a54cec799e9ef061dd64b4291
MD5 7ec60c960438ae157228942da8afe919
BLAKE2b-256 615434e5c97be4c9edaabd192e1724663e459a0851134260055d07b2e159c099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 196bc9d3f8fd644055925114317fd5485d338212248af9dc4a595286ee6e0b53
MD5 f78a1ce29fc6d384ee2cf39269b16bc4
BLAKE2b-256 feb40b3fcae8e5238704c46b8ad7df318624e262bde310fd1d2777d57333b8e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7ccb168d8a87f04a34b36a641ec0cdd088953e02bf3c194f27e9038f6d5ef252
MD5 e1114500c3c124d1456fbf4e701b3b9b
BLAKE2b-256 373b7df9926c8478efd8281c6087bc31be61d79a957aea79f2ea71f5837d4266

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.7-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.2.0 CPython/3.13.7

File hashes

Hashes for dearcygui-0.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 826cf291b81b0f70f13956f79d61e4b4f37861105a7079b0b4afe2514ce9ce0a
MD5 4514acbb638d342a4769dbb62b6711b1
BLAKE2b-256 b1505e0e9659bdee3038a4c2f514db0c9754d1784f492bff00b1f6f8ff063316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 c1dd46481f5ebc20c5fee21500177182e6cfc216b574ffd5f6855c84697685fe
MD5 c998c26a2d47036c551e205b851e4638
BLAKE2b-256 68a07a2c58162f46625e56c1f338d5085d5453ba722ed740215323bf0e855702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93b70ce3034bda0620c128d5b799932b33789893ed927bf97d04204dc3b73155
MD5 fdb9ed3c41f32dacc1a637f1543c20fe
BLAKE2b-256 6d61a062cffa529e5dcad52a48aa62caf92811662f62f2f8303994ec5403ff04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f39af0da2f4427fcc8f74a4a1a73e7b0980f9ca55ef5e10bd2d4be10f9257083
MD5 de50e87c48e32dbfc16a46d205337867
BLAKE2b-256 aab56b1e380767cfeacd65b3e6553822fa7b34c8afe73fc6080286010a0cdc76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.7-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.2.0 CPython/3.13.7

File hashes

Hashes for dearcygui-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e14a402302fa3e46e36f05bbdcce490bc43a193db1c8749a1ebb3596dbfa8ca2
MD5 110d8607bf652c245b074963d17ca14b
BLAKE2b-256 fe7549a28129a4a5ede81c35822c323521eac4c2d769b33b5c9dc37d9af06f53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 90973aea7585d24633c0c001c4ac1925e2e7a7228952c1c5a1c5b853f8339f03
MD5 974f601aa904577d30b6a9ba77d0e6fc
BLAKE2b-256 eb442a95ad6565195f6ac09a482389196a7ef24c2ca0a86ec2693e206ad284de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf08d592ccb740b3dd0fa6ce8d9b90fd84d07b4c06f3283a23f49ff8111f7bed
MD5 e7c616457de823b7eb8da82115ea73d1
BLAKE2b-256 4d2b3c500a7a3e904664326ea9a32f7521c9ede6cf8428f877a7d66af64fcdb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 649cbd207648c4f56c8424781550c89ae085922c141093255964723205e70df4
MD5 9cc4a1b610be12701834c305bcc445a4
BLAKE2b-256 006ac74b6bceca4c2b3e5e87d5b1f3a924cf03ae38b1d14842bd74b84b1634a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.7-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.2.0 CPython/3.13.7

File hashes

Hashes for dearcygui-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0cd019ead57598bda127e01d8d64cdb87a873afa2c7c6145a57110aedce05199
MD5 5aa6af681a703e2e9bd9e933a32d4a73
BLAKE2b-256 c02dda6e08132b4f4a1dcd84ac695ced53c00e47a2ab9719e15dc6a52e3b7a06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 023b2eb6fea1178b8c5fbba425bb3a0ff26cd7679a5dfd58ed16599d69017543
MD5 edfabb36d6897632e5a8a0fd19689a53
BLAKE2b-256 3ad8d27b66435469161d3f70a6bc0dddd1477beee25200ad03f675c3decdf060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f6bcfc371a678923625e3e7841046929e8a9b93d03f6a0de5544975e61350a1
MD5 93506de5b506b86f0d5b8c86535f5f6d
BLAKE2b-256 9c44d2452ebd6c70e449d227bdf08de96e36a522dc0e1e9882842fdffe80ecb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f2e59ba85d4116890f39b883abf4aaaadf9b3d96290da80e6eded79843ec50bf
MD5 b4c908057ef53288032b54f64099a2c8
BLAKE2b-256 5822d4c835039b5089db7a3a6f80c3899c5e786384a5592accbee8e861dad607

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.7-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.2.0 CPython/3.13.7

File hashes

Hashes for dearcygui-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fb765ec52c5fce592e380e38415ba2b8ba7276248a9eb048c901432f59a4f643
MD5 11116929943bebcacb224f0c0a4c4208
BLAKE2b-256 8641b0e32b7535f70b2fc4007b3978338dd1b36bccc010e87652df9847db4c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 be8e77f5ea336ff290dcc05ab0ca1ca6466c7ff1a0e6838cc7f753e64ae30a51
MD5 6d0aded46053eb38c904711ac09bd43b
BLAKE2b-256 d4352b5e87c7a54df31d5ca3906b4fb0b3d7f6daa97c0a0ab688bc69d180adee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9d85e2c427ac2ef13998a655187f098470f3ff69f5a88cb713cc2202f7504e1
MD5 527b281932e3ba166c1948de76d9c47f
BLAKE2b-256 69909a016d5d8219b3bfb626fce27b19ed8988af726ec6f3ae6aec7cf24f6aa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.7-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2d6804084ce949adc2e21ec5cd5ed200ffd3fb501707db0b461533d4d250e73a
MD5 66da7b89f4f5fa343298a0fdfda6b543
BLAKE2b-256 fd559964f81f5dd10b4f66f2cad1aa1cee9831445e68ed256892e9c41bffe144

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