Modern multi-touch framework
Kivy is a modern, multi-touch-enabled Python framework for building innovative user interfaces. It supports various input devices and is particularly well-suited for interactive applications.
Key Features:
Common Use Cases:
pip install kivy
from kivy.app import App
from kivy.uix.label import Label
class HelloApp(App):
def build(self):
return Label(text='Hello, World!')
HelloApp().run()