Skip to content

This started as a demo for pygame but turned out to be really nice

License

Notifications You must be signed in to change notification settings

donno2048/PY-GUI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PY-GUI

Create a pygame session for specific functions

install

From PyPI:

pip3 install PY_GUI

From GitHub:

pip3 install git+https://github.com/donno2048/PY-GUI

Usage

You can use the demo one by running:

python3 -m PY_GUI

Or just PY-GUI in the cmd

Or you can run a custom one from within Python, for example:

from PY_GUI import Main
def parse(text: str) -> str:
  return text
Main(parse, name = "Cat program")