Home > Article > Backend Development > Is the gui developed by python beautiful?
Many beginners will ask, the program written in Python looks so ugly, can it only run in that black box? The JS next door seems to be pretty good-looking and can have cool effects...
In fact, there are specialties in the art industry, and Python is good at the backend. Servers, data processing, scientific computing, etc., and as a tool to do various things that can be automated. Making interfaces is not its strength project. But even so, Python, which could have relied on its strength, could get out of the world by relying on its face. (Recommended learning: Python video tutorial)
Since its birth, many excellent GUI tool sets have been integrated into Python. These excellent GUI tool sets make Python also You can show your talents in the field of graphical interface programming. Due to the popularity of Python, many applications written in Python combined with those excellent GUI tool sets have been produced.
Today’s mainstream Python graphical interfaces mainly include the following:
Tkinter
PyQt
wxPython
PyGTK
PySide
Kivy
PyQt is the Python version of Qt, the Qt library is one of the most powerful GUI libraries , PyQt has more than 620 classes and 6000 functions. I think the data can already show the power of PyQt! The library is available for Python2 and Python3 and runs on all desktop platforms.
demo:
A certain master’s imitation Xiami music interface (https://github.com/harry159821/XiamiForLinuxProject)
A certain master’s imitation NetEase cloud player (https://github.com/cosven/FeelUOwn)
The above is the detailed content of Is the gui developed by python beautiful?. For more information, please follow other related articles on the PHP Chinese website!