Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/themixray/pygwin

A library for creating Python applications.
https://github.com/themixray/pygwin

easy easy-to-use easyui pygame pygwin python win32 window

Last synced: 3 months ago
JSON representation

A library for creating Python applications.

Awesome Lists containing this project

README

        


PyGWin



A library for creating Python applications.



Documentation


Template

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