> For the complete documentation index, see [llms.txt](https://docs.kivy.fun/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kivy.fun/tutorials/crashcourse.md).

# Crash Course

The Kivy Crash Course is a series of YouTube video tutorials by Kivy core developer [inclement](https://github.com/inclement). They provide a simple walkthrough in Kivy for users who know how to code in Python and is friendly to Python beginners. After the Pong and Paint tutorials, this set of videos covers basic features and techniques that can be used to create your app quicker, keeping your code elegant and eye-friendly.

## Basic Info

The Crash Course primarily consists of a series of YouTube videos, each roughly 10 minutes long. There are also articles describing some of the videos and the code used in the videos.

### Topics covered by the Crash Course include:

> * Use of the basic Kivy widgets such as the Label, Button, Scatter and TextInput
> * Building an app for android with python-for-android's [old toolchain](https://github.com/kivy/python-for-android/tree/old_toolchain)
> * Binding functions to events
> * Using changes in variables on the go
> * Smart user interface ([Kv language](https://kivy.fun/docs/guide/lang.html))
> * Properties
> * Canvas and drawing
> * Label with scrolling
> * Positioning and layouts
> * Animation and Clock
> * Accessing android API ([pyjnius](https://github.com/kivy/pyjnius), [plyer](https://github.com/kivy/plyer))
> * Settings panel (and building your own options)
> * ScreenManager

### Links:

> * [Videos \<https://www.youtube.com/watch?v=F7UKmK9eQLY& list=PLdNh1e1kmiPP4YApJm8ENK2yMlwF1\_edq>](/tutorials/crashcourse.md)
> * [Articles](http://inclem.net/pages/kivy-crash-course)
> * [Code](https://github.com/inclement/kivycrashcourse)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.kivy.fun/tutorials/crashcourse.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
