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

Uploaded PyPyWindows x86-64

dearcygui-0.1.6-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl (11.1 MB view details)

Uploaded PyPymanylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

dearcygui-0.1.6-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.6-cp314-cp314t-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

dearcygui-0.1.6-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.6-cp314-cp314-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

dearcygui-0.1.6-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.6-cp313-cp313t-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

dearcygui-0.1.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows x86-64

dearcygui-0.1.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows x86-64

dearcygui-0.1.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows x86-64

dearcygui-0.1.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dearcygui-0.1.6-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.6.tar.gz.

File metadata

  • Download URL: dearcygui-0.1.6.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.6.tar.gz
Algorithm Hash digest
SHA256 fae0049c52a8c784b718c9f0c1c84f23a0cc311d17c471c9b3e604ddb63e5e5c
MD5 47db838c3acd50da33b010ba439263eb
BLAKE2b-256 7a8a15c1b397fc6a3abb3c1065fa64d940542728a83a4fbb0f2d6218a5c57e2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1fa44f6bd8dc07a6b3787e81ef3c359c874952f31b9fa1405537f2406dfcdb89
MD5 4eaf5e8f2b112b1f66b10fdaaa27b51a
BLAKE2b-256 ae8d12231c9059ec72e8f8e81cbe5a9f4b1e0e999e0a511f8eaeab06b75bb973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1b00b5299786e33160dd995d9b413f6aa11f69679fddc720907e7d5c4ecf6aaa
MD5 4bcd36879c2fc059dfe71cf54eb869fb
BLAKE2b-256 825ded591e096cf10294ddcdd8da71ed193c2fef8d669d66fb5d32ad355e3217

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.6-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.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8d67bdda9b7222f97bf00a032b22d96d268d8ab6309465816918999397987f04
MD5 219b772812dc7ddcd09aa6974e6e1e28
BLAKE2b-256 ddb548a6ce26fb58a531943b8395edb9ef53a173def7a57949f5c24842a9716d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp314-cp314t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5b9e663944e302d1817fe41f6a6bdd6e3f9a91f57537b29563a2ce267b7b84e7
MD5 6eff046475bc868ed9c51dba2e26c8b5
BLAKE2b-256 e792694e7db4d45d1941483a7ac09c43355f3baba0f08fed6bb9e4e3c21ebe03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 852552e22e9932e5dfa65d1c9c25718626e5d931b0bf7172dc96e1c0bf0b04dd
MD5 88c6a1eab1217dbc7c39c4a66aa35b4f
BLAKE2b-256 689b4d15af8bf1443a76b3998af0128c33a2551f9edbde2065535ba647abebad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b86c5cab7208aeecee769ab49c7d208b4dcef4039eec0543a6608dd26f2ceb4d
MD5 7611f95e8c14a2c186a0a0aca8a9f212
BLAKE2b-256 aa18c999f1aed52b6ce5532b39f060fce13936b56976d31873cea9c2659b1489

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.6-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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 92d853e7ad5066b89d2ec8e7cb19daa2de7e21c134a1c554dfd96f88d9c0f69f
MD5 89f39eb82405e3cb82a3409f15d062af
BLAKE2b-256 ace923c6c3b33ebc361ae8c208b34f07498568c8d434d864a83f45fed8a3c408

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 83e51194a7b1fddab155b39303211610532bba548b3e9a2e9ebb3f2a45ce4bba
MD5 90c86c64389fa04329b7c1700eaa9d39
BLAKE2b-256 21f1b40293e8dca386eb062b616d7da819340fc35a6ffddfce15e0c4f89dc57a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 096a8be4c21c7f9934972d3fe84f191059038abee86d7afc6cc36e9d0d362ed4
MD5 afd9032bdc9e6b74149fab76e85112ff
BLAKE2b-256 89020c9f0355b7cbdc7a413e16dea8fcc59621df0e2da8eb6f9e7b18c797cf5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e0486433bc8d29f4770252aead82a0beaf5eb98a3e5cb94092bb6f69d1535ff7
MD5 3cd1f8af2a7a7d675fee0e8ba19aea42
BLAKE2b-256 849ed252e74a8df00479c99b7f5e27467adfe4ea934b439d7e5e31c814410999

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.6-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.6-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 99b1d1e81bf60018f142d453010bf3b4b4ef53aa531f6bf2c993651f15a3605f
MD5 f59dcaed10a945f98ba6111973b88d4b
BLAKE2b-256 f847d9730ac4b949fd81f50c13df52412e625aed371e48a9e11be459dbb5c5d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp313-cp313t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 75372f2aa1f631e484bf1740248c76edbc92f1d6d9694f974a34d5676eb57c0f
MD5 55656dd3ae256a9ece816cb5321ffee0
BLAKE2b-256 19c87b0797e09308da6d48e2f59e4ab8fa67b885818a54ae6254cab8f3029be8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58194f82273ba8d848b647e1036bf1ddc9bbc06b7b429a670273c93010341513
MD5 3d619eff989583a2d83a96c989f02dfa
BLAKE2b-256 ec78b6936be540d3db88990d261537e5364d5fe68709ff5ef67b58bdecb59891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 56acd209be0e7708e6f9b4f0a207533cc627aca46251d66dc8831f8245d95028
MD5 d08e3987bac72c676a84f6f3c3cf3a86
BLAKE2b-256 53487f330fc1cb06ed14b4a78f20b10ecb1ec394a4534bc1f1e3d01390cc4af1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e89b4dbaec9d05d8e3241214748baf34970753a934621a8b81efd30bc3f4869e
MD5 903c27f49c96ccae5919db9c42c4a031
BLAKE2b-256 aa94d55fdc323c17a365f53db52bad14663cfe60465089640e54ee4c5069599c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 a4da86f284b8490d45d700d18518adab612ab30b0145a9ee43adedd30fafe737
MD5 62416fa816b1816e00a67093cc302759
BLAKE2b-256 6d26238d465f318034917854c5a262e5975c4f18106fb5f10539054d1bfa4a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5d347c06222f9b39215105cf69dc930b867cf198de9f1d9c9ec16289c79d2ef
MD5 a6d1c4c6d7c78f3ea062da13e76e51b5
BLAKE2b-256 132976c9bd1c0d1bb3ee4e623ebb35c36b70a253c6ae06d9dece8c515581eace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a7278907c4b5c7e15bcbe3bf48427ef5c1269504bdccf9fcc62ab56ba3d01c11
MD5 d9339e2978928335ff6f91084209eee3
BLAKE2b-256 c1811ed311e844c3a203d1f02397fa36d618104534054835a46816d1c8030a80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7344aa08e590ba2e6d816f2ff65f0b88455308ee5eca5635ad84bc1218d070f8
MD5 fd6f22326e56f5891543581b2c90b889
BLAKE2b-256 2743ed81f4b29c1ab7b93753414accd5a31a85b2fa0a3e73a15d936dfbe176e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 870c88bb6dbf7eb2726616508ddaf1aca8cf0d936c7403c40c6a9c13fb2c2837
MD5 8d49698d990271eb9e793ef313739442
BLAKE2b-256 cda56d5cac76a7780aa61a1cf73abe84f1c27278da6b49704101fda94e4491c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91cd85f4674ddc4ecfa923f8aee2eb83493d087e35abcd12dfc7f82f23345351
MD5 96f73f7d096a1fa3a657a04c208030ad
BLAKE2b-256 bcf14f2cee2ef643a15c15a4653c0739c4fc473b4f452263c791c5b957e59d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 260cbdbe3021361624c1ae8f34d30ef261168464e49aa7c0a23bb59a5e972f22
MD5 69436ee04f11e233ca6a14431dd9635d
BLAKE2b-256 cff748f6a9601c4628aec1f50ad017ef1a3b0560ea30f820f15cea6dfcac2acf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3b95bbafd783cc95e204d78c6d77f83a3a089ccb340606b43611ece5664bd56a
MD5 a196366d7dc360e46c6e5877bf5b8772
BLAKE2b-256 a8d80255a25f240d74b51ad86ee98cf42b9fad0b7fa770f986cfa735bb3fcd34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ee11525bfe2b84c00ac5c1879c71e93d1afe5f8a188a39646be9eece562873b9
MD5 839d993808c69ae26c4d6aa29062c20a
BLAKE2b-256 f2917b2f24ca6516f7f8b013b6b859219a895dcd9228c5aceb130694ea9b74f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08a227ef22ddee000daf4e821c600bd8df8da496469a5fe5c4a159c9b5e985e7
MD5 298197aba3d03b73da5865c38cc04308
BLAKE2b-256 bebc54a75d93b846e87b86b6423495d47b488cb9280c522490eb2fb4d1d5479b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 806475956eb1d3f49e208ae525dd2ec1bd0de7a120424f41643e1362b350d5fd
MD5 1e19bfecf314cbf8e1a446cfc8d5aa9b
BLAKE2b-256 7bb32d11aa3d272e40e2a0395e665a4b867d690112c40f3030ca0b3a6c7b49ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 736f0d2c74b8dc26fdea4772e1ba07bb6e7698d1755b786e3d9a90d889faab5d
MD5 ee271cc9de0ad2d968ddc12beb97e068
BLAKE2b-256 fdb0ca883d45a07f92434eefaf1c2906b71bd3cb75051dbaa7e0cb3387df966d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e0cf22c5002741e135c03143d2c335f45083cbd78f4392eb834712273633817a
MD5 bac1d6c3c0ce7a7f02fb89b4a76a23cd
BLAKE2b-256 ab0125909e1ff4138ac473ffb6b195489875690db980e2618a9aea2d4f75f953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fa10343cc96a7a2259786059c99660f3c20fd6708721ef33a18c919c1b0c702
MD5 dd1b6a75efdd649ad483fd7f6bb7e460
BLAKE2b-256 cf417adb153f1ee53f748061a9f6f6b1f579907b6d7eae70d60a3d708007d465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.6-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 883c95fb9154961a3fa8cc896e75667271658a43cb4a046c2c6cf57c86167c9d
MD5 aa76d47b2d7eb84bc7b98d13b729e50d
BLAKE2b-256 0ea00a5e5dcb884389ac8d3ad966aa68b8fc54dc15fa228be6585bd1a19bf6aa

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