1
1
mirror of https://github.com/tweag/nickel.git synced 2024-09-21 00:19:57 +03:00
nickel/pyckel
Daniele 8af5af54ce
Feature/incremental cache (#1066)
added `IncCache`
2023-02-23 17:41:36 +01:00
..
src Feature/incremental cache (#1066) 2023-02-23 17:41:36 +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
# }