August 2015
Intermediate to advanced
246 pages
4h 21m
English
Now we are going to create an interface, a very simple one, providing some basics in the developing of Kivy interfaces.
We are going to start to develop our first application with Kivy, and we need an editor for coding; you can use your favorite for Python without any problem. Here, we are using gedit, just because it comes with almost all GNU/Linux distros.
These steps will generate our first Kivy interface:
e1.py.App class.build() method, so it returns a widget instance (the root of your widget tree).run() method.The code for this is as follows:
import kivy kivy.require('1.9.0') ...Read now
Unlock full access