A library for creating GUI-applications on pygame.
Find a file
2025-09-20 16:25:02 +03:00
docs refactorization 2025-09-20 15:56:18 +03:00
examples edited comments in examples 2022-01-07 14:12:02 +03:00
src/pygwin2 split ui module 2025-09-20 16:25:02 +03:00
.gitignore refactorization 2025-09-20 15:56:18 +03:00
LICENSE refactorization 2025-09-20 15:56:18 +03:00
pyproject.toml quick fix pywin32 2025-09-20 16:14:22 +03:00
README.md refactorization 2025-09-20 15:56:18 +03:00

Pygwin2

A library for creating GUI-applications on pygame.

Documentation

Usage

Here is a small example of usage (pygame style):

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