1
1
mirror of https://github.com/tweag/nickel.git synced 2024-09-21 00:19:57 +03:00
nickel/pyckel
2023-01-18 22:45:02 +01:00
..
src apply review to pyckel/src/lib.rs 2023-01-18 22:45:02 +01:00
Cargo.toml pyckel: diagnostics in exception 2023-01-18 18:49:05 +01:00
pyproject.toml Move Python bindings to its own crate pyckel 2023-01-16 16:38:24 +01:00
README.md Update pyckel/README.md 2023-01-16 16:38:24 +01:00

pyckel

Python bindings to use Nickel.

Install

pip install .

Use

import pyckel

result = pyckel.run("let x = 1 in { y = x + 2 }")
print(result)
# {
#   "y": 3
# }