.zon files to python dictionaries
- Zig 86.4%
- Python 13.6%
| .forgejo/workflows | switch ci to ReleaseSmall | |
| src | upgrade sdist, introduce unittest | |
| .gitignore | upgrade to zig 0.16.0 | |
| build.zig | add sdist compression | |
| build.zig.zon | fix in sdist dep | |
| LICENSE | update pyproject.toml | |
| pkg-info.zon | add extra classifiers | |
| README.md | readme | |
Python Zig Zon Parser
A native python extension built with zig to parse zig-object-notation strings into python objects.
On PyPi it is only distributed in source, and built during install.
It therefore needs to download the ziglang python package.
Depending on your OS, you may need the python development headers
(e.g. python3-dev) installed.
Usage
install from source on https://pypi.org/project/zig-zon:
pip install zig-zon
running:
>>> import zig_zon
>>> parsed = zig_zon.parse('.{.allyourcode = .are_belong_to_us, .asd = 123}')
>>> print(parsed)
{'allyourcode': 'are_belong_to_us', 'asd': 123}
or, look at the test file
Supported values and their python type
structs->dicttuples->listinteger literals->inthex literals->intfloat literals->floatbooleans->boolnull->Nonestring literals->strbare enum literals->strquoted enum literals->str
Not supported values
bigint
How it works
The zig build commands produces a python source distribution archive ready
for uploading to Pypi. It includes the sources of zig-python-sdist
and a custom setup.py that handles the build of the cpython extension.
When you run pip install, the source distribution is downloaded, and since
this source distribution depends on the ziglang python package at build time,
a zig build command is used to compile the extension.
Developing
as opposed to other solutions for building cpython extensions in zig, i want to develop this using:
zig build
for linking against the local python installation zig-python-sdist
runs a python script that imports the cpython headers into zig's build cache,
run translate-c on the result and offers a cpython module to import
in our zig code.
On windows, the extension library is also linked against
the python runtime static lib and renamed to a .pyd file for importing.