A library for creating GUI-applications on pygame.
Find a file
2022-01-18 18:14:00 +03:00
build/lib/pygwin fixed ramlimit4 2022-01-07 16:08:53 +03:00
dist fixed ramlimit4 2022-01-07 16:08:53 +03:00
examples edited comments in examples 2022-01-07 14:12:02 +03:00
src fixed ramlimit5 2022-01-07 16:09:21 +03:00
icon.png Add files via upload 2021-11-07 16:12:35 +03:00
LICENSE Add files via upload 2021-11-10 19:26:52 +03:00
logo.png Add files via upload 2021-11-08 14:17:53 +03:00
pyproject.toml 3 2021-12-27 20:49:54 +03:00
README.md Update README.md 2022-01-18 18:14:00 +03:00
setup.bat Add files via upload 2021-12-19 17:05:10 +03:00
setup.cfg 3 2021-12-27 20:49:54 +03:00
setup.py 3 2021-12-27 20:49:54 +03:00

PyGWin

A library for creating Python applications.

Documentation

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()