Skip to main content

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 -> dict
  • tuples -> list
  • integer literals -> int
  • hex literals -> int
  • float literals -> float
  • booleans -> bool
  • null -> None
  • string literals -> str
  • bare enum literals -> str
  • quoted 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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zig_zon-0.2.5.tar.gz (20.9 kB view details)

Uploaded Source

File details

Details for the file zig_zon-0.2.5.tar.gz.

File metadata

  • Download URL: zig_zon-0.2.5.tar.gz
  • Upload date:
  • Size: 20.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for zig_zon-0.2.5.tar.gz
Algorithm Hash digest
SHA256 f82b7b6c88ed0367be02ca1d053a8611440e1865a5559ba89f5eb70106824ac0
MD5 bd345dd21da101596bb7ca0b7dc3db03
BLAKE2b-256 20ad0f38e8dc0c144b777561e16c33748e61291fc876a725f4f6e6d548b6a832

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page