A library for creating GUI-applications on pygame.
Find a file
2025-09-20 18:07:03 +03:00
.vscode deoversimplify 2025-09-20 17:25:17 +03:00
docs refactorization 2025-09-20 15:56:18 +03:00
examples ruff fixes 2025-09-20 17:53:29 +03:00
src/pygwin2 some ruff format 2025-09-20 17:53:40 +03:00
.gitignore deoversimplify 2025-09-20 17:25:17 +03:00
LICENSE refactorization 2025-09-20 15:56:18 +03:00
pyproject.toml deoversimplify 2025-09-20 17:25:17 +03:00
README.md add pygwin2 installation guide 2025-09-20 18:07:03 +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()

Installation

pip install pygwin2