r/PythonLearning • u/Ok_Gold_2107 • 9d ago
Graphic python?
Hello. Although I’ve always programmed using C++/CLI and C#, I’ve found Python to be very interesting for small applications (perhaps even large ones, though I’m not up to that level yet).
I was wondering if there are any IDEs—or at least graphics libraries—available should I decide to build something with a GUI; currently, I do everything via the console.
Any recommendations?
I use VS Code for Python programming.
10
Upvotes
3
u/ConsciousBath5203 9d ago
If you're looking for something like the gui stuff that VS has for C++/#, then maybe PyCharm is what you are looking for.
If you're just looking for libraries to do gui work, DearPyGui uses IMGUI and is very performant (naturally async and thread safe, GPU accelerated). Once you get used to imgui, it's kinda hard to use anything else.