Which Language Should I Choose for Building a GUI: Python or Rust?

0
15
Asked By CreativeCoder88 On

I'm currently working on a project where most of the logic is implemented in both Python and Rust. I'm trying to decide which language would be better for developing the GUI. I'm not looking for features at the level of C#, Java, or C++, but I do want something with decent controls and functionality. Can anyone recommend a language and a suitable library for this purpose?

3 Answers

Answered By RustyDev42 On

If you’re considering Python, that’s a solid choice. The Qt library is fantastic for Python GUIs. It's powerful and versatile, which can help you achieve the control you're looking for.

Answered By CodeSlinger55 On

You might want to look into Python's Qt bindings or even Fyne if you're considering Go as well. For Rust, I can't speak much since I haven’t coded GUIs in it, but there are various options out there. Just keep in mind who's going to use your app when making your decision!

Answered By PythonPro99 On

Honestly, I'd go with Python for your GUI. Since you’re likely calling a Rust module from Python, it makes sense to stick with Python for the front end. Just start building it in Python and see how it goes from there!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.