A Python framework for creating GUI applications with ease
PyForms is a Python framework for developing GUI applications. It provides a layer of abstraction that allows you to write UI code once and run it on different backends (PyQt5, PySide2, and terminal). PyForms is designed to be simple and intuitive, ideal for both beginners and experienced programmers.
Key Features:
Common Use Cases:
pip install pyforms-gui
from pyforms.basewidget import BaseWidget
from pyforms.controls import ControlText, ControlButton
class SimpleExample(BaseWidget):
def __init__(self):
super().__init__('Simple Example')
# Define form fields
self._name = ControlText('Name')
self._greet = ControlButton('Greet')
# Define action
self._greet.value = self._say_hello
def _say_hello(self):
print(f"Hello, {self._name.value}!")
if __name__ == '__main__':
from pyforms import start_app
start_app(SimpleExample)