Python - Best GUI library for the job?

前端 未结 5 973
走了就别回头了
走了就别回头了 2021-02-07 05:45

I\'ve been using WxPython and I\'ve tried Tk, but it seems that, while both are good and I\'ll likely use them for other projects, neither of those appear to be capable of accom

相关标签:
5条回答
  • 2021-02-07 06:05

    How about PyQt?

    http://www.riverbankcomputing.co.uk/software/pyqt/intro

    0 讨论(0)
  • 2021-02-07 06:09

    Try Pyglet. Its a library for python that makes using OpenGL very easy. You can draw pretty good 2d interfaces using Quads.

    0 讨论(0)
  • 2021-02-07 06:15

    Just sharing my opinion: Kivy.

    Innovative open-source library. Supports both 2.x and 3.x versions of Python.

    Kivy - Open source Python library for rapid development of applications that make use of innovative user interfaces, such as multi-touch apps.

    Kivy is based on OpenGL ES 2 and includes native multi-touch for each platform and Android/iOS. It’s an event-driven framework based around a main loop, and is thus also suitable for game development.

    0 讨论(0)
  • 2021-02-07 06:29

    PySide: http://www.pyside.org/

    The PySide project provides LGPL-licensed Python bindings for the Qt cross-platform application and UI framework. PySide Qt bindings allow both free open source and proprietary software development and ultimately aim to support all of the platforms as Qt itself.

    The Windows version of PySide is quite new and may be considered as a beta version. PySide is API compatible with PyQt.

    0 讨论(0)
  • 2021-02-07 06:29

    I can't tell you what is best because that is subjective but I can give you another option: PyGTK

    PyGTK lets you to easily create programs with a graphical user interface using the Python programming language. The underlying GTK+ library provides all kind of visual elements and utilities for it and, if needed, you can develop full featured applications for the GNOME Desktop.

    PyGTK applications are truly multiplatform and they're able to run, unmodified, on Linux, Windows, MacOS X and other platforms.

    0 讨论(0)
提交回复
热议问题