Skip to content

repl

Start an interactive Starlark REPL (Read-Eval-Print Loop) with all starkite modules loaded.

Usage

kite repl

All built-in modules are available. Useful for exploring APIs and quick prototyping.

Example Session

>>> print(runtime.platform())
linux
>>> t = time.now()
>>> print(t.string("datetime"))
2026-03-15 12:30:00
>>> data = json.encode({"name": "test"})
>>> print(data)
{"name":"test"}