This project provides a pure-Python implementation of the Starlark configuration language. Starlark in Python was ported by AI from the Java reference implementation that ships with Bazel. You can read how it was ported.
Conformance test files are passing with the exception of 4 expected failures.
Those are all documented divergences from the Java reference (UTF-16 string indexing, 32-bit range() bounds, and a Bazel-specific mutablestruct test helper).
- Pure Python
- Therefore usable in a cross-platform zipapp
- No dependencies
- Simple implementation (a tree-walking interpreter)
- Safe to run untrusted code
- Passes the conformance suite from Bazel (copied verbatim in
conformance/)
- Performance
- Supporting old Python versions (3.11+ is currently required)
import starlark
# Evaluate an expression.
starlark.eval("1 + 2 * 3") # 7
# Run a Starlark file.
m = starlark.exec_file('''
def fact(n):
result = 1
for i in range(1, n + 1):
result *= i
return result
z = fact(5)
''')
m.globals["z"] # 120Programs that embed Starlark in Python.
- Lark Cycles: This Python/Tkinter/Starlark port of the 1988 Amiga programming game Warrior Cycles by Rico Mariana was developed as a demo for Starlark in Python.
- Remarshal: a format converter between CBOR, JSON, MessagePack, TOML, and YAML 1.1 & 1.2. Remarshal gained the ability to modify the data it converted with Starlark. Part of the motivation for Starlark in Python was to add this functionality without a Go or Rust dependency.
See docs/.
The package installs a starlark-python console script.
(We picked a suffixed name so it doesn't shadow starlark from go.starlark.net, which we use for cross-validation.)
It can also be run as a zipapp:
poe zipapp # builds ./starlark-python.pyz (~560K)
./starlark-python.pyz -c "1 + 2 * 3" # 7
./starlark-python.pyz path/to/script.starThe runtime does not load files itself; the host supplies a Loader callable.
eval/loader.py ships a simple file-based loader you can plug in:
from starlark.eval.loader import FileLoader
import starlark
loader = FileLoader(exec_file=starlark.exec_file, search_paths=[".", "lib"])
starlark.exec_file(open("main.star").read(), loader=loader)load("foo.star", "bar") then resolves foo.star against loader.
Starlark in Python is new and has not been extensively reviewed and tested.
Starlark is a sandboxed language.
A .star program cannot read or write files, open sockets, spawn processes, or reach any Python object the host did not explicitly hand it.
Opt-on resource limits (max_steps, max_allocs) limit CPU and memory for hosts that accept untrusted input.
What we defend against, what we don't defend against, and the
public limits API are documented in security/threat-model.md.
In short: we mitigate DoS-style malicious values; defending against deliberately crafted (but otherwise valid) values is a host responsibility, the same as with JSON or TOML.
These are intentional:
- Integers are Python
int. Arbitrary precision; no overflow. The Java reference uses aStarlarkInttype that is a union ofint32,int64, andBigInteger. - Strings are indexed by Unicode code point. The Java reference indexes by UTF-16 code unit, which produces surprising results for non-BMP characters. The spec leaves this implementation-defined.
- No 32-bit range checks for
range(),*repeat, etc. The Java reference rejects allocations whose length doesn't fit in a signed 32-bit int. We instead cap container allocations at 16M elements with a less specific error message.
The conformance suite includes a handful of tests that depend on the Java reference's exact error wording for these checks;
they are listed in XFAIL_FILES in tests/test_conformance.py.
conformance/ `.star` conformance tests, copied from Bazel.
src/starlark/ The actual port.
eval/ Value model, evaluator, builtins, methods, loader.
syntax/ Lexer, parser, AST, resolver.
tests/ Pytest suite (unit + conformance).
HISTORY.md Original 14-phase plan + append-only journal.
cmd.py CLI entry point.
Install Poe the Poet to run the tasks (uv tool install poethepoet, pipx install poethepoet).
uv sync # Install deps
poe test # ~400 tests, ~2s
poe lint # Ruff
poe typecheck # Pyright
poe zipapp # Build ./starlark-python.pyztests/test_cross_validation.py runs a curated set of programs under both this interpreter and the starlark-go CLI and asserts they produce identical output.
To enable, install the Go implementation and make sure it's on PATH:
go install go.starlark.net/cmd/starlark@latestApache 2.0.
See LICENSE.
This is a derivative work: the lexer, parser, resolver, evaluator, and value model are ported from the Java reference implementation maintained by The Bazel Authors as part of bazelbuild/bazel.
The conformance test files under conformance/ are copied verbatim from that
project.
docs/spec.md is fetched verbatim from bazelbuild/starlark for reference.