To create an kivy application
sub class the app class
Implement the build method, which will return the widget.
Instantiate the class an invoke the run.
from kivy.app import App
from kivy.uix.label import Label
class Test(App):
def build(self):
return Label(text='Hello worl...