Skip to content

themixray/pygwin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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