Working with Python types
Alloconda wraps common Python container types so you can stay in Zig without reaching for the raw C API.
Available wrappers include:
py.Objectfor owned and borrowed objects.py.Bytesfor byte strings.py.List,py.Dict, andpy.Tuplefor containers.py.DictIter/py.DictEntryfor iterating dictionaries.
Use these wrappers to construct values, inspect contents, and manage ownership.
If you need lower-level access, py.ffi.c exposes the CPython API.