目录html
PyQt5: Qt开发框架的Python接口,https://www.riverbankcomputing.com/software/pyqtpython
wxPython: 跨平台GUI开发框架,https://www.wxpython.orggit
import wx app = wx.App(False) frame = wx.Frame(None, wx.ID_ANY, "Hello World") frame.Show(True) app.MainLoop()
PyGObject: 使用GTK+开发GUI的功能库,https://pygobject.readthedocs.iogithub
import gi gi.require_version("Gtk", "3.0") from gi.repository import Gtk window = Gtk.Window(title="Hello World") window.show() window.connect("destroy", Gtk.main_quit) Gtk.main()
PyGame: 简单的游戏开发功能库,http://www.pygame.orgapp
Panda3D: 开源、跨平台的3D渲染和游戏开发库,http://www.panda3d.org框架
ocos2d: 构建2D游戏和图形界面交互式应用的框架,http://python.cocos2d.org/oop
VR Zero: 在树莓派上开发VR应用的Python库,https://github.com/WayneKeenan/python-vrzeroui
pyovr: Oculus Rift的Python开发接口,https://github.com/cmbruns/pyovr设计
Vizard: 基于Python的通用VR开发引擎,http://www.worldviz.com/vizard-virtual-reality-software3d
Quads: 迭代的艺术,https://github.com/fogleman/Quads
ascii_art: ASCII艺术库,https://github.com/jontonsoup4/ascii_ar
turtle: 海龟绘图体系,https://docs.python.org/3/library/turtle.html