> 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/getting-started/framework.md).

# Non-widget Stuff

| `Animation <kivy.animation.Animation>` is used to change a widget's properties (size/pos/center etc.) to a target value within a target time. Various `transition <kivy.animation.AnimationTransition>` functions are provided. You can use them to animate widgets and build very smooth UI behaviours.                                                                                                                                                                             | <blockquote><p></p></blockquote>                                                                                                                                                                                                                       |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `Atlas <kivy.atlas.Atlas>` is a class for managing texture maps, i.e. packing multiple textures into one image. This allows you to reduce the number of images loaded and thus speed up the application start.                                                                                                                                                                                                                                                                       | <blockquote><p></p></blockquote>                                                                                                                                                                                                                       |
| `Clock <kivy.clock.Clock>` provides you with a convenient way to schedule jobs at set time intervals and is preferred over sleep(), which would block the kivy event loop. These intervals can be set relative to the OpenGL drawing instructions, `before <schedule-before-frame>` or `after <schedule-before-frame>`. The Clock also provides you with a way to create `triggered events <triggered-events>` that are grouped together and called only once before the next frame. | <ul><li><code>\~kivy.clock.ClockBase.schedule\_once</code></li><li><code>\~kivy.clock.ClockBase.schedule\_interval</code></li><li><code>\~kivy.clock.ClockBase.unschedule</code></li><li><code>\~kivy.clock.ClockBase.create\_trigger</code></li></ul> |
| `UrlRequest <kivy.network.urlrequest.UrlRequest>` is useful for asynchronous requests that do not block the event loop. You can use it to manage the progress of URL requests via callbacks.                                                                                                                                                                                                                                                                                         |                                                                                                                                                                                                                                                        |


---

# 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/getting-started/framework.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.
