Kivy

Kivy is a class library for cross-platform, graphical interface.

Objective

Kivy is to develop a library ready for multitouch apps with Natural User Interfaces ( NUI ). The app can then be Android, iOS, Linux, MacOS X or Windows to run.

Origin

Kivy is a further development of PyMT project represents the use of Kivy against PyMT is recommended for new projects.

Scope of the framework

The library offers a number of widgets also broad support for mouse and keyboard events.

Example Program

A simple example program that displays a button:

From kivy.app import App from kivy.uix.button import button   class TestApp ( app ):      def build ( self):          return Button ( text = ' Hello World ')   TestApp ( ) run. () Web Links

  • Website
477987
de