A library for creating GUI-applications on pygame.
build/lib/pygwin | ||
dist | ||
examples | ||
src | ||
icon.png | ||
LICENSE | ||
logo.png | ||
pyproject.toml | ||
README.md | ||
setup.bat | ||
setup.cfg | ||
setup.py |
PyGWin
A library for creating Python applications.
Template
import pygwin
win = pygwin.create('Title',(500,500))
run = True
while run:
for event in pygwin.getEvents():
if event.type == pygwin.QUIT:
run = False
win.update()
pygwin.close()