Get Started

Install Kida and render your first template

1 min read 135 words

Install

pip install kida

Requires Python 3.14 or later. See installation for alternative methods.

Render a Template

from kida import Environment

env = Environment()
template = env.from_string("Hello, {{ name }}!")
print(template.render(name="World"))
# Output: Hello, World!

What's Next?