
Kivy Basics — Kivy 2.3.1 documentation
We encourage you to open the code and read through it. Kivy is based on Python and uses Sphinx for documentation, so the documentation for each class is in the actual file.
Kivy: Cross-platform Python Framework for GUI apps Development
Kivy: The Open Source Python App Development Framework. Build and distribute beautiful Python cross-platform GUI apps with ease. Kivy runs on Android, iOS, Linux, macOS and …
Installing Kivy — Kivy 2.3.1 documentation
In Python, packages such as Kivy can be installed with the python package manager, named pip (“python install package”). When installing from source, some packages, such as Kivy, require …
Gallery of Examples — Kivy 2.3.1 documentation
Gallery 3D Rotating Monkey Head Widget animation Suite of Application Builders Application example using build () + return Application built from a .kv file Application from a .kv in a …
A Simple Paint App — Kivy 2.3.1 documentation
Initial Structure ¶ Let’s start by writing the very basic code structure that we need. By the way, all the different pieces of code that are used in this section are also available in the …
Kivy tutorial 003: Building a full GUI
Dec 18, 2019 · This tutorial will construct the GUI using entirely Python code. You can always do this with Python as described here, but normally we recommend using the easier, clearer and …
Introduction — Kivy 2.3.1 documentation
Kivy empowers you with the freedom to write your code once and have it run as-is on different platforms. Follow this guide to get the tools you need, understand the major concepts and …
Programming Guide — Kivy 2.3.1 documentation
How to load KV Rule context Special syntax Instantiate children Event Bindings Extend canvas Referencing Widgets Accessing Widgets defined inside Kv lang in your Python code Dynamic …
Welcome to Kivy — Kivy 2.3.1 documentation
Kivy is an open source software library for the rapid development of applications equipped with novel user interfaces, such as multi-touch apps. We recommend that you get started with …
Pong Game Tutorial — Kivy 2.3.1 documentation
Ok, so we have a basic pong arena to play in, but we still need the players and a ball to hit around. Let’s start with the ball. We’ll add a new PongBall class to create a widget that will be …