Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/themixray/pygwin
- Owner: themixray
- License: mit
- Created: 2021-11-02T10:09:27.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-18T15:14:00.000Z (almost 3 years ago)
- Last Synced: 2024-07-10T17:26:59.224Z (4 months 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 pygwinwin = pygwin.create('Title',(500,500))
run = True
while run:
for event in pygwin.getEvents():
if event.type == pygwin.QUIT:
run = Falsewin.update()
pygwin.close()
```