A library for creating GUI-applications on pygame.
Find a file
2025-09-20 15:56:18 +03:00
dist refactorization 2025-09-20 15:56:18 +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
pygwin2.egg-info refactorization 2025-09-20 15:56:18 +03:00
src refactorization 2025-09-20 15:56:18 +03:00
.gitignore refactorization 2025-09-20 15:56:18 +03:00
icon.png Add files via upload 2021-11-07 16:12:35 +03:00
LICENSE refactorization 2025-09-20 15:56:18 +03:00
logo.png Add files via upload 2021-11-08 14:17:53 +03:00
pyproject.toml refactorization 2025-09-20 15:56:18 +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()