Pythonizing Imgui (feat. Cython) and contributing to open source.

Опубликовано: 04 Октябрь 2024
на канале: mCoding
94,897
4.1k

An easy Python GUI library for beginners!

Dear ImGui is a GUI library for C++ that has Python bindings. Let's see how to use these Python bindings, and then go through the process of adding a more Pythonic interface to the library by added context manager "with" statement support.

Note: the PR in this video has been ACCEPTED! Coming to a release near you soon!

― mCoding with James Murphy (https://mcoding.io)

Source code: https://github.com/mCodingLLC/VideosS...
Dear ImGui: https://github.com/ocornut/imgui
Pyimgui: https://github.com/pyimgui/pyimgui
My original issue: https://github.com/pyimgui/pyimgui/is...
Nooby Python habits video:    • 25 nooby Python habits you need to ditch  

SUPPORT ME ⭐
---------------------------------------------------
Patreon:   / mcoding  
Paypal: https://www.paypal.com/donate/?hosted...
Other donations: https://mcoding.io/donate

Top patrons and donors: Jameson, Laura M, Dragos C, Vahnekie, John Martin, Casey G

BE ACTIVE IN MY COMMUNITY 😄
---------------------------------------------------
Discord:   / discord  
Github: https://github.com/mCodingLLC/
Reddit:   / mcoding  
Facebook:   / james.mcoding  

CHAPTERS
---------------------------------------------------
0:00 Intro
0:36 Pyimgui
1:02 Getting a blank window
1:36 Imgui commands
3:43 Begin and end
5:36 The solution, with statement
5:59 Let's fork and clone
6:30 Pyimgui's core
8:28 Adding with support
11:31 Long road ahead
12:17 Compile and test
12:38 Did we fix the problem?
13:00 The last step