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.4.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.4-pp310-pypy310_pp73-win_amd64.whl (4.0 MB view details)

Uploaded PyPyWindows x86-64

dearcygui-0.1.4-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (11.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

dearcygui-0.1.4-cp313-cp313t-manylinux_2_28_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

dearcygui-0.1.4-cp313-cp313t-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

dearcygui-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows x86-64

dearcygui-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows x86-64

dearcygui-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

dearcygui-0.1.4-cp311-cp311-macosx_10_15_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows x86-64

dearcygui-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dearcygui-0.1.4-cp310-cp310-macosx_10_15_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.4.tar.gz
Algorithm Hash digest
SHA256 c67cb0987539fdf8ee1f3a59f4f9541650acea3fa451f5cbf2195045e95b4b44
MD5 7aae5baa08cab02d684145a9268fc9d3
BLAKE2b-256 3485015d1fa6b9ef0fcec4d10147a447d6fcc11fee13366e40a91a2ed0bb29ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5c7110e5ff2e87a76d49907bbe47be82993ab88810be09e62ecaa41741b8e827
MD5 4146c1f48f4326f4d38bd29aff66fc32
BLAKE2b-256 6f0dc37995895b7f4f1daec0a9a3a92193782e01dbba044f662ebe0d8d948a6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23bf39b70f733a06a3ef523059a3facf565a95b6ed3dc1e3bb83fa95f3b0f08d
MD5 39ddd9289459ea90c252067c14daa0df
BLAKE2b-256 a7b06fbd2ec1bf2e569fcf0dd1d0467c76c10d55cedcc3510c9bcda33d80bcbb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dearcygui-0.1.4-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 cadd72a1111849656c13f22f24303cd29f4e72175ddd671db61a36a2a0efaae1
MD5 1409b0d7db35feac1898fdbfcfe15f2d
BLAKE2b-256 507719adff17887e4f8a845c722cf0f91d6e3fffc2465f6275e0f6569c0351b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a6c93063a912e50032639eba530fdea7eeb5e5b1b66c50d2300694bfa8f7540
MD5 f8d4d73906a314c745d4e8d4935d05ff
BLAKE2b-256 71f008104973463ad41904d71f5b2fcba0f2b8c5225fa6d6b5e85239c20ed5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 801017a57342a496d9ffe860d537cdfedbf67ae00a0d06a45f2a737d6d639359
MD5 64a2868a65a93a3e18692b25091e24fa
BLAKE2b-256 b7c735ea1a7b46d582126fd4ac75c45d472ea53decd5905446502e88515284f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4a5819f490744d8715aaecbcb063b87f14932a4fbe5197dbaf1f78de942102d5
MD5 5a1cfd2e879164fbd1a5fc2dfdae0bfa
BLAKE2b-256 bc9e66f961254c49a5b5e34f1fb95a0f496c980d638133ec601562e1c40e8952

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.4-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.1.0 CPython/3.13.5

File hashes

Hashes for dearcygui-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 089dfe6fc5c9d28b0d46f938dd4338b9c61cfc6e1212d8ac99d8bc70109f81f1
MD5 85e0848d45d1edeb7659453daa4e2e66
BLAKE2b-256 187f02aee5dfc60173011a6f817460e42d09eb359db772c4d508f39020c7cea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e419fb426c1fa21103d414ad21c4ca5ca868f3c944dff00eaac61752282ce065
MD5 e1c29ab1fb1a2ea15754c0cf0166f36a
BLAKE2b-256 d6c1e11793c26f00c9e8b9e691a96b437012347f3f449bb5783ad91e8a4b71ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8667602aba716e8392746acb7c36f62df76b88f230c30238e812fc35d3f87788
MD5 8a96fc213b549d750296a4fb1f3ba171
BLAKE2b-256 97cdc9ed01eb86aaa6804ed75425db8515dd8f65663d120d58d235e13856cfad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3821e52de095871a3f969b6ac3ee2f0a4878b2b044ba3bfdfe9b0e95144b45db
MD5 e66ddd73ca588aee7aab8d857d589596
BLAKE2b-256 b459fa36aec1325982a98130750d6233b4f3aaec9619c6d4a14a8d2f476bfd9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.4-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.1.0 CPython/3.13.5

File hashes

Hashes for dearcygui-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 777336d3cbbd382964ec84c195170a2418b6b840a15601bc8baf6d664d5d389e
MD5 21c2279af1da37f371d03fb9326849e2
BLAKE2b-256 7da10f0fdb2daed16b5d603139c8e6d157875b431881ad34e987c0d66a6e4359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 073d0dcc6fba297af73aefa78a96490bbf52a5a047d3f99ad47154062898d798
MD5 8ce807ca860c8ff86e820dd3687a8e41
BLAKE2b-256 6c022674d9be68d5a6a4b1e3f44b197844c821cb024408ec7d6773f3f6bad211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 318ab4c0fbb05f9cef7f022e0b21f08e4dfd9be290ca6ac0fbfde40fa9969297
MD5 952f88809c300d0c6a713011fc58700a
BLAKE2b-256 685c8007814d5aa2a0ba1652900157286bdc902d2c84fac02d1a82608923c82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1a8209f8805ea39ffd44f1c4de8d75a2e116b68e1601172d3552aab990864524
MD5 a813ae5308d2067204824295d2d0b87f
BLAKE2b-256 017f28fe04acb322372887ff0d5f4607aba13d18a51989379a2484dcff5bff7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.4-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.1.0 CPython/3.13.5

File hashes

Hashes for dearcygui-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ab854c914c7544e907fc4ca8008592a6d297a2a6dab69846c20fa0a15fd080af
MD5 241f04a5b7f829508b20bfa9ed715a83
BLAKE2b-256 56e12466c89535dd05a0005f1c964d0547add9be832442eb022f41003281218f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4006956f548f4d3dcd25c49eaeb758cdfef6b8f89df39d9c3aa26d127a348ab2
MD5 914c4765b9711fd7c479ddb7a1f4330e
BLAKE2b-256 36a450bc6aba6ba5940e7b6ab0fc005ed7392da79a05bc319955cb4755094a20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a872c5f4239925bc2aebbde98bb004a4f083ab3232b086ad578d65f5f823350
MD5 9bd58cc67c4000fb1c67908b622ff80b
BLAKE2b-256 136d22cc6889778b2cb6d80157539aaa18f072d8892470705bef49d8c4619f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5eb94bc331b69c7f0355676836fe0c4ca7459d79906a116c9ef962959b0e02db
MD5 e93bd0861fc99d1cb82f46cdc026c0ab
BLAKE2b-256 24d9fe79bb5e1fa6571b24967621aa561df6d8c39fa3846dd6fe3c9bdd034d31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dearcygui-0.1.4-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.1.0 CPython/3.13.5

File hashes

Hashes for dearcygui-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 731cac4cdd63f417f120a5925c656a8928ea85e816688680004cbf8c49a46837
MD5 8b4e06117f0845dee438b744f81694c3
BLAKE2b-256 fdbe0851f6af1732288be3f836649e9ca22ae334584f19a563158f8bec39f495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0561548831ec7379716c7820de36bdce7b5d7693591ebaf53af888de30c75338
MD5 b6c506a6e41fc545ce888396f986e08f
BLAKE2b-256 aa859a4f8fcddae092a8bb8826441331546472e1396c3d564f267a7c0d381822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61fc28c1cd57c71edb60ea94d004e3644d85d0c5ba07672e44d2c1d50fcd38da
MD5 37b2374e2b829bd0eb49fac267c1e1a6
BLAKE2b-256 1a643939dbc8b2a10d5204da5e134dc25e806eb9878b5769c071947bb3ed27a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dearcygui-0.1.4-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 54a1ec2c41c2df19a66188d7f817bf84d40907e1b3805eee7de5783328db9762
MD5 789bd0cfe7cc48822c39cab25ef28fdc
BLAKE2b-256 f9e3e8a9c284aecadf40b9f3a10b73d3f0cdb61816333357fdd665b2a024443b

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