August 2015
Intermediate to advanced
246 pages
4h 21m
English
There are some methods in Kivy that cannot be arranged in any other class. They are miscellaneous and could be helpful in some contexts. In this recipe, we will see how to use them.
In the spirit to show all the methods available, let's work directly in Python. To do the package tour, follow these steps:
kivy package.
from kivy.utils import *
intersection(('a',1,2), (1,2))
difference(('a',1,2), (1,2))
strtotuple("1,2")
get_color_from_hex('#000000')
get_hex_from_color((0, 1, 0))
get_random_color(alpha='random') ...Read now
Unlock full access