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: 6 months ago
JSON representation
A library for creating Python applications.
- Host: GitHub
- URL: https://github.com/themixray/pygwin
- Owner: themixray
- License: mit
- Created: 2021-11-02T10:09:27.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-18T15:14:00.000Z (over 4 years ago)
- Last Synced: 2024-11-11T01:43:10.539Z (over 1 year ago)
- Topics: easy, easy-to-use, easyui, pygame, pygwin, python, win32, window
- Language: Python
- Homepage:
- Size: 1.89 MB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PyGWin
A library for creating Python applications.
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()
```